the database :
/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2015-04-07 18:26:22 */

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `k2zp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) 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 NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) 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) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_masterslider_options` (
  `ID` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(120) NOT NULL,
  `option_value` text NOT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_masterslider_sliders` (
  `ID` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `type` varchar(64) NOT NULL,
  `slides_num` smallint(5) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `params` mediumtext NOT NULL,
  `custom_styles` text NOT NULL,
  `custom_fonts` text NOT NULL,
  `status` varchar(10) NOT NULL DEFAULT 'draft',
  PRIMARY KEY (`ID`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(64) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=458 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=2395 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text 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 NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=295 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` text,
  `hover` text,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_revslider_settings` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `general` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` text NOT NULL,
  `layers` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` text NOT NULL,
  `layers` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_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',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `name` (`name`),
  KEY `slug` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8;

CREATE TABLE `k2zp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(64) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(60) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;


/* INSERT TABLE DATA: k2zp_comments */
INSERT INTO `k2zp_comments` VALUES("1", "1", "Mr WordPress", "", "http://wordpress.org/", "", "2010-06-18 20:51:35", "2010-06-18 20:51:35", "Hi, this is a comment.<br />To delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.", "0", "post-trashed", "", "", "0", "0");

/* INSERT TABLE DATA: k2zp_duplicator_packages */
INSERT INTO `k2zp_duplicator_packages` VALUES("2", "20150407_unitedcashback", "5524211e0499e1680150407182534", "20", "2015-04-07 18:26:21", "sommar", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:2;s:4:\"Name\";s:23:\"20150407_unitedcashback\";s:4:\"Hash\";s:29:\"5524211e0499e1680150407182534\";s:8:\"NameHash\";s:53:\"20150407_unitedcashback_5524211e0499e1680150407182534\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:72:\"/storage/content/83/125683/united.sommar.se/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:41:\"http://www.united.sommar.se/wp-snapshots/\";s:8:\"ScanFile\";s:63:\"20150407_unitedcashback_5524211e0499e1680150407182534_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:65:\"20150407_unitedcashback_5524211e0499e1680150407182534_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:55:\"/storage/content/83/125683/united.sommar.se/public_html\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:23:\"20150407_unitedcashback\";s:4:\"Hash\";s:29:\"5524211e0499e1680150407182534\";s:8:\"NameHash\";s:53:\"20150407_unitedcashback_5524211e0499e1680150407182534\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:72:\"/storage/content/83/125683/united.sommar.se/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:41:\"http://www.united.sommar.se/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:67:\"20150407_unitedcashback_5524211e0499e1680150407182534_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:66:\"20150407_unitedcashback_5524211e0499e1680150407182534_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}");

/* INSERT TABLE DATA: k2zp_links */
INSERT INTO `k2zp_links` VALUES("1", "http://codex.wordpress.org/", "Documentation", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `k2zp_links` VALUES("2", "http://wordpress.org/development/", "WordPress Blog", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "http://wordpress.org/development/feed/");
INSERT INTO `k2zp_links` VALUES("3", "http://wordpress.org/extend/ideas/", "Suggest Ideas", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `k2zp_links` VALUES("4", "http://wordpress.org/support/", "Support Forum", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `k2zp_links` VALUES("5", "http://wordpress.org/extend/plugins/", "Plugins", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `k2zp_links` VALUES("6", "http://wordpress.org/extend/themes/", "Themes", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `k2zp_links` VALUES("7", "http://planet.wordpress.org/", "WordPress Planet", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");

/* INSERT TABLE DATA: k2zp_masterslider_options */
INSERT INTO `k2zp_masterslider_options` VALUES("1", "preset_effect", "eyJtZXRhIjp7IlByZXNldEVmZmVjdCFpZHMiOiI2LDcsOCw5LDEwLDExLDEyLDEzLDE0LDE1LDE2LDE3LDE4LDE5LDIwLDIxLDIyLDIzLDI0LDI1LDI2LDI3LDI4LDI5LDMwLDMxIiwiUHJlc2V0RWZmZWN0IW5leHRJZCI6MzJ9LCJNU1BhbmVsLlByZXNldEVmZmVjdCI6eyI2Ijoie1wiaWRcIjo2LFwibmFtZVwiOlwiUmlnaHQgc2hvcnRcIixcInR5cGVcIjpcInByZXNldFwiLFwiZmFkZVwiOnRydWUsXCJ0cmFuc2xhdGVYXCI6MTUwfSIsIjciOiJ7XCJpZFwiOjcsXCJuYW1lXCI6XCJMZWZ0IHNob3J0XCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwidHJhbnNsYXRlWFwiOi0xNTB9IiwiOCI6IntcImlkXCI6OCxcIm5hbWVcIjpcIlRvcCBzaG9ydFwiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVlcIjotMTUwfSIsIjkiOiJ7XCJpZFwiOjksXCJuYW1lXCI6XCJCb3R0b20gc2hvcnRcIixcInR5cGVcIjpcInByZXNldFwiLFwiZmFkZVwiOnRydWUsXCJ0cmFuc2xhdGVZXCI6MTUwfSIsIjEwIjoie1wiaWRcIjoxMCxcIm5hbWVcIjpcIlJpZ2h0IGxvbmdcIixcInR5cGVcIjpcInByZXNldFwiLFwiZmFkZVwiOnRydWUsXCJ0cmFuc2xhdGVYXCI6NTAwfSIsIjExIjoie1wiaWRcIjoxMSxcIm5hbWVcIjpcIkxlZnQgbG9uZ1wiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVhcIjotNTAwfSIsIjEyIjoie1wiaWRcIjoxMixcIm5hbWVcIjpcIlRvcCBsb25nXCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwidHJhbnNsYXRlWVwiOi01MDB9IiwiMTMiOiJ7XCJpZFwiOjEzLFwibmFtZVwiOlwiQm90dG9tIGxvbmdcIixcInR5cGVcIjpcInByZXNldFwiLFwiZmFkZVwiOnRydWUsXCJ0cmFuc2xhdGVZXCI6NTAwfSIsIjE0Ijoie1wiaWRcIjoxNCxcIm5hbWVcIjpcIjNEIEZyb250IHNob3J0XCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwidHJhbnNsYXRlWlwiOjUwMH0iLCIxNSI6IntcImlkXCI6MTUsXCJuYW1lXCI6XCIzRCBCYWNrIHNob3J0XCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwidHJhbnNsYXRlWlwiOi01MDB9IiwiMTYiOiJ7XCJpZFwiOjE2LFwibmFtZVwiOlwiM0QgRnJvbnQgbG9uZ1wiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVpcIjoxNTAwfSIsIjE3Ijoie1wiaWRcIjoxNyxcIm5hbWVcIjpcIjNEIEJhY2sgbG9uZ1wiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVpcIjotMTUwMH0iLCIxOCI6IntcImlkXCI6MTgsXCJuYW1lXCI6XCJSb3RhdGUgMTgwXCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwicm90YXRlXCI6MTgwfSIsIjE5Ijoie1wiaWRcIjoxOSxcIm5hbWVcIjpcIlJvdGF0ZSAzNjBcIixcInR5cGVcIjpcInByZXNldFwiLFwiZmFkZVwiOnRydWUsXCJyb3RhdGVcIjozNjB9IiwiMjAiOiJ7XCJpZFwiOjIwLFwibmFtZVwiOlwiUm90YXRlIDkwXCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwicm90YXRlXCI6OTB9IiwiMjEiOiJ7XCJpZFwiOjIxLFwibmFtZVwiOlwiUm90YXRlIC05MFwiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInJvdGF0ZVwiOi05MH0iLCIyMiI6IntcImlkXCI6MjIsXCJuYW1lXCI6XCIzRCBSb3RhdGUgbGVmdFwiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVhcIjotMjUwLFwicm90YXRlWVwiOjI1MH0iLCIyMyI6IntcImlkXCI6MjMsXCJuYW1lXCI6XCIzRCBSb3RhdGUgcmlnaHRcIixcInR5cGVcIjpcInByZXNldFwiLFwiZmFkZVwiOnRydWUsXCJ0cmFuc2xhdGVYXCI6MjUwLFwicm90YXRlWVwiOi0yNTB9IiwiMjQiOiJ7XCJpZFwiOjI0LFwibmFtZVwiOlwiM0QgUm90YXRlIHRvcFwiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVlcIjotMjUwLFwicm90YXRlWFwiOjE1MH0iLCIyNSI6IntcImlkXCI6MjUsXCJuYW1lXCI6XCIzRCBSb3RhdGUgYm90dG9tXCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwidHJhbnNsYXRlWVwiOjI1MCxcInJvdGF0ZVhcIjotMTUwfSIsIjI2Ijoie1wiaWRcIjoyNixcIm5hbWVcIjpcIlNrZXcgbGVmdFwiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVhcIjotMjUwLFwic2tld1hcIjotMjV9IiwiMjciOiJ7XCJpZFwiOjI3LFwibmFtZVwiOlwiU2tldyByaWdodFwiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVhcIjoyNTAsXCJza2V3WFwiOjI1fSIsIjI4Ijoie1wiaWRcIjoyOCxcIm5hbWVcIjpcIlNrZXcgdG9wXCIsXCJ0eXBlXCI6XCJwcmVzZXRcIixcImZhZGVcIjp0cnVlLFwidHJhbnNsYXRlWVwiOi0yNTAsXCJza2V3WVwiOi0yNX0iLCIyOSI6IntcImlkXCI6MjksXCJuYW1lXCI6XCJTa2V3IGJvdHRvbVwiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVlcIjoyNTAsXCJza2V3WVwiOi0yNX0iLCIzMCI6IntcImlkXCI6MzAsXCJuYW1lXCI6XCJSb3RhdGUgZnJvbnRcIixcInR5cGVcIjpcInByZXNldFwiLFwiZmFkZVwiOnRydWUsXCJ0cmFuc2xhdGVaXCI6MTUwMCxcInJvdGF0ZVwiOjI1MH0iLCIzMSI6IntcImlkXCI6MzEsXCJuYW1lXCI6XCJSb3RhdGUgYmFja1wiLFwidHlwZVwiOlwicHJlc2V0XCIsXCJmYWRlXCI6dHJ1ZSxcInRyYW5zbGF0ZVpcIjotMTUwMCxcInJvdGF0ZVwiOjI1MH0ifX0=");
INSERT INTO `k2zp_masterslider_options` VALUES("2", "buttons_style", "eyJtZXRhIjp7IkJ1dHRvblN0eWxlIWlkcyI6Ijg0LDg1LDg2LDg3LDg4LDg5LDkwLDkxLDkyLDkzLDk0LDk1LDk2LDk3LDk4LDk5LDEwMCwxMDEsMTAyLDEwMywxMDQsMTA1LDEwNiwxMDcsMTA4LDEwOSwxMTAsMTExLDExMiwxMTMsMTE0LDExNSwxMTYsMTE3LDExOCwxMTksMTIwLDEyMSwxMjIsMTIzLDEyNCwxMjUsMTI2LDEyNywxMjgsMTI5LDEzMCwxMzEsMTMyLDEzMywxMzQsMTM1LDEzNiwxMzcsMTM4LDEzOSwxNDAsMTQxLDE0MiwxNDMsMTQ0LDE0NSwxNDYsMTQ3LDE0OCwxNDksMTUwLDE1MSwxNTIsMTUzLDE1NCwxNTUsMTU2LDE1NywxNTgiLCJCdXR0b25TdHlsZSFuZXh0SWQiOjE1OX0sIk1TUGFuZWwuQnV0dG9uU3R5bGUiOnsiODQiOiJ7XCJpZFwiOjg0LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi04NFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjYjk3ZWJiO1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2NhODljYztcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1ib3hcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiODUiOiJ7XCJpZFwiOjg1LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi04NVwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjYjk3ZWJiO1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2NhODljYztcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCI4NiI6IntcImlkXCI6ODYsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTg2XCIsXCJub3JtYWxcIjpcImNvbG9yOiAjYjk3ZWJiO1xcbmJvcmRlcjpzb2xpZCAxcHggI2I5N2ViYjtcIixcImhvdmVyXCI6XCJib3JkZXItY29sb3I6I2NhODljYztcXG5jb2xvcjojY2E4OWNjXCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiODciOiJ7XCJpZFwiOjg3LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi04N1wiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjYjk3ZWJiO1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2NhODljYztcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1jaXJjbGVcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiODgiOiJ7XCJpZFwiOjg4LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi04OFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjYjk3ZWJiO1xcbmNvbG9yOiAjZmZmO1xcbmJveC1zaGFkb3c6MCA1cHggIzlhNjk5YztcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNjYTg5Y2M7XFxuYm94LXNoYWRvdzowIDRweCAjOWE2OTljO1xcbnRvcDoxcHg7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcImJveC1zaGFkb3c6MCAycHggIzlhNjk5YztcXG50b3A6M3B4O1wiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCI4OSI6IntcImlkXCI6ODksXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTg5XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM1NDcyRDI7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojNWQ3ZmU5O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWJveFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCI5MCI6IntcImlkXCI6OTAsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTkwXCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM1NDcyRDI7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojNWQ3ZmU5O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjkxIjoie1wiaWRcIjo5MSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tOTFcIixcIm5vcm1hbFwiOlwiY29sb3I6ICM1NDcyRDI7XFxuYm9yZGVyOnNvbGlkIDFweCAjNTQ3MkQyO1wiLFwiaG92ZXJcIjpcImJvcmRlci1jb2xvcjojNWQ3ZmU5O1xcbmNvbG9yOiM1ZDdmZTlcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCI5MiI6IntcImlkXCI6OTIsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTkyXCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM1NDcyRDI7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojNWQ3ZmU5O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWNpcmNsZVwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCI5MyI6IntcImlkXCI6OTMsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTkzXCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM1NDcyRDI7XFxuY29sb3I6ICNmZmY7XFxuYm94LXNoYWRvdzowIDVweCAjNGM2OGJlO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzVkN2ZlOTtcXG5ib3gtc2hhZG93OjAgNHB4ICM0YzY4YmU7XFxudG9wOjFweDtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwiYm94LXNoYWRvdzowIDJweCAjNGM2OGJlO1xcbnRvcDozcHg7XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjk0Ijoie1wiaWRcIjo5NCxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tOTRcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzAwYzFjZjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiMwMUQ0RTQ7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tYm94XCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjk1Ijoie1wiaWRcIjo5NSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tOTVcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzAwYzFjZjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiMwMUQ0RTQ7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiOTYiOiJ7XCJpZFwiOjk2LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi05NlwiLFwibm9ybWFsXCI6XCJjb2xvcjogIzAwYzFjZjtcXG5ib3JkZXI6c29saWQgMXB4ICMwMGMxY2Y7XCIsXCJob3ZlclwiOlwiYm9yZGVyLWNvbG9yOiMwMUQ0RTQ7XFxuY29sb3I6IzAxRDRFNFwiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjk3Ijoie1wiaWRcIjo5NyxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tOTdcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzAwYzFjZjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiMwMUQ0RTQ7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tY2lyY2xlXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjk4Ijoie1wiaWRcIjo5OCxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tOThcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzAwYzFjZjtcXG5jb2xvcjogI2ZmZjtcXG5ib3gtc2hhZG93OjAgNXB4ICMwMGFmYmM7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojMDFENEU0O1xcbmJveC1zaGFkb3c6MCA0cHggIzAwYWZiYztcXG50b3A6MXB4O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJib3gtc2hhZG93OjAgMnB4ICMwMGFmYmM7XFxudG9wOjNweDtcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiOTkiOiJ7XCJpZFwiOjk5LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi05OVwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNGNhZGM5O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzYzYjJjOTtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1ib3hcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTAwIjoie1wiaWRcIjoxMDAsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEwMFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNGNhZGM5O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzYzYjJjOTtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMDEiOiJ7XCJpZFwiOjEwMSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTAxXCIsXCJub3JtYWxcIjpcImNvbG9yOiAjNGNhZGM5O1xcbmJvcmRlcjpzb2xpZCAxcHggIzRjYWRjOTtcIixcImhvdmVyXCI6XCJib3JkZXItY29sb3I6IzYzYjJjOTtcXG5jb2xvcjojNjNiMmM5XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTAyIjoie1wiaWRcIjoxMDIsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEwMlwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNGNhZGM5O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzYzYjJjOTtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1jaXJjbGVcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTAzIjoie1wiaWRcIjoxMDMsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEwM1wiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNGNhZGM5O1xcbmNvbG9yOiAjZmZmO1xcbmJveC1zaGFkb3c6MCA1cHggIzFhYTJjOTtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiM2M2IyYzk7XFxuYm94LXNoYWRvdzowIDRweCAjMWFhMmM5O1xcbnRvcDoxcHg7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcImJveC1zaGFkb3c6MCAycHggIzFhYTJjOTtcXG50b3A6M3B4O1wiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMDQiOiJ7XCJpZFwiOjEwNCxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTA0XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICNjZWMyYWI7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojY2ViZDlkO1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWJveFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMDUiOiJ7XCJpZFwiOjEwNSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTA1XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICNjZWMyYWI7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojY2ViZDlkO1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEwNiI6IntcImlkXCI6MTA2LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMDZcIixcIm5vcm1hbFwiOlwiY29sb3I6ICNjZWMyYWI7XFxuYm9yZGVyOnNvbGlkIDFweCAjY2VjMmFiO1wiLFwiaG92ZXJcIjpcImJvcmRlci1jb2xvcjojY2ViZDlkO1xcbmNvbG9yOiNjZWJkOWRcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMDciOiJ7XCJpZFwiOjEwNyxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTA3XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICNjZWMyYWI7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojY2ViZDlkO1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWNpcmNsZVwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMDgiOiJ7XCJpZFwiOjEwOCxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTA4XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICNjZWMyYWI7XFxuY29sb3I6ICNmZmY7XFxuYm94LXNoYWRvdzowIDVweCAjQzJCN0EyO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2NlYmQ5ZDtcXG5ib3gtc2hhZG93OjAgNHB4ICNDMkI3QTI7XFxudG9wOjFweDtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwiYm94LXNoYWRvdzowIDJweCAjQzJCN0EyO1xcbnRvcDozcHg7XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEwOSI6IntcImlkXCI6MTA5LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMDlcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzUwNDg1YjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiM2YTYxNzY7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tYm94XCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjExMCI6IntcImlkXCI6MTEwLFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMTBcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzUwNDg1YjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiM2YTYxNzY7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTExIjoie1wiaWRcIjoxMTEsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTExMVwiLFwibm9ybWFsXCI6XCJjb2xvcjogIzUwNDg1YjtcXG5ib3JkZXI6c29saWQgMXB4ICM1MDQ4NWI7XCIsXCJob3ZlclwiOlwiYm9yZGVyLWNvbG9yOiM2YTYxNzY7XFxuY29sb3I6IzZhNjE3NlwiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjExMiI6IntcImlkXCI6MTEyLFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMTJcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzUwNDg1YjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiM2YTYxNzY7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tY2lyY2xlXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjExMyI6IntcImlkXCI6MTEzLFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMTNcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzUwNDg1YjtcXG5jb2xvcjogI2ZmZjtcXG5ib3gtc2hhZG93OjAgNXB4ICM0MTJkNWI7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojNmE2MTc2O1xcbmJveC1zaGFkb3c6MCA0cHggIzQxMmQ1YjtcXG50b3A6MXB4O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJib3gtc2hhZG93OjAgMnB4ICM0MTJkNWI7XFxudG9wOjNweDtcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTE0Ijoie1wiaWRcIjoxMTQsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTExNFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjOGQ2ZGM0O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6Izk3N2NjNDtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1ib3hcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTE1Ijoie1wiaWRcIjoxMTUsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTExNVwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjOGQ2ZGM0O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6Izk3N2NjNDtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMTYiOiJ7XCJpZFwiOjExNixcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTE2XCIsXCJub3JtYWxcIjpcImNvbG9yOiAjOGQ2ZGM0O1xcbmJvcmRlcjpzb2xpZCAxcHggIzhkNmRjNDtcIixcImhvdmVyXCI6XCJib3JkZXItY29sb3I6Izk3N2NjNDtcXG5jb2xvcjojOTc3Y2M0XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTE3Ijoie1wiaWRcIjoxMTcsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTExN1wiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjOGQ2ZGM0O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6Izk3N2NjNDtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1jaXJjbGVcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTE4Ijoie1wiaWRcIjoxMTgsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTExOFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjOGQ2ZGM0O1xcbmNvbG9yOiAjZmZmO1xcbmJveC1zaGFkb3c6MCA1cHggIzdjNTFjNDtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiM5NzdjYzQ7XFxuYm94LXNoYWRvdzowIDRweCAjN2M1MWM0O1xcbnRvcDoxcHg7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcImJveC1zaGFkb3c6MCAycHggIzdjNTFjNDtcXG50b3A6M3B4O1wiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMTkiOiJ7XCJpZFwiOjExOSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTE5XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM3NWQ2OWM7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojN2RlNWE3O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWJveFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMjAiOiJ7XCJpZFwiOjEyMCxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTIwXCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM3NWQ2OWM7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojN2RlNWE3O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEyMSI6IntcImlkXCI6MTIxLFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMjFcIixcIm5vcm1hbFwiOlwiY29sb3I6ICM3NWQ2OWM7XFxuYm9yZGVyOnNvbGlkIDFweCAjNzVkNjljO1wiLFwiaG92ZXJcIjpcImJvcmRlci1jb2xvcjojN2RlNWE3O1xcbmNvbG9yOiM3ZGU1YTdcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMjIiOiJ7XCJpZFwiOjEyMixcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTIyXCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM3NWQ2OWM7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojN2RlNWE3O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWNpcmNsZVwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMjMiOiJ7XCJpZFwiOjEyMyxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTIzXCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM3NWQ2OWM7XFxuY29sb3I6ICNmZmY7XFxuYm94LXNoYWRvdzowIDVweCAjNDFkNjdkO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzdkZTVhNztcXG5ib3gtc2hhZG93OjAgNHB4ICM0MWQ2N2Q7XFxudG9wOjFweDtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwiYm94LXNoYWRvdzowIDJweCAjNDFkNjdkO1xcbnRvcDozcHg7XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEyNCI6IntcImlkXCI6MTI0LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMjRcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzIyMjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiMzMzM7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tYm94XCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEyNSI6IntcImlkXCI6MTI1LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMjVcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzIyMjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiMzMzM7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTI2Ijoie1wiaWRcIjoxMjYsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEyNlwiLFwibm9ybWFsXCI6XCJjb2xvcjogIzIyMjtcXG5ib3JkZXI6c29saWQgMXB4ICMyMjI7XCIsXCJob3ZlclwiOlwiYm9yZGVyLWNvbG9yOiMzMzM7XFxuY29sb3I6IzMzM1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEyNyI6IntcImlkXCI6MTI3LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMjdcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzIyMjtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiMzMzM7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tY2lyY2xlXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEyOCI6IntcImlkXCI6MTI4LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMjhcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogIzIyMjtcXG5jb2xvcjogI2ZmZjtcXG5ib3gtc2hhZG93OjAgNXB4ICMwMDA7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojMzMzO1xcbmJveC1zaGFkb3c6MCA0cHggIzAwMDtcXG50b3A6MXB4O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJib3gtc2hhZG93OjAgMnB4ICMwMDA7XFxudG9wOjNweDtcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTI5Ijoie1wiaWRcIjoxMjksXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEyOVwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZGVkZWRlO1xcbmNvbG9yOiAjNjY2O1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2QxZDFkMTtcXG5jb2xvcjogIzY2NjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1ib3hcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTMwIjoie1wiaWRcIjoxMzAsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEzMFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZGVkZWRlO1xcbmNvbG9yOiAjNjY2O1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2QxZDFkMTtcXG5jb2xvcjogIzY2NjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxMzEiOiJ7XCJpZFwiOjEzMSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTMxXCIsXCJub3JtYWxcIjpcImNvbG9yOiAjZGVkZWRlO1xcbmJvcmRlcjpzb2xpZCAxcHggI2RlZGVkZTtcIixcImhvdmVyXCI6XCJib3JkZXItY29sb3I6I2QxZDFkMTtcXG5jb2xvcjojZDFkMWQxXCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTMyIjoie1wiaWRcIjoxMzIsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEzMlwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZGVkZWRlO1xcbmNvbG9yOiAjNjY2O1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2QxZDFkMTtcXG5jb2xvcjogIzY2NjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1jaXJjbGVcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTMzIjoie1wiaWRcIjoxMzMsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEzM1wiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZGVkZWRlO1xcbmNvbG9yOiAjNjY2O1xcbmJveC1zaGFkb3c6MCA1cHggI0NBQ0FDQTtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNkMWQxZDE7XFxuY29sb3I6ICM2NjY7XFxuYm94LXNoYWRvdzowIDRweCAjQ0FDQUNBO1xcbnRvcDoxcHhcIixcImFjdGl2ZVwiOlwiYm94LXNoYWRvdzowIDJweCAjQ0FDQUNBO1xcbnRvcDozcHg7XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEzNCI6IntcImlkXCI6MTM0LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMzRcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y3YmU2ODtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNlOWIzNjI7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tYm94XCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEzNSI6IntcImlkXCI6MTM1LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMzVcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y3YmU2ODtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNlOWIzNjI7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTM2Ijoie1wiaWRcIjoxMzYsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEzNlwiLFwibm9ybWFsXCI6XCJjb2xvcjogI2Y3YmU2ODtcXG5ib3JkZXI6c29saWQgMXB4ICNmN2JlNjg7XCIsXCJob3ZlclwiOlwiYm9yZGVyLWNvbG9yOiNlOWIzNjI7XFxuY29sb3I6I2U5YjM2MlwiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEzNyI6IntcImlkXCI6MTM3LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMzdcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y3YmU2ODtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNlOWIzNjI7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tY2lyY2xlXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjEzOCI6IntcImlkXCI6MTM4LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xMzhcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y3YmU2ODtcXG5jb2xvcjogI2ZmZjtcXG5ib3gtc2hhZG93OjAgNXB4ICNFN0FGNTk7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojZTliMzYyO1xcbmJveC1zaGFkb3c6MCA0cHggI0U3QUY1OTtcXG50b3A6MXB4O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJib3gtc2hhZG93OjAgMnB4ICNFN0FGNTk7XFxudG9wOjNweDtcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTM5Ijoie1wiaWRcIjoxMzksXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTEzOVwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNWFhMWUzO1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzVmYWFlZjtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1ib3hcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTQwIjoie1wiaWRcIjoxNDAsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE0MFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNWFhMWUzO1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzVmYWFlZjtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxNDEiOiJ7XCJpZFwiOjE0MSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTQxXCIsXCJub3JtYWxcIjpcImNvbG9yOiAjNWFhMWUzO1xcbmJvcmRlcjpzb2xpZCAxcHggIzVhYTFlMztcIixcImhvdmVyXCI6XCJib3JkZXItY29sb3I6IzVmYWFlZjtcXG5jb2xvcjojNWZhYWVmXCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTQyIjoie1wiaWRcIjoxNDIsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE0MlwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNWFhMWUzO1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6IzVmYWFlZjtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1jaXJjbGVcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTQzIjoie1wiaWRcIjoxNDMsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE0M1wiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjNWFhMWUzO1xcbmNvbG9yOiAjZmZmO1xcbmJveC1zaGFkb3c6MCA1cHggIzRjODdiZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiM1ZmFhZWY7XFxuYm94LXNoYWRvdzowIDRweCAjNGM4N2JmO1xcbnRvcDoxcHg7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcImJveC1zaGFkb3c6MCAycHggIzRjODdiZjtcXG50b3A6M3B4O1wiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxNDQiOiJ7XCJpZFwiOjE0NCxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTQ0XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM2ZGFiM2M7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojNzZiOTQxO1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWJveFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxNDUiOiJ7XCJpZFwiOjE0NSxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTQ1XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM2ZGFiM2M7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojNzZiOTQxO1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjE0NiI6IntcImlkXCI6MTQ2LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xNDZcIixcIm5vcm1hbFwiOlwiY29sb3I6ICM2ZGFiM2M7XFxuYm9yZGVyOnNvbGlkIDFweCAjNmRhYjNjO1wiLFwiaG92ZXJcIjpcImJvcmRlci1jb2xvcjojNzZiOTQxO1xcbmNvbG9yOiM3NmI5NDFcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxNDciOiJ7XCJpZFwiOjE0NyxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTQ3XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM2ZGFiM2M7XFxuY29sb3I6ICNmZmY7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojNzZiOTQxO1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLWNpcmNsZVwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxNDgiOiJ7XCJpZFwiOjE0OCxcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTQ4XCIsXCJub3JtYWxcIjpcImJhY2tncm91bmQtY29sb3I6ICM2ZGFiM2M7XFxuY29sb3I6ICNmZmY7XFxuYm94LXNoYWRvdzowIDVweCAjNWU5MzM0O1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6Izc2Yjk0MTtcXG5ib3gtc2hhZG93OjAgNHB4ICM1ZTkzMzQ7XFxudG9wOjFweDtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwiYm94LXNoYWRvdzowIDJweCAjNWU5MzM0O1xcbnRvcDozcHg7XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjE0OSI6IntcImlkXCI6MTQ5LFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xNDlcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y0NTI0ZDtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNlMDRiNDc7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tYm94XCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjE1MCI6IntcImlkXCI6MTUwLFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xNTBcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y0NTI0ZDtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNlMDRiNDc7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTUxIjoie1wiaWRcIjoxNTEsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE1MVwiLFwibm9ybWFsXCI6XCJjb2xvcjogI2Y0NTI0ZDtcXG5ib3JkZXI6c29saWQgMXB4ICNmNDUyNGQ7XCIsXCJob3ZlclwiOlwiYm9yZGVyLWNvbG9yOiNlMDRiNDc7XFxuY29sb3I6I2UwNGI0N1wiLFwiYWN0aXZlXCI6XCJ0b3A6MXB4XCIsXCJzdHlsZVwiOlwibXMtYnRuLXJvdW5kXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjE1MiI6IntcImlkXCI6MTUyLFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xNTJcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y0NTI0ZDtcXG5jb2xvcjogI2ZmZjtcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNlMDRiNDc7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tY2lyY2xlXCIsXCJzaXplXCI6XCJtcy1idG4tblwifSIsIjE1MyI6IntcImlkXCI6MTUzLFwiY2xhc3NOYW1lXCI6XCJtc3AtcHJlc2V0LWJ0bi0xNTNcIixcIm5vcm1hbFwiOlwiYmFja2dyb3VuZC1jb2xvcjogI2Y0NTI0ZDtcXG5jb2xvcjogI2ZmZjtcXG5ib3gtc2hhZG93OjAgNXB4ICNjYjQ0NDA7XCIsXCJob3ZlclwiOlwiYmFja2dyb3VuZC1jb2xvcjojZTA0YjQ3O1xcbmJveC1zaGFkb3c6MCA0cHggI2NiNDQ0MDtcXG50b3A6MXB4O1xcbmNvbG9yOiAjZmZmO1wiLFwiYWN0aXZlXCI6XCJib3gtc2hhZG93OjAgMnB4ICNjYjQ0NDA7XFxudG9wOjNweDtcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTU0Ijoie1wiaWRcIjoxNTQsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE1NFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZjc5NDY4O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2U3OGE2MTtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1ib3hcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTU1Ijoie1wiaWRcIjoxNTUsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE1NVwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZjc5NDY4O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2U3OGE2MTtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0iLCIxNTYiOiJ7XCJpZFwiOjE1NixcImNsYXNzTmFtZVwiOlwibXNwLXByZXNldC1idG4tMTU2XCIsXCJub3JtYWxcIjpcImNvbG9yOiAjZjc5NDY4O1xcbmJvcmRlcjpzb2xpZCAxcHggI2Y3OTQ2ODtcIixcImhvdmVyXCI6XCJib3JkZXItY29sb3I6I2U3OGE2MTtcXG5jb2xvcjojZTc4YTYxXCIsXCJhY3RpdmVcIjpcInRvcDoxcHhcIixcInN0eWxlXCI6XCJtcy1idG4tcm91bmRcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTU3Ijoie1wiaWRcIjoxNTcsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE1N1wiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZjc5NDY4O1xcbmNvbG9yOiAjZmZmO1wiLFwiaG92ZXJcIjpcImJhY2tncm91bmQtY29sb3I6I2U3OGE2MTtcXG5jb2xvcjogI2ZmZjtcIixcImFjdGl2ZVwiOlwidG9wOjFweFwiLFwic3R5bGVcIjpcIm1zLWJ0bi1jaXJjbGVcIixcInNpemVcIjpcIm1zLWJ0bi1uXCJ9IiwiMTU4Ijoie1wiaWRcIjoxNTgsXCJjbGFzc05hbWVcIjpcIm1zcC1wcmVzZXQtYnRuLTE1OFwiLFwibm9ybWFsXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiAjZjc5NDY4O1xcbmNvbG9yOiAjZmZmO1xcbmJveC1zaGFkb3c6MCA1cHggI2RhODM1YztcIixcImhvdmVyXCI6XCJiYWNrZ3JvdW5kLWNvbG9yOiNlNzhhNjE7XFxuYm94LXNoYWRvdzowIDRweCAjZGE4MzVjO1xcbnRvcDoxcHg7XFxuY29sb3I6ICNmZmY7XCIsXCJhY3RpdmVcIjpcImJveC1zaGFkb3c6MCAycHggI2RhODM1YztcXG50b3A6M3B4O1wiLFwic3R5bGVcIjpcIm1zLWJ0bi1yb3VuZFwiLFwic2l6ZVwiOlwibXMtYnRuLW5cIn0ifX0=");
INSERT INTO `k2zp_masterslider_options` VALUES("3", "masterslider_custom_css_ver", "1.1");

/* INSERT TABLE DATA: k2zp_options */
INSERT INTO `k2zp_options` VALUES("1", "siteurl", "http://www.united.sommar.se", "yes");
INSERT INTO `k2zp_options` VALUES("2", "blogname", "United Cashback", "yes");
INSERT INTO `k2zp_options` VALUES("3", "blogdescription", "20 years of VAT recovery", "yes");
INSERT INTO `k2zp_options` VALUES("4", "users_can_register", "0", "yes");
INSERT INTO `k2zp_options` VALUES("5", "admin_email", "henrik@sommar.se", "yes");
INSERT INTO `k2zp_options` VALUES("6", "start_of_week", "1", "yes");
INSERT INTO `k2zp_options` VALUES("7", "use_balanceTags", "0", "yes");
INSERT INTO `k2zp_options` VALUES("8", "use_smilies", "1", "yes");
INSERT INTO `k2zp_options` VALUES("9", "require_name_email", "1", "yes");
INSERT INTO `k2zp_options` VALUES("10", "comments_notify", "1", "yes");
INSERT INTO `k2zp_options` VALUES("11", "posts_per_rss", "10", "yes");
INSERT INTO `k2zp_options` VALUES("12", "rss_use_excerpt", "0", "yes");
INSERT INTO `k2zp_options` VALUES("13", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `k2zp_options` VALUES("14", "mailserver_login", "login@example.com", "yes");
INSERT INTO `k2zp_options` VALUES("15", "mailserver_pass", "password", "yes");
INSERT INTO `k2zp_options` VALUES("16", "mailserver_port", "110", "yes");
INSERT INTO `k2zp_options` VALUES("17", "default_category", "1", "yes");
INSERT INTO `k2zp_options` VALUES("18", "default_comment_status", "open", "yes");
INSERT INTO `k2zp_options` VALUES("19", "default_ping_status", "open", "yes");
INSERT INTO `k2zp_options` VALUES("20", "default_pingback_flag", "0", "yes");
INSERT INTO `k2zp_options` VALUES("22", "posts_per_page", "10", "yes");
INSERT INTO `k2zp_options` VALUES("23", "date_format", "F j, Y", "yes");
INSERT INTO `k2zp_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `k2zp_options` VALUES("25", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `k2zp_options` VALUES("29", "comment_moderation", "0", "yes");
INSERT INTO `k2zp_options` VALUES("30", "moderation_notify", "1", "yes");
INSERT INTO `k2zp_options` VALUES("31", "permalink_structure", "/%category%/%postname%/", "yes");
INSERT INTO `k2zp_options` VALUES("32", "gzipcompression", "0", "yes");
INSERT INTO `k2zp_options` VALUES("33", "hack_file", "0", "yes");
INSERT INTO `k2zp_options` VALUES("34", "blog_charset", "UTF-8", "yes");
INSERT INTO `k2zp_options` VALUES("35", "moderation_keys", "", "no");
INSERT INTO `k2zp_options` VALUES("36", "active_plugins", "a:4:{i:0;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:1;s:33:\"duplicate-post/duplicate-post.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:23:\"revslider/revslider.php\";}", "yes");
INSERT INTO `k2zp_options` VALUES("37", "home", "http://www.united.sommar.se", "yes");
INSERT INTO `k2zp_options` VALUES("38", "category_base", "", "yes");
INSERT INTO `k2zp_options` VALUES("39", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `k2zp_options` VALUES("40", "advanced_edit", "0", "yes");
INSERT INTO `k2zp_options` VALUES("41", "comment_max_links", "2", "yes");
INSERT INTO `k2zp_options` VALUES("42", "gmt_offset", "", "yes");
INSERT INTO `k2zp_options` VALUES("43", "default_email_category", "1", "yes");
INSERT INTO `k2zp_options` VALUES("44", "recently_edited", "", "no");
INSERT INTO `k2zp_options` VALUES("45", "template", "cardinal", "yes");
INSERT INTO `k2zp_options` VALUES("46", "stylesheet", "cardinal-child", "yes");
INSERT INTO `k2zp_options` VALUES("47", "comment_whitelist", "1", "yes");
INSERT INTO `k2zp_options` VALUES("48", "blacklist_keys", "", "no");
INSERT INTO `k2zp_options` VALUES("49", "comment_registration", "0", "yes");
INSERT INTO `k2zp_options` VALUES("51", "html_type", "text/html", "yes");
INSERT INTO `k2zp_options` VALUES("52", "use_trackback", "0", "yes");
INSERT INTO `k2zp_options` VALUES("53", "default_role", "subscriber", "yes");
INSERT INTO `k2zp_options` VALUES("54", "db_version", "30133", "yes");
INSERT INTO `k2zp_options` VALUES("55", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `k2zp_options` VALUES("56", "upload_path", "wp-content/uploads", "yes");
INSERT INTO `k2zp_options` VALUES("57", "blog_public", "1", "yes");
INSERT INTO `k2zp_options` VALUES("58", "default_link_category", "2", "yes");
INSERT INTO `k2zp_options` VALUES("59", "show_on_front", "page", "yes");
INSERT INTO `k2zp_options` VALUES("60", "tag_base", "", "yes");
INSERT INTO `k2zp_options` VALUES("61", "show_avatars", "1", "yes");
INSERT INTO `k2zp_options` VALUES("62", "avatar_rating", "G", "yes");
INSERT INTO `k2zp_options` VALUES("63", "upload_url_path", "", "yes");
INSERT INTO `k2zp_options` VALUES("64", "thumbnail_size_w", "150", "yes");
INSERT INTO `k2zp_options` VALUES("65", "thumbnail_size_h", "150", "yes");
INSERT INTO `k2zp_options` VALUES("66", "thumbnail_crop", "1", "yes");
INSERT INTO `k2zp_options` VALUES("67", "medium_size_w", "300", "yes");
INSERT INTO `k2zp_options` VALUES("68", "medium_size_h", "300", "yes");
INSERT INTO `k2zp_options` VALUES("69", "avatar_default", "mystery", "yes");
INSERT INTO `k2zp_options` VALUES("72", "large_size_w", "1024", "yes");
INSERT INTO `k2zp_options` VALUES("73", "large_size_h", "1024", "yes");
INSERT INTO `k2zp_options` VALUES("74", "image_default_link_type", "", "yes");
INSERT INTO `k2zp_options` VALUES("75", "image_default_size", "", "yes");
INSERT INTO `k2zp_options` VALUES("76", "image_default_align", "", "yes");
INSERT INTO `k2zp_options` VALUES("77", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `k2zp_options` VALUES("78", "close_comments_days_old", "14", "yes");
INSERT INTO `k2zp_options` VALUES("79", "thread_comments", "1", "yes");
INSERT INTO `k2zp_options` VALUES("80", "thread_comments_depth", "5", "yes");
INSERT INTO `k2zp_options` VALUES("81", "page_comments", "0", "yes");
INSERT INTO `k2zp_options` VALUES("82", "comments_per_page", "50", "yes");
INSERT INTO `k2zp_options` VALUES("83", "default_comments_page", "newest", "yes");
INSERT INTO `k2zp_options` VALUES("84", "comment_order", "asc", "yes");
INSERT INTO `k2zp_options` VALUES("85", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `k2zp_options` VALUES("86", "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");
INSERT INTO `k2zp_options` VALUES("87", "widget_text", "a:0:{}", "yes");
INSERT INTO `k2zp_options` VALUES("88", "widget_rss", "a:0:{}", "yes");
INSERT INTO `k2zp_options` VALUES("89", "timezone_string", "Europe/Stockholm", "yes");
INSERT INTO `k2zp_options` VALUES("91", "embed_size_w", "", "yes");
INSERT INTO `k2zp_options` VALUES("92", "embed_size_h", "600", "yes");
INSERT INTO `k2zp_options` VALUES("93", "page_for_posts", "0", "yes");
INSERT INTO `k2zp_options` VALUES("94", "page_on_front", "8", "yes");
INSERT INTO `k2zp_options` VALUES("95", "k2zp_user_roles", "a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:69:{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:9:\"add_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:19:\"access_masterslider\";b:1;s:20:\"publish_masterslider\";b:1;s:19:\"delete_masterslider\";b:1;s:19:\"create_masterslider\";b:1;s:19:\"export_masterslider\";b:1;s:22:\"duplicate_masterslider\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:41:{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:19:\"access_masterslider\";b:1;s:20:\"publish_masterslider\";b:1;s:19:\"delete_masterslider\";b:1;s:19:\"create_masterslider\";b:1;s:19:\"export_masterslider\";b:1;s:22:\"duplicate_masterslider\";b:1;s:10:\"copy_posts\";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");
INSERT INTO `k2zp_options` VALUES("96", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `k2zp_options` VALUES("97", "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");
INSERT INTO `k2zp_options` VALUES("98", "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");
INSERT INTO `k2zp_options` VALUES("99", "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");
INSERT INTO `k2zp_options` VALUES("100", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `k2zp_options` VALUES("101", "sidebars_widgets", "a:13:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";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:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";N;s:9:\"sidebar-8\";N;s:15:\"footer-column-1\";N;s:15:\"footer-column-2\";N;s:15:\"footer-column-3\";N;s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `k2zp_options` VALUES("102", "ftp_credentials", "a:3:{s:8:\"hostname\";s:9:\"localhost\";s:8:\"username\";N;s:15:\"connection_type\";s:3:\"ftp\";}", "yes");
INSERT INTO `k2zp_options` VALUES("103", "WPLANG", "sv_SE", "yes");
INSERT INTO `k2zp_options` VALUES("104", "cron", "a:5:{i:1428433980;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1428458937;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:1428483061;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;}}}i:1428502154;a:1:{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:7:\"version\";i:2;}", "yes");
INSERT INTO `k2zp_options` VALUES("114", "uninstall_plugins", "a:0:{}", "no");
INSERT INTO `k2zp_options` VALUES("115", "default_post_format", "0", "yes");
INSERT INTO `k2zp_options` VALUES("116", "link_manager_enabled", "1", "yes");
INSERT INTO `k2zp_options` VALUES("117", "initial_db_version", "15260", "yes");
INSERT INTO `k2zp_options` VALUES("118", "db_upgraded", "", "yes");
INSERT INTO `k2zp_options` VALUES("120", "_transient_random_seed", "bd423627de5cdd7061411f7b09ff80d9", "yes");
INSERT INTO `k2zp_options` VALUES("122", "_site_transient_timeout_browser_1e7b9b97f8a6aa50ba09f7b0e6e5a2fd", "1428329355", "yes");
INSERT INTO `k2zp_options` VALUES("123", "_site_transient_browser_1e7b9b97f8a6aa50ba09f7b0e6e5a2fd", "a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"41.0.2272.104\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `k2zp_options` VALUES("127", "can_compress_scripts", "1", "yes");
INSERT INTO `k2zp_options` VALUES("143", "_site_transient_timeout_wporg_theme_feature_list", "1427736699", "yes");
INSERT INTO `k2zp_options` VALUES("144", "_site_transient_wporg_theme_feature_list", "a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}", "yes");
INSERT INTO `k2zp_options` VALUES("148", "theme_mods_twentyfifteen", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1427725910;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";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:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}}}}", "yes");
INSERT INTO `k2zp_options` VALUES("149", "current_theme", "Cardinal Child Theme", "yes");
INSERT INTO `k2zp_options` VALUES("150", "theme_mods_cardinal-child", "a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:15:\"main_navigation\";i:3;s:11:\"mobile_menu\";i:3;s:11:\"footer_menu\";i:8;s:12:\"overlay_menu\";i:8;}}", "yes");
INSERT INTO `k2zp_options` VALUES("151", "theme_switched", "", "yes");
INSERT INTO `k2zp_options` VALUES("152", "sf_customizer", "a:100:{s:17:\"design_style_type\";s:7:\"minimal\";s:12:\"accent_color\";s:7:\"#35b0d2\";s:16:\"accent_alt_color\";s:7:\"#ffffff\";s:22:\"secondary_accent_color\";s:7:\"#222222\";s:26:\"secondary_accent_alt_color\";s:7:\"#ffffff\";s:13:\"page_bg_color\";s:7:\"#222222\";s:25:\"inner_page_bg_transparent\";s:5:\"color\";s:19:\"inner_page_bg_color\";s:7:\"#FFFFFF\";s:20:\"section_divide_color\";s:7:\"#35b0d2\";s:12:\"alt_bg_color\";s:7:\"#f7f7f7\";s:15:\"topbar_bg_color\";s:7:\"#ffffff\";s:17:\"topbar_text_color\";s:7:\"#ffffff\";s:17:\"topbar_link_color\";s:7:\"#ffffff\";s:23:\"topbar_link_hover_color\";s:7:\"#35b0d2\";s:20:\"topbar_divider_color\";s:7:\"#e3e3e3\";s:15:\"header_bg_color\";s:7:\"#0a0a0a\";s:21:\"header_bg_transparent\";s:5:\"color\";s:19:\"header_border_color\";s:7:\"#ffffff\";s:17:\"header_text_color\";s:4:\"#222\";s:17:\"header_link_color\";s:7:\"#ffffff\";s:23:\"header_link_hover_color\";s:7:\"#35b0d2\";s:20:\"header_divider_style\";s:7:\"divider\";s:20:\"mobile_menu_bg_color\";s:4:\"#222\";s:25:\"mobile_menu_divider_color\";s:4:\"#444\";s:22:\"mobile_menu_text_color\";s:7:\"#e4e4e4\";s:22:\"mobile_menu_link_color\";s:4:\"#fff\";s:28:\"mobile_menu_link_hover_color\";s:7:\"#35b0d2\";s:15:\"nav_hover_style\";s:8:\"standard\";s:12:\"nav_bg_color\";s:4:\"#fff\";s:14:\"nav_text_color\";s:7:\"#252525\";s:18:\"nav_bg_hover_color\";s:7:\"#f7f7f7\";s:20:\"nav_text_hover_color\";s:7:\"#35b0d2\";s:21:\"nav_selected_bg_color\";s:7:\"#e3e3e3\";s:23:\"nav_selected_text_color\";s:7:\"#35b0d2\";s:17:\"nav_pointer_color\";s:7:\"#07c1b6\";s:15:\"nav_sm_bg_color\";s:7:\"#FFFFFF\";s:17:\"nav_sm_text_color\";s:7:\"#666666\";s:21:\"nav_sm_bg_hover_color\";s:7:\"#f7f7f7\";s:23:\"nav_sm_text_hover_color\";s:7:\"#000000\";s:26:\"nav_sm_selected_text_color\";s:7:\"#000000\";s:11:\"nav_divider\";s:5:\"solid\";s:17:\"nav_divider_color\";s:7:\"#f0f0f0\";s:21:\"overlay_menu_bg_color\";s:7:\"#35b0d2\";s:23:\"overlay_menu_link_color\";s:7:\"#ffffff\";s:29:\"overlay_menu_link_hover_color\";s:7:\"#898989\";s:32:\"overlay_menu_link_hover_bg_color\";s:7:\"#ffffff\";s:18:\"promo_bar_bg_color\";s:7:\"#e4e4e4\";s:20:\"promo_bar_text_color\";s:4:\"#222\";s:19:\"breadcrumb_bg_color\";s:7:\"#e4e4e4\";s:21:\"breadcrumb_text_color\";s:7:\"#666666\";s:21:\"breadcrumb_link_color\";s:7:\"#999999\";s:21:\"page_heading_bg_color\";s:7:\"#f7f7f7\";s:23:\"page_heading_text_color\";s:7:\"#222222\";s:23:\"page_heading_text_align\";s:4:\"left\";s:10:\"body_color\";s:7:\"#222222\";s:14:\"body_alt_color\";s:7:\"#222222\";s:10:\"link_color\";s:7:\"#444444\";s:16:\"link_hover_color\";s:7:\"#999999\";s:8:\"h1_color\";s:7:\"#222222\";s:8:\"h2_color\";s:7:\"#222222\";s:8:\"h3_color\";s:7:\"#222222\";s:8:\"h4_color\";s:7:\"#222222\";s:8:\"h5_color\";s:7:\"#222222\";s:8:\"h6_color\";s:7:\"#222222\";s:16:\"overlay_bg_color\";s:7:\"#35b0d2\";s:18:\"overlay_text_color\";s:7:\"#ffffff\";s:28:\"article_review_bar_alt_color\";s:7:\"#f7f7f7\";s:24:\"article_review_bar_color\";s:7:\"#2e2e36\";s:29:\"article_review_bar_text_color\";s:4:\"#fff\";s:23:\"article_extras_bg_color\";s:7:\"#f7f7f7\";s:19:\"article_np_bg_color\";s:4:\"#444\";s:21:\"article_np_text_color\";s:4:\"#fff\";s:14:\"input_bg_color\";s:7:\"#f7f7f7\";s:16:\"input_text_color\";s:7:\"#222222\";s:23:\"icon_container_bg_color\";s:7:\"#1dc6df\";s:13:\"sf_icon_color\";s:7:\"#1dc6df\";s:29:\"icon_container_hover_bg_color\";s:4:\"#222\";s:17:\"sf_icon_alt_color\";s:7:\"#ffffff\";s:19:\"boxed_content_color\";s:7:\"#07c1b6\";s:15:\"share_button_bg\";s:7:\"#35b0d2\";s:17:\"share_button_text\";s:7:\"#ffffff\";s:10:\"bold_rp_bg\";s:7:\"#e3e3e3\";s:12:\"bold_rp_text\";s:4:\"#222\";s:16:\"bold_rp_hover_bg\";s:7:\"#35b0d2\";s:18:\"bold_rp_hover_text\";s:7:\"#ffffff\";s:15:\"tweet_slider_bg\";s:7:\"#1dc6df\";s:17:\"tweet_slider_text\";s:7:\"#ffffff\";s:17:\"tweet_slider_link\";s:7:\"#339933\";s:23:\"tweet_slider_link_hover\";s:7:\"#ffffff\";s:21:\"testimonial_slider_bg\";s:7:\"#1dc6df\";s:23:\"testimonial_slider_text\";s:7:\"#ffffff\";s:15:\"footer_bg_color\";s:7:\"#222222\";s:17:\"footer_text_color\";s:7:\"#cccccc\";s:17:\"footer_link_color\";s:7:\"#ffffff\";s:23:\"footer_link_hover_color\";s:7:\"#cccccc\";s:19:\"footer_border_color\";s:7:\"#333333\";s:18:\"copyright_bg_color\";s:7:\"#222222\";s:20:\"copyright_text_color\";s:7:\"#999999\";s:20:\"copyright_link_color\";s:7:\"#ffffff\";s:26:\"copyright_link_hover_color\";s:7:\"#cccccc\";}", "yes");
INSERT INTO `k2zp_options` VALUES("153", "redux-framework-tracking", "a:2:{s:8:\"dev_mode\";b:0;s:4:\"hash\";s:32:\"08754c077cb5175873a6c5403194e641\";}", "yes");
INSERT INTO `k2zp_options` VALUES("155", "sf_cardinal_options", "a:248:{s:8:\"last_tab\";s:0:\"\";s:17:\"enable_responsive\";s:1:\"1\";s:13:\"site_maxwidth\";s:4:\"1170\";s:10:\"enable_rtl\";s:1:\"0\";s:11:\"page_layout\";s:9:\"fullwidth\";s:18:\"enable_page_shadow\";s:1:\"1\";s:23:\"enable_page_transitions\";s:1:\"0\";s:15:\"page_transition\";s:4:\"wave\";s:19:\"enable_articleswipe\";s:1:\"0\";s:16:\"enable_backtotop\";s:1:\"1\";s:13:\"sidebar_width\";s:8:\"standard\";s:21:\"enable_stickysidebars\";s:1:\"0\";s:15:\"onepagenav_type\";s:6:\"arrows\";s:20:\"disable_pagecomments\";s:1:\"1\";s:18:\"enable_twitter_rts\";s:1:\"0\";s:21:\"breadcrumb_in_heading\";s:1:\"0\";s:14:\"custom_favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"custom_ios_title\";s:0:\"\";s:17:\"custom_ios_icon57\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"custom_ios_icon72\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"custom_ios_icon114\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"custom_ios_icon144\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"rss_feed_url\";s:10:\"?feed=rss2\";s:16:\"google_analytics\";s:0:\"\";s:23:\"custom_admin_login_logo\";a:5:{s:3:\"url\";s:70:\"http://www.united.sommar.se/wp-content/uploads/2015/04/Admin-login.png\";s:2:\"id\";s:1:\"6\";s:6:\"height\";s:2:\"95\";s:5:\"width\";s:3:\"254\";s:9:\"thumbnail\";s:77:\"http://www.united.sommar.se/wp-content/uploads/2015/04/Admin-login-150x95.png\";}s:15:\"overlay_opacity\";s:2:\"90\";s:25:\"disable_mobile_animations\";s:1:\"1\";s:20:\"enable_styleswitcher\";s:1:\"0\";s:18:\"enable_maintenance\";s:1:\"0\";s:21:\"maintenance_mode_page\";s:0:\"\";s:18:\"enable_min_scripts\";s:1:\"0\";s:16:\"404_page_content\";s:172:\"Sorry but we couldn\'t find the page you are looking for. Please check to make sure you\'ve typed the URL correctly. You may also want to search for what you are looking for.\";s:18:\"404_sidebar_config\";s:13:\"right-sidebar\";s:16:\"404_left_sidebar\";s:9:\"sidebar-1\";s:17:\"404_right_sidebar\";s:9:\"sidebar-1\";s:19:\"disable_social_meta\";s:1:\"0\";s:23:\"twitter_author_username\";s:0:\"\";s:17:\"googleplus_author\";s:0:\"\";s:11:\"disable_spb\";s:1:\"0\";s:14:\"spb-post-types\";a:4:{i:0;s:4:\"page\";i:1;s:9:\"portfolio\";i:2;s:4:\"post\";i:3;s:4:\"team\";}s:10:\"disable_ss\";s:1:\"0\";s:14:\"disable_loveit\";s:1:\"0\";s:11:\"loveit_icon\";s:8:\"ss-heart\";s:11:\"loveit_text\";s:5:\"Likes\";s:17:\"disable_sfgallery\";s:1:\"0\";s:12:\"lightbox_nav\";s:7:\"default\";s:15:\"lightbox_thumbs\";s:1:\"1\";s:13:\"lightbox_skin\";s:5:\"light\";s:16:\"lightbox_sharing\";s:1:\"1\";s:24:\"carousel_paginationSpeed\";s:3:\"800\";s:19:\"carousel_slideSpeed\";s:3:\"200\";s:17:\"carousel_autoplay\";s:1:\"0\";s:19:\"carousel_pagination\";s:1:\"1\";s:21:\"slider_slideshowSpeed\";s:4:\"7000\";s:21:\"slider_animationSpeed\";s:3:\"600\";s:15:\"slider_autoplay\";s:1:\"0\";s:10:\"custom_css\";s:535:\"                    .spb-row-container.spb_parallax_asset {\r\n  box-shadow: none;\r\n  padding-top: 30px;\r\n  padding-bottom: 30px;\r\n}\r\n\r\n#header-section #header {\r\n  background-image: url(/wp-content/uploads/2015/04/bg-header.png)\r\n}\r\n\r\n.toggle-wrap .spb_toggle, .spb_toggle_content {\r\n  border-color: #e3e3e3;\r\n}\r\n\r\n.testimonials.carousel-items li .testimonial-text:after {\r\n  border-left-color: #eeeeee;\r\n  border-top-color: #eeeeee;\r\n}\r\n\r\n.testimonials.carousel-items li .testimonial-text {\r\n  border-color: #eeeeee;\r\n}                \";s:9:\"custom_js\";s:36:\"                                    \";s:27:\"colour_scheme_select_scheme\";s:7:\"default\";s:12:\"use_bg_image\";s:1:\"0\";s:15:\"custom_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"bg_size\";s:4:\"auto\";s:9:\"enable_tb\";s:1:\"0\";s:14:\"tb_left_config\";s:4:\"text\";s:12:\"tb_left_text\";s:48:\"Contact us on 0800 123 4567 or info@cardinal.com\";s:15:\"tb_right_config\";s:4:\"text\";s:13:\"tb_right_text\";s:48:\"Contact us on 0800 123 4567 or info@cardinal.com\";s:13:\"header_layout\";s:8:\"header-2\";s:16:\"fullwidth_header\";s:1:\"0\";s:18:\"header_left_config\";s:4:\"text\";s:16:\"header_left_text\";s:0:\"\";s:19:\"header_right_config\";s:12:\"overlay-menu\";s:17:\"header_right_text\";s:0:\"\";s:21:\"contact_slideout_page\";s:2:\"10\";s:8:\"show_sub\";s:1:\"0\";s:16:\"show_translation\";s:1:\"0\";s:12:\"show_account\";s:1:\"0\";s:9:\"show_cart\";s:1:\"0\";s:15:\"show_cart_count\";s:1:\"0\";s:13:\"show_wishlist\";s:1:\"0\";s:8:\"sub_code\";s:0:\"\";s:18:\"enable_mini_header\";s:1:\"1\";s:25:\"enable_mini_header_resize\";s:1:\"1\";s:25:\"enable_sticky_header_hide\";s:1:\"1\";s:18:\"header_search_type\";s:10:\"search-off\";s:16:\"header_search_pt\";s:3:\"any\";s:20:\"vertical_header_text\";s:0:\"\";s:11:\"logo_upload\";a:5:{s:3:\"url\";s:87:\"http://www.united.sommar.se/wp-content/uploads/2015/04/20years-anniversary-cashback.png\";s:2:\"id\";s:2:\"70\";s:6:\"height\";s:2:\"80\";s:5:\"width\";s:3:\"278\";s:9:\"thumbnail\";s:94:\"http://www.united.sommar.se/wp-content/uploads/2015/04/20years-anniversary-cashback-150x80.png\";}s:18:\"retina_logo_upload\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"alt_logo_upload\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"logo_maxheight\";s:3:\"100\";s:12:\"logo_padding\";s:0:\"\";s:19:\"enable_logo_tagline\";s:1:\"0\";s:9:\"logo_font\";a:10:{s:11:\"font-family\";s:4:\"Lato\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"24px\";s:5:\"color\";s:4:\"#222\";}s:19:\"mobile_header_shown\";s:11:\"tablet-port\";s:20:\"mobile_header_sticky\";s:1:\"0\";s:20:\"mobile_header_layout\";s:9:\"left-logo\";s:16:\"mobile_menu_type\";s:8:\"slideout\";s:15:\"mobile_top_text\";s:0:\"\";s:18:\"mobile_show_search\";s:1:\"0\";s:23:\"mobile_show_translation\";s:1:\"0\";s:16:\"mobile_show_cart\";s:1:\"0\";s:19:\"mobile_show_account\";s:1:\"0\";s:13:\"enable_footer\";s:1:\"0\";s:21:\"enable_footer_divider\";s:1:\"1\";s:13:\"footer_layout\";s:8:\"footer-1\";s:16:\"enable_copyright\";s:1:\"1\";s:24:\"enable_copyright_divider\";s:1:\"1\";s:21:\"footer_copyright_text\";s:117:\"©[the-year] United Cashback · Built with love by <a href=\"http://www.sommar.se\" target=\"_blank\">Sommar Design</a>.\";s:15:\"copyright_right\";s:4:\"menu\";s:27:\"footer_copyright_text_right\";s:112:\"©[the-year] Cardinal · Built with love by <a href=\"http://www.swiftideas.net\">Swift Ideas</a> using [wp-link].\";s:13:\"show_backlink\";s:1:\"0\";s:9:\"ss_enable\";s:1:\"1\";s:9:\"ss_mobile\";s:1:\"1\";s:11:\"field1_text\";s:15:\"I\'m looking for\";s:20:\"field1_filter_parent\";s:0:\"\";s:19:\"field1_default_text\";s:7:\"product\";s:11:\"field2_text\";s:9:\"in a size\";s:20:\"field2_filter_parent\";s:0:\"\";s:19:\"field2_default_text\";s:4:\"size\";s:11:\"field3_text\";s:13:\". Show me the\";s:20:\"field3_filter_parent\";s:0:\"\";s:19:\"field3_default_text\";s:6:\"colour\";s:11:\"field4_text\";s:0:\"\";s:20:\"field4_filter_parent\";s:0:\"\";s:19:\"field4_default_text\";s:0:\"\";s:11:\"field5_text\";s:0:\"\";s:20:\"field5_filter_parent\";s:0:\"\";s:19:\"field5_default_text\";s:0:\"\";s:11:\"field6_text\";s:0:\"\";s:20:\"field6_filter_parent\";s:0:\"\";s:19:\"field6_default_text\";s:0:\"\";s:13:\"ss_final_text\";s:6:\"items.\";s:14:\"ss_button_text\";s:12:\"Super Search\";s:23:\"enable_footer_promo_bar\";s:1:\"0\";s:21:\"footer_promo_bar_type\";s:6:\"button\";s:21:\"footer_promo_bar_text\";s:31:\"Enter your promo bar text here.\";s:29:\"footer_promo_bar_button_color\";s:6:\"accent\";s:28:\"footer_promo_bar_button_text\";s:12:\"Button Text.\";s:28:\"footer_promo_bar_button_link\";s:7:\"http://\";s:30:\"footer_promo_bar_button_target\";s:5:\"_self\";s:13:\"review_format\";s:0:\"\";s:12:\"review_cat_1\";s:0:\"\";s:12:\"review_cat_2\";s:0:\"\";s:12:\"review_cat_3\";s:0:\"\";s:12:\"review_cat_4\";s:0:\"\";s:9:\"body_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"21px\";s:14:\"letter-spacing\";s:0:\"\";}s:7:\"h1_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:4:\"34px\";s:14:\"letter-spacing\";s:0:\"\";}s:7:\"h2_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:4:\"30px\";s:14:\"letter-spacing\";s:0:\"\";}s:7:\"h3_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"24px\";s:14:\"letter-spacing\";s:0:\"\";}s:7:\"h4_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"23px\";s:14:\"letter-spacing\";s:0:\"\";}s:7:\"h5_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"18px\";s:14:\"letter-spacing\";s:0:\"\";}s:7:\"h6_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:4:\"16px\";s:14:\"letter-spacing\";s:0:\"\";}s:9:\"menu_font\";a:10:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:14:\"letter-spacing\";s:0:\"\";}s:25:\"default_show_page_heading\";s:1:\"1\";s:22:\"default_sidebar_config\";s:11:\"no-sidebars\";s:20:\"default_left_sidebar\";s:9:\"sidebar-1\";s:21:\"default_right_sidebar\";s:9:\"sidebar-1\";s:27:\"default_post_sidebar_config\";s:11:\"no-sidebars\";s:25:\"default_post_left_sidebar\";s:9:\"sidebar-1\";s:26:\"default_post_right_sidebar\";s:9:\"sidebar-1\";s:22:\"default_include_author\";s:1:\"1\";s:22:\"default_include_social\";s:1:\"1\";s:23:\"default_include_related\";s:1:\"1\";s:19:\"default_thumb_media\";s:5:\"image\";s:20:\"default_detail_media\";s:5:\"image\";s:21:\"default_media_display\";s:8:\"standard\";s:22:\"archive_sidebar_config\";s:13:\"right-sidebar\";s:20:\"archive_sidebar_left\";s:9:\"sidebar-1\";s:21:\"archive_sidebar_right\";s:9:\"sidebar-1\";s:20:\"archive_display_type\";s:7:\"masonry\";s:22:\"archive_content_output\";s:7:\"excerpt\";s:30:\"portfolio_archive_display_type\";s:8:\"standard\";s:25:\"portfolio_archive_columns\";s:1:\"4\";s:17:\"bp_sidebar_config\";s:13:\"right-sidebar\";s:15:\"bp_sidebar_left\";s:9:\"sidebar-1\";s:16:\"bp_sidebar_right\";s:9:\"sidebar-1\";s:17:\"bb_sidebar_config\";s:13:\"right-sidebar\";s:15:\"bb_sidebar_left\";s:9:\"sidebar-1\";s:16:\"bb_sidebar_right\";s:9:\"sidebar-1\";s:11:\"cpt-disable\";a:9:{s:9:\"portfolio\";s:0:\"\";s:9:\"galleries\";s:0:\"\";s:4:\"team\";s:0:\"\";s:7:\"clients\";s:0:\"\";s:4:\"faqs\";s:0:\"\";s:12:\"testimonials\";s:0:\"\";s:9:\"directory\";s:0:\"\";s:11:\"spb-section\";s:0:\"\";s:12:\"swift-slider\";s:0:\"\";}s:9:\"blog_page\";s:0:\"\";s:31:\"enable_post_category_navigation\";s:1:\"0\";s:13:\"single_author\";s:1:\"0\";s:12:\"remove_dates\";s:1:\"0\";s:14:\"portfolio_page\";s:0:\"\";s:26:\"enable_category_navigation\";s:1:\"0\";s:26:\"related_projects_fullwidth\";s:1:\"1\";s:24:\"related_projects_columns\";s:1:\"3\";s:16:\"testimonial_page\";s:0:\"\";s:19:\"enable_catalog_mode\";s:1:\"0\";s:17:\"products_per_page\";s:2:\"24\";s:9:\"new_badge\";s:1:\"7\";s:25:\"checkout_new_account_text\";s:207:\"Creating an account with Cardinal is quick and easy, and will allow you to move through our checkout quicker. You can also store multiple shipping addresses, gain access to your order history, and much more.\";s:13:\"help_bar_text\";s:51:\"Need help? Call customer services on 0800 123 4567.\";s:11:\"email_modal\";s:89:\"Enter your contact details or email form shortcode here. (Text/HTML/Shortcodes accepted).\";s:14:\"shipping_modal\";s:70:\"Enter your shipping information here. (Text/HTML/Shortcodes accepted).\";s:13:\"returns_modal\";s:82:\"Enter your returns and exchange information here. (Text/HTML/Shortcodes accepted).\";s:10:\"faqs_modal\";s:54:\"Enter your faqs here. (Text/HTML/Shortcodes accepted).\";s:14:\"feedback_modal\";s:72:\"Enter your feedback modal content here. (Text/HTML/Shortcodes accepted).\";s:20:\"product_display_type\";s:8:\"standard\";s:23:\"product_display_columns\";s:1:\"4\";s:23:\"product_display_gutters\";s:1:\"1\";s:25:\"product_display_fullwidth\";s:1:\"0\";s:16:\"product_qv_hover\";s:1:\"1\";s:14:\"product_rating\";s:1:\"1\";s:14:\"product_buybtn\";s:1:\"1\";s:18:\"woo_sidebar_config\";s:11:\"no-sidebars\";s:16:\"woo_left_sidebar\";s:0:\"\";s:17:\"woo_right_sidebar\";s:0:\"\";s:21:\"woo_show_page_heading\";s:1:\"1\";s:22:\"woo_page_heading_style\";s:8:\"standard\";s:22:\"woo_page_heading_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:27:\"woo_page_heading_text_style\";s:5:\"light\";s:19:\"enable_default_tabs\";s:1:\"0\";s:19:\"enable_product_zoom\";s:1:\"0\";s:17:\"product_zoom_type\";s:5:\"inner\";s:30:\"default_product_sidebar_config\";s:11:\"no-sidebars\";s:28:\"default_product_left_sidebar\";s:0:\"\";s:29:\"default_product_right_sidebar\";s:0:\"\";s:16:\"twitter_username\";s:0:\"\";s:17:\"facebook_page_url\";s:0:\"\";s:17:\"dribbble_username\";s:0:\"\";s:14:\"vimeo_username\";s:0:\"\";s:15:\"tumblr_username\";s:0:\"\";s:14:\"skype_username\";s:0:\"\";s:17:\"linkedin_page_url\";s:0:\"\";s:19:\"googleplus_page_url\";s:0:\"\";s:15:\"flickr_page_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:18:\"pinterest_username\";s:0:\"\";s:14:\"foursquare_url\";s:0:\"\";s:18:\"instagram_username\";s:0:\"\";s:10:\"github_url\";s:0:\"\";s:8:\"xing_url\";s:0:\"\";s:11:\"behance_url\";s:0:\"\";s:14:\"deviantart_url\";s:0:\"\";s:14:\"soundcloud_url\";s:0:\"\";s:8:\"yelp_url\";s:0:\"\";s:7:\"rss_url\";s:0:\"\";s:6:\"vk_url\";s:0:\"\";s:15:\"preset_bg_image\";s:0:\"\";s:13:\"field1_filter\";s:11:\"product_cat\";s:13:\"field2_filter\";s:11:\"product_cat\";s:13:\"field3_filter\";s:11:\"product_cat\";s:13:\"field4_filter\";s:11:\"product_cat\";s:13:\"field5_filter\";s:11:\"product_cat\";s:13:\"field6_filter\";s:11:\"product_cat\";}", "yes");
INSERT INTO `k2zp_options` VALUES("156", "sf_cardinal_options-transients", "a:3:{s:14:\"changed_values\";a:1:{s:13:\"enable_footer\";s:1:\"1\";}s:9:\"last_save\";i:1427964266;s:13:\"last_compiler\";i:1427964067;}", "yes");
INSERT INTO `k2zp_options` VALUES("160", "recently_activated", "a:0:{}", "yes");
INSERT INTO `k2zp_options` VALUES("161", "masterslider_db_version", "1.03", "yes");
INSERT INTO `k2zp_options` VALUES("162", "masterslider_capabilities_added", "1", "yes");
INSERT INTO `k2zp_options` VALUES("163", "masterslider_default_options_added", "1", "yes");
INSERT INTO `k2zp_options` VALUES("164", "masterslider_default_buttons_added", "1", "yes");
INSERT INTO `k2zp_options` VALUES("165", "msp_general_setting", "", "yes");
INSERT INTO `k2zp_options` VALUES("166", "msp_woocommerce", "", "yes");
INSERT INTO `k2zp_options` VALUES("167", "msp_advanced", "", "yes");
INSERT INTO `k2zp_options` VALUES("168", "masterslider_plugin_version", "2.5.0", "yes");
INSERT INTO `k2zp_options` VALUES("173", "_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:65:\"https://downloads.wordpress.org/release/sv_SE/wordpress-4.1.1.zip\";s:6:\"locale\";s:5:\"sv_SE\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/sv_SE/wordpress-4.1.1.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:5:\"4.1.1\";s:7:\"version\";s:5:\"4.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1428421233;s:15:\"version_checked\";s:5:\"4.1.1\";s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `k2zp_options` VALUES("175", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1428421235;s:7:\"checked\";a:5:{s:14:\"cardinal-child\";s:3:\"1.0\";s:8:\"cardinal\";s:4:\"2.06\";s:13:\"twentyfifteen\";s:3:\"1.0\";s:14:\"twentyfourteen\";s:3:\"1.3\";s:14:\"twentythirteen\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `k2zp_options` VALUES("221", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `k2zp_options` VALUES("237", "revslider_checktables", "1", "yes");
INSERT INTO `k2zp_options` VALUES("238", "revslider-static-css", ".tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}", "yes");
INSERT INTO `k2zp_options` VALUES("239", "revslider-update-check-short", "1428415178", "yes");
INSERT INTO `k2zp_options` VALUES("240", "revslider-latest-version", "4.6.5", "yes");
INSERT INTO `k2zp_options` VALUES("241", "revslider-valid-notice", "false", "yes");
INSERT INTO `k2zp_options` VALUES("247", "testimonials-category_children", "a:0:{}", "yes");
INSERT INTO `k2zp_options` VALUES("248", "spb_templates", "a:5:{s:18:\"about-us_546123293\";a:2:{s:4:\"name\";s:8:\"About us\";s:8:\"template\";s:7653:\"[spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_text_block title=\\\"Experience\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of &nbsp;Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.</p><p>Cash Back have been an active member of the International VAT Association since its foundation.</p>[/spb_text_block] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_blank_spacer height=\\\"50px\\\" responsive_vis=\\\"hidden-xs\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p><img class=\\\"alignnone size-full wp-image-112\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\\\" alt=\\\"VAT-Maze\\\" width=\\\"770\\\" height=\\\"500\\\"></p><p style=\\\"text-align: center;\\\"><em>Let us guide you through the maze</em></p>[/spb_text_block] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_toggle title=\\\"Insurance\\\" open=\\\"true\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Your claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:</p><p>• Loss of original invoices during storage or transport<br>• Errors or negligence</p>[/spb_toggle] [spb_toggle title=\\\"Good Working Practices\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.</p>[/spb_toggle] [spb_toggle title=\\\"Transparency\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.</p>[/spb_toggle] [/spb_column] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] [spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" row_bg_color=\\\"#f7f7f7\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" col_responsive_vis=\\\"hidden-xs\\\" width=\\\"1/6\\\" el_position=\\\"first\\\"] [/spb_column] [spb_column width=\\\"2/3\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1 style=\\\"text-align: center;\\\">Service standards</h1><p style=\\\"text-align: center;\\\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p><p style=\\\"text-align: center;\\\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.&nbsp; Clients can check the status of their claims and VAT payments through own login.</p><p style=\\\"text-align: center;\\\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>[/spb_text_block] [/spb_column] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" col_responsive_vis=\\\"hidden-xs\\\" width=\\\"1/6\\\" el_position=\\\"last\\\"] [/spb_column] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] [spb_row wrap_type=\\\"full-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/6\\\" el_position=\\\"first\\\"] [/spb_column] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"4\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" width=\\\"1/2\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1 style=\\\"text-align: left;\\\">Presence - VAT experts in every country</h1><p>Cash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.</p><p>Cash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.</p><p>Our team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact&nbsp;United Cash Back&nbsp;for assistance.</p>[/spb_text_block] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p><img class=\\\"alignnone size-full wp-image-129\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\\\" alt=\\\"Cashback-map\\\" width=\\\"987\\\" height=\\\"900\\\"></p>[/spb_text_block] [/spb_column] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] \";}s:21:\"start-page_1699136478\";a:2:{s:4:\"name\";s:10:\"Start page\";s:8:\"template\";s:7515:\"[spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"30px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_slider revslider_shortcode=\\\"start\\\" fullwidth=\\\"no\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] [spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" row_bg_color=\\\"#f7f7f7\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"30px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"VAT RECLAIM\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-rotate-right\\\" link=\\\"/our-services/vat-reclaim\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#35b0d2\\\" icon_bg_color=\\\"#222222\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT RECLAIM ON T&amp;E EXPENSES\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-suitcase\\\" link=\\\"/our-services/vat-reclaim-on-te-expenses\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#805494\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_icon_box title=\\\"VAT RECOVERY ON AVIATION\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-plane\\\" link=\\\"/our-services/vat-recovery-on-aviation\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#fdc131\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\\\"10px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"LOCAL VAT RECOVERY\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-home\\\" link=\\\"/our-services/local-vat-recovery\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT CONSULTING\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-briefcase\\\" link=\\\"/our-services/vat-consulting\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" width=\\\"1/3\\\" el_position=\\\"last\\\"] [/spb_column] [spb_blank_spacer height=\\\"30px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] [spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" row_bg_color=\\\"#ffffff\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" col_responsive_vis=\\\"hidden-xs\\\" width=\\\"1/6\\\" el_position=\\\"first\\\"] [/spb_column] [spb_column width=\\\"2/3\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1 style=\\\"text-align: center;\\\">Why choose us</h1><p style=\\\"text-align: center;\\\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>[/spb_text_block] [spb_blank_spacer height=\\\"30px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1 style=\\\"text-align: center;\\\">and...</h1><p style=\\\"text-align: center;\\\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>[/spb_text_block] [/spb_column] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" col_responsive_vis=\\\"hidden-xs\\\" width=\\\"1/6\\\" el_position=\\\"last\\\"] [/spb_column] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] [spb_row wrap_type=\\\"full-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_testimonial_slider title=\\\"Testimonials\\\" text_size=\\\"standard\\\" item_count=\\\"6\\\" order=\\\"rand\\\" category=\\\"All\\\" autoplay=\\\"yes\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_column] [/spb_row] \";}s:26:\"our-vat-services_499504964\";a:2:{s:4:\"name\";s:16:\"Our VAT services\";s:8:\"template\";s:7714:\"[spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"2/3\\\" el_position=\\\"first\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p><img class=\\\"alignnone size-full wp-image-136\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png\\\" alt=\\\"Our-vat-services-cashback-1\\\" width=\\\"770\\\" height=\\\"300\\\"></p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/2\\\" el_position=\\\"first\\\"]<p>Cash Back is a consolidation of several professional European and other <strong>VAT recovery</strong> firms formed in 1993.&nbsp; The result is a wealth of knowledge covering the most diverse VAT issues from all possible branches. We offer a wide range of services to maximise your VAT returns and minimise your VAT administration.</p><p><strong>RECOVAT</strong>:&nbsp;As a result of the 2010 legislation and EU process changes within foreign VAT Refunding, Cash Back developed RECOVAT; leading edge technology to provide an effective system for recovery of VAT. RECOVAT is a quick, secure and efficient tool which allows invoice images to be downloaded from accounting platforms into the RECOVAT system. It also provides an accurate and smooth process for creating invoice lists and vat applications.</p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/2\\\" el_position=\\\"last\\\"]<p>Through CB VATAmerica we offer a unique <strong>Aviation VAT</strong> and fuel excise tax recovery program to reduce the indirect tax costs of operating aircraft in Europe for general aviation businesses or commercial operators.&nbsp; CB VATAmerica’s cooperation arrangements with industry leaders utilise current technology to achieve better results, efficiently and effectively.</p><p>Cash Back’s <strong>VATALYTICS</strong>&nbsp;is our sophisticated program used to revolutionise former high labour intensive VAT accounting controls, which companies are otherwise forced to employ.&nbsp; It is a program with an automated search for finding incorrect entries in your local VAT accounts.</p><p>With our <strong>VAT Consulting</strong> services we can resolve all your VAT questions via your local contact person. Simple and efficient!</p>[/spb_text_block] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_toggle title=\\\"Client Satisfaction Rating\\\" open=\\\"true\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>• 87% of our clients have been with Cash Back for 2 or more years<br>• 40% of our clients have been with Cash Back for 5 or more years</p>[/spb_toggle] [spb_toggle title=\\\"Good Working Practices\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.</p>[/spb_toggle] [spb_toggle title=\\\"Transparency\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.</p>[/spb_toggle] [/spb_column] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] [spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" row_bg_color=\\\"#f7f7f7\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"VAT RECLAIM\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-rotate-right\\\" link=\\\"/our-services/vat-reclaim\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#35b0d2\\\" icon_bg_color=\\\"#222222\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT RECLAIM ON T&amp;E EXPENSES\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-suitcase\\\" link=\\\"/our-services/vat-reclaim-on-te-expenses\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#805494\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_icon_box title=\\\"VAT RECOVERY ON AVIATION\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-plane\\\" link=\\\"/our-services/vat-recovery-on-aviation\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#fdc131\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\\\"10px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"LOCAL VAT RECOVERY\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-home\\\" link=\\\"/our-services/local-vat-recovery\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT CONSULTING\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-briefcase\\\" link=\\\"/our-services/vat-consulting\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" width=\\\"1/3\\\" el_position=\\\"last\\\"] [/spb_column] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] \";}s:18:\"vat-info_433935251\";a:2:{s:4:\"name\";s:8:\"VAT info\";s:8:\"template\";s:8474:\"[spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"2/3\\\" el_position=\\\"first\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p><img class=\\\"alignnone size-full wp-image-167\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\\\" alt=\\\"VAT-info\\\" width=\\\"785\\\" height=\\\"416\\\"></p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>To get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.</p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/2\\\" el_position=\\\"first\\\"]<h3>8th and 13th VAT Directive Chart</h3><p>To get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\\\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\\\" target=\\\"_blank\\\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.</p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/2\\\" el_position=\\\"last\\\"]<h3>Excise Tax VAT Chart</h3><p>To get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.</p><h3>VAT Chart Aviation</h3><p>To get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.</p>[/spb_text_block] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>[sf_button colour=\\\"accent\\\" type=\\\"standard\\\" size=\\\"standard\\\" link=\\\"#\\\" target=\\\"_self\\\" icon=\\\"fa-clipboard\\\" dropshadow=\\\"no\\\" extraclass=\\\"\\\"]VAT Chart[/sf_button]</p><p>[sf_button colour=\\\"accent\\\" type=\\\"standard\\\" size=\\\"standard\\\" link=\\\"#\\\" target=\\\"_self\\\" icon=\\\"fa-clipboard\\\" dropshadow=\\\"no\\\" extraclass=\\\"\\\"]AviationVAT Chart (EU Based)[/sf_button]</p><p>[sf_button colour=\\\"accent\\\" type=\\\"standard\\\" size=\\\"standard\\\" link=\\\"#\\\" target=\\\"_self\\\" icon=\\\"fa-clipboard\\\" dropshadow=\\\"no\\\" extraclass=\\\"\\\"]AviationVAT Chart (Non-EU Based)[/sf_button]</p>[/spb_text_block] [spb_toggle title=\\\"Client Satisfaction Rating\\\" open=\\\"true\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>• 87% of our clients have been with Cash Back for 2 or more years<br>• 40% of our clients have been with Cash Back for 5 or more years</p>[/spb_toggle] [spb_toggle title=\\\"Good Working Practices\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.</p>[/spb_toggle] [spb_toggle title=\\\"Transparency\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.</p>[/spb_toggle] [spb_testimonial_carousel title=\\\"Testimonials\\\" item_count=\\\"6\\\" order=\\\"rand\\\" category=\\\"All\\\" page_link=\\\"no\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_column] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] [spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" row_bg_color=\\\"#f7f7f7\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1>Our VAT services</h1>[/spb_text_block] [spb_blank_spacer height=\\\"30px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"VAT RECLAIM\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-rotate-right\\\" link=\\\"/our-services/vat-reclaim\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#35b0d2\\\" icon_bg_color=\\\"#222222\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT RECLAIM ON T&amp;E EXPENSES\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-suitcase\\\" link=\\\"/our-services/vat-reclaim-on-te-expenses\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#805494\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_icon_box title=\\\"VAT RECOVERY ON AVIATION\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-plane\\\" link=\\\"/our-services/vat-recovery-on-aviation\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#fdc131\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\\\"10px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"LOCAL VAT RECOVERY\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-home\\\" link=\\\"/our-services/local-vat-recovery\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT CONSULTING\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-briefcase\\\" link=\\\"/our-services/vat-consulting\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" width=\\\"1/3\\\" el_position=\\\"last\\\"] [/spb_column] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] \";}s:21:\"vat-reclaim_617555031\";a:2:{s:4:\"name\";s:11:\"VAT Reclaim\";s:8:\"template\";s:10384:\"[spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"2/3\\\" el_position=\\\"first\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p><img class=\\\"alignnone size-full wp-image-253\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\\\" alt=\\\"Reclaim-VAT-Cashback\\\" width=\\\"770\\\" height=\\\"300\\\"></p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Successfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.&nbsp; Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.&nbsp; This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.</p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/2\\\" el_position=\\\"first\\\"]<h3>8th and 13th VAT Directive Chart</h3><p>To get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\\\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\\\" target=\\\"_blank\\\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.</p>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/2\\\" el_position=\\\"last\\\"]<h3>Excise Tax VAT Chart</h3><p>To get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.</p><h3>VAT Chart Aviation</h3><p>To get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.</p>[/spb_text_block] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_boxed_content type=\\\"coloured\\\" custom_bg_colour=\\\"#f7f7f7\\\" custom_text_colour=\\\"#222222\\\" padding_vertical=\\\"4\\\" padding_horizontal=\\\"4\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>[one_half]</p><h2>The RECOVAT Method</h2><p>We upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.</p><p>We respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.</p><p>[/one_half]<br>[one_half_last]</p><p><img class=\\\"  wp-image-157 alignright\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\\\" alt=\\\"Recovat-logo\\\" width=\\\"190\\\" height=\\\"76\\\"></p><p>&nbsp;</p><h3></h3><h3></h3><h3>All you need to do is:</h3><p><img class=\\\"alignnone size-full wp-image-158\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\\\" alt=\\\"engine\\\" width=\\\"335\\\" height=\\\"143\\\"></p><p>The RECOVAT engine has been designed to efficiently manage any volume of travel expenses.</p><p>[/one_half_last]</p>[/spb_boxed_content] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1>The RECOVAT Process in detail</h1>[/spb_text_block] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p><img class=\\\"alignnone size-full wp-image-163\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\\\" alt=\\\"process-cashback\\\" width=\\\"729\\\" height=\\\"149\\\"></p>[/spb_text_block] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_toggle title=\\\"Client Satisfaction Rating\\\" open=\\\"true\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>• 87% of our clients have been with Cash Back for 2 or more years<br>• 40% of our clients have been with Cash Back for 5 or more years</p>[/spb_toggle] [spb_toggle title=\\\"Good Working Practices\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.</p>[/spb_toggle] [spb_toggle title=\\\"Transparency\\\" open=\\\"false\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>Cash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.</p>[/spb_toggle] [spb_testimonial_carousel title=\\\"Testimonials\\\" item_count=\\\"6\\\" order=\\\"rand\\\" category=\\\"All\\\" page_link=\\\"no\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_column] [/spb_row] [spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" row_bg_color=\\\"#f7f7f7\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1>Our VAT services</h1>[/spb_text_block] [spb_blank_spacer height=\\\"30px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"VAT RECLAIM\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-rotate-right\\\" link=\\\"/our-services/vat-reclaim\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#35b0d2\\\" icon_bg_color=\\\"#222222\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT RECLAIM ON T&amp;E EXPENSES\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-suitcase\\\" link=\\\"/our-services/vat-reclaim-on-te-expenses\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#805494\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\" el_position=\\\"last\\\"] [spb_icon_box title=\\\"VAT RECOVERY ON AVIATION\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-plane\\\" link=\\\"/our-services/vat-recovery-on-aviation\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#fdc131\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\\\"10px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/3\\\" el_position=\\\"first\\\"] [spb_icon_box title=\\\"LOCAL VAT RECOVERY\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-home\\\" link=\\\"/our-services/local-vat-recovery\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>[/spb_icon_box] [/spb_column] [spb_column width=\\\"1/3\\\"] [spb_icon_box title=\\\"VAT CONSULTING\\\" box_type=\\\"boxed-two\\\" icon=\\\"fa-briefcase\\\" link=\\\"/our-services/vat-consulting\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" icon_color=\\\"#e24f57\\\" text_color=\\\"#222222\\\" bg_color=\\\"#ffffff\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p style=\\\"text-align: center;\\\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\\\"cover\\\" col_parallax_image_movement=\\\"fixed\\\" col_parallax_image_speed=\\\"0.5\\\" col_padding=\\\"0\\\" col_animation=\\\"none\\\" col_animation_delay=\\\"0\\\" width=\\\"1/3\\\" el_position=\\\"last\\\"] [/spb_column] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] \";}}", "no");
INSERT INTO `k2zp_options` VALUES("255", "category_children", "a:0:{}", "yes");
INSERT INTO `k2zp_options` VALUES("270", "duplicate_post_copyexcerpt", "1", "yes");
INSERT INTO `k2zp_options` VALUES("271", "duplicate_post_copyattachments", "0", "yes");
INSERT INTO `k2zp_options` VALUES("272", "duplicate_post_copychildren", "0", "yes");
INSERT INTO `k2zp_options` VALUES("273", "duplicate_post_copystatus", "0", "yes");
INSERT INTO `k2zp_options` VALUES("274", "duplicate_post_taxonomies_blacklist", "a:0:{}", "yes");
INSERT INTO `k2zp_options` VALUES("275", "duplicate_post_show_row", "1", "yes");
INSERT INTO `k2zp_options` VALUES("276", "duplicate_post_show_adminbar", "1", "yes");
INSERT INTO `k2zp_options` VALUES("277", "duplicate_post_show_submitbox", "1", "yes");
INSERT INTO `k2zp_options` VALUES("278", "duplicate_post_version", "2.6", "yes");
INSERT INTO `k2zp_options` VALUES("360", "spb_elements", "a:2:{s:25:\"recovat-method_2096876218\";a:2:{s:4:\"name\";s:14:\"Recovat method\";s:7:\"element\";s:3036:\"[spb_row wrap_type=\\\"content-width\\\" row_bg_type=\\\"color\\\" color_row_height=\\\"content-height\\\" bg_type=\\\"cover\\\" parallax_image_height=\\\"content-height\\\" parallax_image_movement=\\\"fixed\\\" parallax_image_speed=\\\"0.5\\\" parallax_video_height=\\\"window-height\\\" parallax_video_overlay=\\\"none\\\" row_overlay_opacity=\\\"0\\\" row_padding_vertical=\\\"0\\\" row_margin_vertical=\\\"0\\\" remove_element_spacing=\\\"no\\\" vertical_center=\\\"false\\\" inner_column_height=\\\"col-natural\\\" row_expanding=\\\"no\\\" row_animation=\\\"none\\\" row_animation_delay=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1 class=\\\"tt-element-title\\\">Recovat the automatic way to reclaim foreign VAT</h1>[/spb_text_block] [/spb_column] [spb_column width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_boxed_content type=\\\"coloured\\\" custom_bg_colour=\\\"#f7f7f7\\\" custom_text_colour=\\\"#222222\\\" padding_vertical=\\\"4\\\" padding_horizontal=\\\"4\\\" width=\\\"2/3\\\" el_position=\\\"first last\\\"]<p>[one_half]</p><h2>The RECOVAT Method</h2><p>The RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.</p><p>After receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.</p><p>[/one_half]<br>[one_half_last]</p><p><img class=\\\"  wp-image-157 alignright\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\\\" alt=\\\"Recovat-logo\\\" width=\\\"190\\\" height=\\\"76\\\"></p><p>&nbsp;</p><h3></h3><h3></h3><h3>All you need to do is:</h3><p><img class=\\\"alignnone size-full wp-image-158\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\\\" alt=\\\"engine\\\" width=\\\"335\\\" height=\\\"143\\\"></p><p>[/one_half_last]</p>[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\\\"50px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_column width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<h1>The RECOVAT Process in detail</h1>[/spb_text_block] [/spb_column] [spb_column width=\\\"1/1\\\" el_position=\\\"first last\\\"] [spb_text_block animation=\\\"none\\\" animation_delay=\\\"0\\\" padding_vertical=\\\"0\\\" padding_horizontal=\\\"0\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p><img class=\\\"alignnone size-full wp-image-163\\\" src=\\\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\\\" alt=\\\"process-cashback\\\" width=\\\"729\\\" height=\\\"149\\\"></p>[/spb_text_block] [/spb_column] [spb_blank_spacer height=\\\"70px\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"] [/spb_row] \";}s:34:\"client-satisfaction-rate_711099748\";a:2:{s:4:\"name\";s:24:\"Client satisfaction rate\";s:7:\"element\";s:401:\"[spb_icon_box title=\\\"Client satisfaction rate\\\" box_type=\\\"boxed-four\\\" icon=\\\"fa-info-circle\\\" target=\\\"_self\\\" animation=\\\"none\\\" animation_delay=\\\"0\\\" text_color=\\\"#222222\\\" bg_color=\\\"#f7f7f7\\\" width=\\\"1/1\\\" el_position=\\\"first last\\\"]<p>• 87% of our clients have been with Cash Back for 2 or more years<br>• 40% of our clients have been with Cash Back for 5 or more years</p>[/spb_icon_box] \";}}", "no");
INSERT INTO `k2zp_options` VALUES("418", "_site_transient_timeout_browser_a283ade1c8175664f3a96dd496da56fb", "1429019991", "yes");
INSERT INTO `k2zp_options` VALUES("419", "_site_transient_browser_a283ade1c8175664f3a96dd496da56fb", "a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"41.0.2272.118\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `k2zp_options` VALUES("420", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1428458395", "no");
INSERT INTO `k2zp_options` VALUES("421", "_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "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:14:\"WordPress 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:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress 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:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Apr 2015 20:19: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:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s: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:39:\"http://wordpress.org/?v=4.2-beta4-32054\";s: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:42:\"\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:29:\"Improvements to 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:65:\"https://wordpress.org/news/2015/04/improvements-to-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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2015/04/improvements-to-wordpress-org/#comments\";s: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, 04 Apr 2015 20:19: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:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s: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://wordpress.org/news/?p=3494\";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:335:\"If you visit WordPress.org regularly you might have noticed some changes around the place. If you don’t, now’s the time to check them out! We’ve been working hard to improve the site to make it more useful to everyone, both developers and users, and we hope you like what we’ve done. New Theme and Plugin Directories [&#8230;]\";s: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:\"Samuel Sidler\";s: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:5551:\"<p>If you visit WordPress.org regularly you might have noticed some changes around the place. If you don’t, now’s the time to check them out! We’ve been working hard to improve the site to make it more useful to everyone, both developers and users, and we hope you like what we’ve done.</p>\n<h2>New Theme and Plugin Directories</h2>\n<p>Since WordPress 3.8, you’ve been enjoying improved theme management in your WordPress admin, and in WordPress 4.0 plugin management was refined. We’ve brought these experiences from your admin and re-created them right here on WordPress.org.</p>\n<h3>Theme Directory</h3>\n<p>The <a href=\"https://wordpress.org/themes/\">Theme Directory</a> has a better browsing experience, with handy tabs where you can view featured, popular, and the latest themes. As with the theme experience in your admin, you can use the feature filter to browse for just the right theme for your WordPress website.</p>\n<p><img class=\"alignnone size-large wp-image-3572\" src=\"https://wordpress.org/news/files/2015/04/theme-directory-1024x768.png\" alt=\"theme-directory\" width=\"692\" height=\"519\" /></p>\n<p>Click on a theme to get more information about it, including shiny screenshots, ratings, and statistics.</p>\n<p><img class=\"alignnone size-large wp-image-3573\" src=\"https://wordpress.org/news/files/2015/04/theme-directory-individual-1024x768.png\" alt=\"theme-directory-individual\" width=\"692\" height=\"519\" /></p>\n<p>Konstantin Obenland <a href=\"https://make.wordpress.org/meta/2015/03/10/new-theme-directory/\">posted a good overview</a> of everything involved with the theme directory overhaul and followed up with <a href=\"https://make.wordpress.org/meta/2015/03/31/theme-directory-stats/\">a post on improved statistics</a>.</p>\n<h3>Plugin Directory</h3>\n<p>The <a href=\"https://wordpress.org/plugins/\">Plugin Directory</a> has a brand new theme that mirrors the experience in your WordPress admin, with a more visual experience, and better search and statistics.</p>\n<p><img class=\"alignnone size-large wp-image-3594\" src=\"https://wordpress.org/news/files/2015/04/plugin-directory-1024x768.png\" alt=\"plugin-directory\" width=\"692\" height=\"519\" /></p>\n<p>As well as a facelift, there are some great new features for you to play around with:</p>\n<ul>\n<li>Favorites – when you’re logged in to you WordPress.org account, this page gives you direct access to the plugins that you have favorited.</li>\n<li>Beta Testing – try out plugins where developers are experimenting with new features for WordPress.</li>\n<li>Search by plugin author – you can search for a plugin author using their username.</li>\n<li>Better statistics – listings now display the number of active installs so you can see how many people are actually using a plugin.</li>\n</ul>\n<p>An <a href=\"https://make.wordpress.org/meta/2015/03/04/new-plugin-directory-theme/\">overview of the new theme</a> was posted by Scott Reilly.</p>\n<h2>Better Statistics</h2>\n<p>We’ve made huge improvements to <a href=\"https://wordpress.org/about/stats/\">our statistics</a>. This gives us more useful information about the WordPress versions people are using, their PHP version, and their MySQL version.</p>\n<p>Already these new statistics have provided us with useful insights into WordPress usage.</p>\n<ul>\n<li>More than 43% of all sites are running the latest version of WordPress. Previously, we thought only 10% of sites were up-to-date. By excluding sites that are no longer online we were able to improve these statistics.</li>\n<li>We were able to clear up the data around WordPress 3.0, bringing it more in line with expectations. This anomaly was a by-product of spammers.</li>\n<li>Only 15.9% of sites are using PHP 5.2, which is better than we thought.</li>\n</ul>\n<p>Over the coming months we’ll be able to use these statistics to bring you new tools and improvements, and to make more informed decisions across the board. Read <a href=\"https://make.wordpress.org/meta/2015/03/01/major-update-to-our-version-stats-for-php-mysql-and-wordpress/\">Andrew Nacin&#8217;s post about these changes</a> for more background.</p>\n<h2>Thanks!</h2>\n<p>Thanks to everyone who contributed to the theme directory redesign, the plugin directory refresh, and improved statistics: <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/mj12982\">Jan Cavan Boulas</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/BrashRebel\">Kyle Maurer</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/nataliemac\">Natalie MacLees</a>, <a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/Otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan McKeown</a>.</p>\n<p>If you want to help out or follow along with future WordPress.org projects, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/meta/\">meta development blog</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:70:\"https://wordpress.org/news/2015/04/improvements-to-wordpress-org/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:48:\"\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:20:\"WordPress 4.2 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/#comments\";s: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, 03 Apr 2015 13:05: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:3:\"4.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3566\";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:337:\"WordPress 4.2 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can [&#8230;]\";s: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:\"Drew Jaynes\";s: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:2694:\"<p>WordPress 4.2 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, check out the <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/\">Beta 3</a> blog posts. Some of the changes in Beta 4 include:</p>\n<ul>\n<li>Incrementally improved the experience when <strong>accessing the Customizer on mobile</strong>. Please test on your mobile devices and let us know if anything seems wonky.</li>\n<li>Added the ability to make <strong>admin notices dismissible</strong>. Plugin and theme authors: adding <code>.notice</code> and <code>.is-dismissible</code> as adjacent classes to your notice containers should automatically make them dismissible. Please test.</li>\n<li>Fixed some reported issues with <strong>backward-compatibility issues</strong> caused by the modularization of core JS files.</li>\n<li>Removed the <strong>ability to swipe the admin menu open and closed</strong> on touch devices due to reports of some issues with built-in history navigation on certain platforms.</li>\n<li>Improved <strong>accessibility of the WordPress admin</strong> by adding landmark roles. Screen reader users: please test in any core admin screens.</li>\n<li><strong>Various bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=31996&amp;stop_rev=31902&amp;limit=100\">more than 90 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.2\">everything we’ve fixed</a>.</p>\n<p><em>Dismiss notices</em><br />\n<em>Customizer on mobile</em><br />\n<em>RC nearly here</em></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:61:\"https://wordpress.org/news/2015/04/wordpress-4-2-beta-4/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:48:\"\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:20:\"WordPress 4.2 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/#comments\";s: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 Mar 2015 18:32: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:3:\"4.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3522\";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:337:\"WordPress 4.2 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can [&#8230;]\";s: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:\"Drew Jaynes\";s: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:2986:\"<p>WordPress 4.2 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, check out the <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/\">Beta 2</a> blog posts. Some of the changes in Beta 3 include:</p>\n<ul>\n<li>Removed <strong>Shiny Installs</strong> functionality due to concerns about the activation workflow. Please test the remaining &#8220;Shiny Updates&#8221; functionality from both the Plugins &gt; Add New and Plugins screens to ensure in-line updating still works as well as before.</li>\n<li>Fixed an issue with the <strong>Comments Quick Edit</strong> layout breaking on smaller screens. Please test on your mobile devices.</li>\n<li>Improved <strong>accessibility of login screen errors</strong>. Screen reader users: please let us know if you encounter any issues.</li>\n<li>Refined the <strong>emoji compatibility</strong> script to only load on the front- and back-end if the browser requires it. If you&#8217;re using a legacy web browser, please test.</li>\n<li>Fixed several issues in <strong>Press This</strong> with inserted images being improperly linked to locations other than the source site. Go ahead, &#8220;press&#8221; a site with images on the page and tell us if the image links aren&#8217;t working as you&#8217;d expect.</li>\n<li>Standardized the <strong>time display format</strong> in a variety of admin screens, switching to 24-hour notation where a.m. or p.m. are not specified. Please let us know if you notice you notice anything amiss!</li>\n<li><strong>Various other bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=31901&amp;stop_rev=31835&amp;limit=100\">more than 65 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.2\">everything we’ve fixed</a>.</p>\n<p><em>Emoji loader</em><br />\n<em>&#8220;Shiny Updates&#8221; still stand firm</em><br />\n<em>Beta 3, please test!</em></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:61:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/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:48:\"\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:20:\"WordPress 4.2 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/#comments\";s: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 Mar 2015 19: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:3:\"4.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3498\";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:337:\"WordPress 4.2 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can [&#8230;]\";s: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:\"Drew Jaynes\";s: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:2326:\"<p>WordPress 4.2 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, <a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Added support for entering FTP and SSH credentials when <strong>updating plugins in-place</strong>. FTP and SSH users, please test!</li>\n<li><strong>Improved cross-browser support for emoji</strong> throughout WordPress. If you&#8217;re using an older web browser, please tell us if you have problems using emoji.</li>\n<li>Further <strong>refined Press This authoring</strong> with auto-embedded media and better content scanning. We&#8217;d love to know how auto-embeds work for you.</li>\n<li>Added a constructor and improved method consistency in <code>WP_Comment_Query</code>. Developers: if you&#8217;re extending <code>WP_Comment_Query</code>, please let us know if you run into any issues.</li>\n<li><strong>Various bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=31834&amp;stop_rev=31763&amp;limit=100\">more than 70 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.2\">everything we’ve fixed</a>.</p>\n<p><em>Test some emoji</em><br />\n<em>FTP and SSH</em><br />\n<em>Let&#8217;s &#8220;Press&#8221; some embeds!</em></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:61:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/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:48:\"\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:20:\"WordPress 4.2 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/#comments\";s: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 Mar 2015 23:22: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:3:\"4.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3446\";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:329:\"WordPress 4.2 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:\"Drew Jaynes\";s: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:4275:\"<p>WordPress 4.2 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.2-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.2 is due out next month, but to get there, we need your help testing what we&#8217;ve been working on:</p>\n<ul>\n<li><strong>Press This</strong> has been completely revamped to make sharing content from around the web easier than ever. The new workflow is mobile friendly, and we&#8217;d love for you to try it out on all of your devices. Navigate to the Tools screen in your WordPress backend to get started (<a href=\"https://core.trac.wordpress.org/ticket/31373\">#31373</a>). </li>\n<li><strong>Browsing and switching installed themes</strong> has been added to the Customizer to make switching faster and more convenient. We&#8217;re especially interested to know if this helps streamline the process of setting up your site (<a href=\"https://core.trac.wordpress.org/ticket/31303\">#31303</a>).</li>\n<li>The workflow for <strong>updating and installing plugins</strong> just got more intuitive with the ability to install or update in-place from the Plugins screens. Try it out and let us know what you think! (<a href=\"https://core.trac.wordpress.org/ticket/29820\">#29820</a>)</li>\n<li>If you felt like <strong>emoji</strong> were starkly missing from your content toolbox, worry no more. We&#8217;ve added emoji support nearly everywhere, even post slugs <img src=\"https://s.w.org/images/core/emoji/72x72/1f44d.png\" alt=\"", "no");
INSERT INTO `k2zp_options` VALUES("422", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1428458395", "no");
INSERT INTO `k2zp_options` VALUES("423", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1428415195", "no");
INSERT INTO `k2zp_options` VALUES("424", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1428458397", "no");
INSERT INTO `k2zp_options` VALUES("425", "_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:29:\"Donncha: WP Super Cache 1.4.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:24:\"http://z9.io/?p=89499439\";s: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:\"http://z9.io/2015/04/07/wp-super-cache-1-4-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:2157:\"<p>WP Super Cache is a full page caching plugin for WordPress. It creates static pages that are served quickly by the web server.</p>\n<p><img src=\"http://i1.wp.com/z9.io/files/2015/04/2015-03-19-1012-m.jpg?resize=660%2C440\" alt=\"Light Trails in Blarney\" class=\"aligncenter size-full wp-image-89499442\" /></p>\n<p>Over the weekend there was a flurry of excitement as not one, but two releases of the plugin were made in quick succession. The second <a href=\"https://wordpress.org/support/topic/print_r-debug-messages-break-pages-with-query-args?replies=7\">to fix a bug introduced</a> in the first. I&#8217;m very sorry about that.</p>\n<p>WP Super Cache 1.4.3 fixed a security bug in the cache file listing section of the plugin settings page. A carefully crafted query by a third party would cause an XSS in the file listing. While serious, the owner of the blog cannot be tricked into loading the file listing page by way of an image or public link as a nonce is required to load it. The attacker would have to ask the blog owner to visit the cache listing page manually. Thanks to Marc Montpas from Sucuri for reporting that.</p>\n<p>WP Super Cache 1.4.4 fixed a bug introduced in the previous version where queries with GET parameters caused a fatal error. Thanks to webaware <a href=\"https://wordpress.org/support/topic/print_r-debug-messages-break-pages-with-query-args?replies=7\">on the WordPress.org forums</a> for reporting that and including a patch to fix it.</p>\n<p>If you&#8217;re using an older version of WP Super Cache you&#8217;re encourage to upgrade to 1.4.4 as soon as you can.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://z9.io/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=\"http://z9.io/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=\"http://z9.io/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>\";s: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, 07 Apr 2015 13:06:53 +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: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:25:\"Matt: Open Source Windows\";s: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:21:\"http://ma.tt/?p=44916\";s: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:\"http://ma.tt/2015/04/open-source-windows/\";s: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:\"<blockquote><p>But one day, the company could “open source” the code that underpins the OS—giving it away for free. So says Mark Russinovich, one of the company’s top engineers.</p>\n<p>“It’s definitely possible,” Russinovich says. “It’s a new Microsoft.”</p></blockquote>\n<p>From Wired&#8217;s <a href=\"http://www.wired.com/2015/04/microsoft-open-source-windows-definitely-possible/\">An Open Source Windows Is &#8216;Definitely Possible&#8217;</a>. In <a href=\"http://ma.tt/2007/10/microsoft-open-source/\">2007 I predicted Windows will be Open Source by 2017</a>, we&#8217;ll see if I end up being right on that one.</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, 07 Apr 2015 03:00: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: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:79:\"WPTavern: WordPress Core Team Announces Release Leads for WordPress 4.3 and 4.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:28:\"http://wptavern.com/?p=41592\";s: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:\"http://wptavern.com/wordpress-core-team-announces-release-leads-for-wordpress-4-3-and-4-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:3640:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/LeaderFeaturedImage.png\" rel=\"prettyphoto[41592]\"><img class=\"size-full wp-image-41596\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/LeaderFeaturedImage.png?resize=608%2C262\" alt=\"Leader Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/19517696@N00/77229745\">DSC01356</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Andrew Nacin <a title=\"https://make.wordpress.org/core/2015/04/01/release-leads-for-wordpress-4-3-and-4-4/ \" href=\"https://make.wordpress.org/core/2015/04/01/release-leads-for-wordpress-4-3-and-4-4/%20\">announced on the Make Core blog</a> that Konstantin Obenland will lead the release of WordPress 4.3, while Scott Taylor will lead 4.4. Obenland&#8217;s latest contribution to WordPress is the <a title=\"http://wptavern.com/wordpress-theme-directory-launches-new-design\" href=\"http://wptavern.com/wordpress-theme-directory-launches-new-design\">redesigned theme directory</a>. Taylor is largely responsible for the <a title=\"http://scotty-t.com/2014/04/16/wordpress-3-9-audiovideo/\" href=\"http://scotty-t.com/2014/04/16/wordpress-3-9-audiovideo/\">audio and video improvements</a> in WordPress 3.9.</p>\n<p>Nacin defines a WordPress release lead as someone who sets the parameters for a release like schedule, deadlines, and helps to decide which feature plugins are merged. They also direct discussions in core development chats, write announcement posts, and shepherds contributions.</p>\n<p>Usually, release leads are not chosen until the beginning of the next development cycle. However, so many people volunteered to lead WordPress 4.2, it gave the team an opportunity to choose them in advance.</p>\n<p>Obenland says it&#8217;s too early to determine what he will focus on for WordPress 4.3, but there may be some incremental flow and user experience improvements.</p>\n<blockquote><p>I’m still in the process of gathering information and getting a feel for what’s cooking and what could be ready for 4.3. As of right now (three days into the process) there is no clear headline feature emerging but it looks like there will be a number of nice incremental flow and user experience improvements.</p></blockquote>\n<p>I asked Obenland what it means to him and the WordPress project for release leads to be chosen this far in advance.</p>\n<blockquote><p>First of all it means I actually get to do the above, plan ahead of time. So far, Release Lead appointments happened somewhat last minute so there wasn’t a lot of time to prepare. I now have the luxury of being able to compose a list of proposed features ahead of the kick-off meeting, rather than having to come up with that list during the meeting, which will hopefully lead to a more efficient discussion and evaluation of those features.</p>\n<p>Scott is able to groom feature plugins to get them ready for 4.4, which has been the goal for Release Leads for a while. Going forward, we’ll be in a position where not only Release Leads, but the community, get a chance to plan ahead more than one release at a time. This should have a positive impact on the quality of feature plugins and make for less hurried merges.</p></blockquote>\n<p>Choosing release leads in advance removes friction and enables a smoother transition from one lead to another. It also gives the core team momentum to transfer from one development cycle to the next.</p>\n<p>It will be interesting to see how this impacts feature plugin development and whether or not the team will be able to maintain momentum into the WordPress 4.5 dev cycle.</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, 06 Apr 2015 21:58: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:13:\"Jeff Chandler\";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:86:\"WPTavern: WordPress 4.2 Will Natively Support Chinese, Korean, and Japanese Characters\";s: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:\"http://wptavern.com/?p=41600\";s: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:102:\"http://wptavern.com/emoji-enables-wordpress-to-natively-support-chinese-korean-and-japanese-characters\";s: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:2661:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/emoji.png\" rel=\"prettyphoto[41600]\"><img class=\"aligncenter size-full wp-image-33173\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/11/emoji.png?resize=620%2C420\" alt=\"emoji\" /></a>WordPress 4.2 will soon be released with <a title=\"http://wptavern.com/wordpress-4-2-on-track-to-expand-core-support-for-emoji\" href=\"http://wptavern.com/wordpress-4-2-on-track-to-expand-core-support-for-emoji\">expanded core support for emoji</a>, a new feature that users either love or love to hate. By making a key database change from utf8mb3 to utf8mb4 to add support for emoji, WordPress also receives the benefit of being able to natively handle Chinese, Japanese, and Korean characters.</p>\n<p>On the surface, adding emoji support to WordPress may seem like simply adding a ton of new emoticons. However, the technical aspects involved are complex. Brandon Kraft <a title=\"http://www.brandonkraft.com/b/2015/03/emoji-wordpress-and-you/\" href=\"http://www.brandonkraft.com/b/2015/03/emoji-wordpress-and-you/\">has a great article</a> that explains what emoji is, the database changes involved, and why you should care.</p>\n<p>During the <a title=\"http://wptavern.com/matt-mullenwegs-state-of-the-word-highlights-internationalization-mobile-and-new-tools-for-wordpress-contributors\" href=\"http://wptavern.com/matt-mullenwegs-state-of-the-word-highlights-internationalization-mobile-and-new-tools-for-wordpress-contributors\">State of The Word</a> at WordCamp San Francisco last year, Matt Mullenweg said, “If WordPress is going to be truly global, truly inclusive, it has to be fully available for other languages.&#8221; Kraft explains that WordPress 4.2 will be able to natively handle Chinese, Japanese, and Korean characters.</p>\n<blockquote><p>Han characters are four-byte characters. These characters, 道 and 草, for example, are Chinese, Japanese, and Korean characters that have been standardized into a single character map. By enabling utf8mb4, WordPress can now natively handle these characters.</p></blockquote>\n<p>Andrew Nacin <a title=\"https://twitter.com/nacin/status/584066636132519937\" href=\"https://twitter.com/nacin/status/584066636132519937\">emphasized on Twitter</a> that, supporting 4-byte unicode characters in WordPress is critical to making WordPress global.</p>\n<p>I won&#8217;t use emoji, but its impact on improving WordPress&#8217; internationalization efforts can&#8217;t be ignored. Gary Pendergast, who is largely responsible for adding the feature should be commended for his efforts. How do you feel about emoji support in WordPress and will you use it?</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, 06 Apr 2015 21:33: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:13:\"Jeff Chandler\";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:69:\"WPTavern: Gridsby: A Beautiful Free WordPress Theme for Photographers\";s: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:\"http://wptavern.com/?p=41558\";s: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:\"http://wptavern.com/gridsby-a-beautiful-free-wordpress-theme-for-photographers\";s: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:3982:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/modern-themes.jpg\" rel=\"prettyphoto[41558]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/modern-themes.jpg?resize=1025%2C509\" alt=\"modern-themes\" class=\"aligncenter size-full wp-image-34502\" /></a></p>\n<p>When <a href=\"http://wptavern.com/modernthemes-launches-site-dedicated-to-providing-free-wordpress-themes\" target=\"_blank\">ModernThemes launched its site</a> with a dozen free WordPress themes last year, founders <a href=\"https://twitter.com/_robbieobbie\" target=\"_blank\">Robbie Grabowski</a> and <a href=\"https://twitter.com/m2thedris\" target=\"_blank\">Mike Driscoll</a> committed to getting all of their themes listed on WordPress.org following positive feedback from the community. At that time many of their themes had issues that would preclude them from being hosted in the official directory.</p>\n<p>The team has been hard at work bringing their themes up to snuff and now have two that have passed the WordPress Theme Review Team&#8217;s guidelines. <a href=\"https://wordpress.org/themes/gridsby/\" target=\"_blank\">Gridsby</a>, a theme for photographers, is ModernTheme&#8217;s latest release.</p>\n<p>The theme takes your photographs and arranges them in a mobile-friendly Masonry.js-powered grid on the homepage, followed by optional widget areas and a blog section. Site navigation is hidden behind a slide-out panel.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/gridsby.png\" rel=\"prettyphoto[41558]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/gridsby.png?resize=880%2C660\" alt=\"gridsby\" class=\"aligncenter size-full wp-image-41560\" /></a></p>\n<p>Gridsby was created to be flexible and easy for users to personalize. The theme includes a impressive array of customization options available in the native customizer, including:</p>\n<ul>\n<li>Upload a logo to replace the default site name and description in the header</li>\n<li>Upload your site favicon and Apple Icons</li>\n<li>Add social media links and customize icon color and hover color</li>\n<li>Hide gallery and/or blog section on the homepage</li>\n<li>Display your posts in ascending or descending order</li>\n<li>Customize View More button text and gallery button URL</li>\n<li>Show/hide homepage widgets, set number of columns and customize widgets background and button text</li>\n<li>Add footer contact info</li>\n<li>Customize typography with a selection of Google fonts</li>\n<li>Customize colors for text, links, blockquotes, accents, navigation, etc.</li>\n<li>Set blog excerpt length and Read More text</li>\n<li>Add a background image</li>\n</ul>\n<p>Due to its unusually long list of customization options, Gridsby authors created documentation, including tutorial videos for setting up its various features. The documentation is easily accessible from the WordPress admin under the Appearance menu:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/gridsby-documentation.jpg\" rel=\"prettyphoto[41558]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/gridsby-documentation.jpg?resize=907%2C418\" alt=\"gridsby-documentation\" class=\"aligncenter size-full wp-image-41608\" /></a></p>\n<p>Gridsby works nicely as a theme for displaying photographs but could easily be tailored to work as a portfolio or similar visual showcase. I would not advise using this theme unless you are  committed to procuring large images for the galleries and blog post featured images. Check out a <a href=\"http://modernthemes.net/demo/gridsbywp/\" target=\"_blank\">live demo</a> to see the theme in action, and you&#8217;ll get an idea of how reliant it is on large images in posts.</p>\n<p>If you&#8217;re looking for a new way to showcase your work, Gridsby is an excellent option that also allows you to maintain a blog alongside your images. <a href=\"https://wordpress.org/themes/gridsby/\" target=\"_blank\">Download</a> it for free from 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:\"Mon, 06 Apr 2015 21:19: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:13:\"Sarah Gooding\";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:67:\"WPTavern: ThemeReview.co Expands Services to Include Plugin Reviews\";s: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:\"http://wptavern.com/?p=41555\";s: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:\"http://wptavern.com/themereview-co-expands-services-to-include-plugin-reviews\";s: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:4212:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/red-pen.jpg\" rel=\"prettyphoto[41555]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/red-pen.jpg?resize=1024%2C500\" alt=\"photo credit: pollas - cc\" class=\"size-full wp-image-37241\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/pollas/526544001/\">pollas</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p><a href=\"http://themereview.co/\" target=\"_blank\">ThemeReview.co</a> partners Emil Uzelac and Justin Tadlock <a href=\"http://themereview.co/were-now-accepting-plugins/\" target=\"_blank\">announced</a> over the weekend that the service is expanding to include plugin reviews. The professional theme review service launched at the beginning of January and has been growing steadily, thanks in part to <a href=\"http://wptavern.com/themereview-co-inks-strategic-deal-with-studiopress-and-envato\" target=\"_blank\">strategic recommendations from Envato and StudioPress</a>.</p>\n<p>Uzelac and Tadlock are both senior reviewers at WordPress.org, and Tadlock is also a prolific plugin developer and co-author of <a href=\"http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222\" target=\"_blank\">Professional WordPress Plugin Development</a>. The two are currently testing the waters in branching out into plugin reviews and will only be accepting a limited number of customers until they&#8217;ve nailed down a definitive pricing structure.</p>\n<p>&#8220;People have been asking about plugin reviews since day 1,&#8221; Tadlock told the Tavern. &#8220;It&#8217;s something we&#8217;ve both been thinking about. Therefore, we decided to do a soft launch of the service.  We need to get a few reviews under our belt to <em>standardize</em> our service, so to speak.&#8221;</p>\n<p>ThemeReview.co will be using <a href=\"https://codex.wordpress.org/WordPress_Coding_Standards\" target=\"_blank\">WordPress Coding Standards</a> as the basic criteria for plugin reviews. However, plugin architecture is less rigorously regulated than theme code.</p>\n<p>&#8220;Obviously, there&#8217;s no standard set of guidelines like we have with themes,&#8221; Tadlock said.</p>\n<p>&#8220;I don&#8217;t think you could create those guidelines. Plugins are so vastly different that there&#8217;s no way to know what we&#8217;ll be reviewing from one plugin to the next.  However, some things we&#8217;ve done with theme reviews will carry over into plugins such as using standard WordPress APIs, validating/sanitizing data, and licensing.&#8221;</p>\n<p>If you&#8217;re in the WordPress code quality review business, then plugin developers are a vast market you would be remiss to leave untapped. If you take WordPress.org as an example, themes make up roughly 10% of listings (~3,000) as compared to plugins (~37,000). Outside of WordPress.org&#8217;s small selection of extensions, there are thousands more products, both commercial and free.</p>\n<p>So far, the theme review aspect of the business has been moderately successful. &#8220;We&#8217;ve made more than Theme Hybrid, my first foray into a professional WordPress service, did in it&#8217;s first few months,&#8221; Tadlock said. &#8220;However, we&#8217;re not quite at that point of where Emil and I could do this full time yet.&#8221;</p>\n<p>As plugins are the very close cousin of themes, their addition is a natural pivot for the theme review duo. Plugin products have also increasingly become a larger portion of the profits for theme development shops, such as WooThemes and iThemes.</p>\n<p>&#8220;I&#8217;m actually more excited about plugin reviews because it&#8217;s a bit like venturing out into the Wild West,&#8221; Tadlock said.</p>\n<p>While respected plugin developers such as Pippin Williamson have offered contract assistance in helping plugin authors review and improve their work, no business has tackled plugin code reviews as one of its primary services. <a href=\"http://themereview.co/\" target=\"_blank\">ThemeReview.co</a> will be the first to attempt to standardize this process. For the time being, the company will provide custom quotes for reviews, based on the amount and complexity of the 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, 06 Apr 2015 17:04:53 +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:\"Sarah Gooding\";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:16:\"Matt: Meat Drunk\";s: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:21:\"http://ma.tt/?p=44905\";s: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:32:\"http://ma.tt/2015/04/meat-drunk/\";s: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:131:\"<p>Have you heard <em><a href=\"http://modernfarmer.com/2014/09/meat-drunk-bbq-expert-much-good-thing/\">of being meat drunk</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, 05 Apr 2015 21:26: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: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:27:\"Matt: Alcohol or Marijuana?\";s: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:21:\"http://ma.tt/?p=44908\";s: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:\"http://ma.tt/2015/04/alcohol-or-marijuana/\";s: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:380:\"<blockquote><p>It would be nice to imagine your children won’t abuse any substances, but also unrealistic. The question is what to warn them against most strongly.</p></blockquote>\n<p>Aaron Carroll asks <a href=\"http://www.nytimes.com/2015/03/17/upshot/alcohol-or-marijuana-a-pediatrician-faces-the-question.html\">Alcohol or Marijuana? A Pediatrician Faces the Question</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, 04 Apr 2015 21:34: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: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:40:\"Matt: 9 Truths Computer Programmers know\";s: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:21:\"http://ma.tt/?p=44894\";s: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:56:\"http://ma.tt/2015/04/9-truths-computer-programmers-know/\";s: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:183:\"<p><a href=\"http://macleodsawyer.com/2015/03/06/nine-truths-computer-programmers-know-that-most-people-dont/\">9 truths that computer programmers know that most people don’t</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, 03 Apr 2015 21:23: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: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:76:\"WPTavern: PressThis Revamped with a New User Interface and Minimalist Design\";s: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:\"http://wptavern.com/?p=41517\";s: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:\"http://wptavern.com/pressthis-revamped-with-a-new-user-interface-and-minimalist-design\";s: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:4579:\"<p><a title=\"https://codex.wordpress.org/Press_This\" href=\"https://codex.wordpress.org/Press_This\">PressThis</a> is a bookmarklet that allows you to quickly publish drafts or posts without having to navigate the backend of WordPress. It was added to WordPress in version 2.6 and can be found in the Tools menu.</p>\n<p>One of the major features coming in WordPress 4.2 is a completely revamped PressThis bookmarklet. Michael Arestad <a title=\"https://make.wordpress.org/core/2015/02/18/press-this-revamp-merge-proposal/\" href=\"https://make.wordpress.org/core/2015/02/18/press-this-revamp-merge-proposal/\">proposed the revamp</a> back in February and more than 15 contributors have helped out with the project.</p>\n\n<a href=\"http://wptavern.com/pressthis-revamped-with-a-new-user-interface-and-minimalist-design/oldpressthis\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/OldPressThis.png?fit=500%2C500\" class=\"attachment-large\" alt=\"Old PressThis\" /></a>\n<a href=\"http://wptavern.com/pressthis-revamped-with-a-new-user-interface-and-minimalist-design/newpressthis\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/NewPressThis.png?fit=500%2C500\" class=\"attachment-large\" alt=\"New PressThis\" /></a>\n\n<p>As you can see from the screenshots above (old PressThis on the left and new PressThis on the right), PressThis has a new user interface and minimalist design. Post meta boxes are replaced with menus that slide from left to right when clicked. The post editor has the bare essential formatting buttons and the add media button is in the bottom left corner.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/NewPressThisWithContent.png\" rel=\"prettyphoto[41517]\"><img class=\"size-full wp-image-41529\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/NewPressThisWithContent.png?resize=1025%2C857\" alt=\"New PressThis With Content\" /></a>New PressThis With Content\n<p>When you select PressThis on a post or page, the title, source, and highlighted content will automatically be inserted into the editor. If the article uses images, you&#8217;ll see a list of ones to choose from below the post title.</p>\n<p>Although images are initially inserted using a URL, they&#8217;re automatically uploaded to the local WordPress media library once a post is published or saved as a draft. Not only is this a convenient feature, but it also prevents <a title=\"http://simple.wikipedia.org/wiki/Hotlinking\" href=\"http://simple.wikipedia.org/wiki/Hotlinking\">hot linking</a>.</p>\n<p>While testing PressThis, I found it to be fast and a pleasure to use. If you plan on using it as your primary post editor, keep in mind that it doesn&#8217;t have a way to add featured images. It&#8217;s possible this will be added in a future version.</p>\n<h2>PressThis is More Than Just a Bookmarklet</h2>\n<p>While using PressThis, I discovered that it&#8217;s more than just a bookmarklet; it&#8217;s also an experimental post editor. It gives the core team a chance to experiment with different content authoring approaches without interrupting the core experience.</p>\n<p>George Stephanis, who is one of the project&#8217;s contributors, says PressThis could potentially turn into a multi-blog browser extension.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"https://twitter.com/jeffr0\">@jeffr0</a> As it\'s primarily an api consumer, it can also be turned into a multi blog browser extension.</p>\n<p>&mdash; George Stephanis (@daljo628) <a href=\"https://twitter.com/daljo628/status/584086709597405184\">April 3, 2015</a></p></blockquote>\n<p></p>\n<p>One of the biggest drawbacks to PressThis is that you can&#8217;t use it to publish to multiple sites. Arestad says the ability to switch sites is on the roadmap. With the ability to switch sites, PressThis could turn into a closely tied third-party blogging application tailored exclusively for WordPress.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"https://twitter.com/daljo628\">@daljo628</a> <a href=\"https://twitter.com/jeffr0\">@jeffr0</a> <a href=\"https://twitter.com/stephdau\">@stephdau</a> Allowing site switching is an eventual goal. :)</p>\n<p>&mdash; Michael Arestad (@michaelarestad) <a href=\"https://twitter.com/michaelarestad/status/584088583666995201\">April 3, 2015</a></p></blockquote>\n<p></p>\n<p>I&#8217;m excited about what the future holds for PressThis. It&#8217;s been neglected for years, but it could turn into one of the most useful parts of WordPress. I encourage you to try it when WordPress 4.2 is released later this month.</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, 03 Apr 2015 21:04: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:70:\"WPTavern: New Plugin Forces BuddyPress Users to Upload a Profile Photo\";s: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:\"http://wptavern.com/?p=41463\";s: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:\"http://wptavern.com/new-plugin-forces-buddypress-users-to-upload-a-profile-photo\";s: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:2352:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/photo.jpg\" rel=\"prettyphoto[41463]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/photo.jpg?resize=960%2C468\" alt=\"photo\" class=\"aligncenter size-full wp-image-41543\" /></a></p>\n<p>When a social network is filled with mystery man avatars, it can give the impression that the site is a ghost town, overrun with spam users. Sometimes members are too lazy to upload a profile photo, no matter how many friendly prompts you try to offer.</p>\n<p>Missing profile images makes for ugly directory pages and less colorful BuddyPress widgets. It makes it seem like users aren&#8217;t invested enough in your site to bother with having an avatar. A widespread lack of avatars has a subtle damaging effect on both members and non-members&#8217; perceptions of your community.</p>\n<p>That&#8217;s why Brajesh Singh, owner of <a href=\"http://buddydev.com/\" target=\"_blank\">BuddyDev</a>, created the <a href=\"http://buddydev.com/plugins/bp-force-profile-photo/\" target=\"_blank\">BuddyPress Force Profile Photo</a> plugin. It requires logged-in users to upload a profile image as the bare minimum requirement to visit any page on your site.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/buddypress-force-profile-photo.png\" rel=\"prettyphoto[41463]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/buddypress-force-profile-photo.png?resize=569%2C337\" alt=\"buddypress-force-profile-photo\" class=\"aligncenter size-full wp-image-41535\" /></a></p>\n<p>If a user hasn&#8217;t uploaded a profile photo, he will be redirected to the upload screen upon logging in. Trying to visit any other page will result in being redirected back to the profile photo upload page at:</p>\n<p><code>/members/[username]/profile/change-avatar/</code></p>\n<p>If the user then deletes his profile photo and doesn&#8217;t add a new one, the plugin will detect that there is no photo and will restrict access to the site again.</p>\n<p>Forcing users to add a profile photo is a drastic measure, but for some communities it might be the only thing that works. Install the free <a href=\"http://buddydev.com/plugins/bp-force-profile-photo/\" target=\"_blank\">BuddyPress Force Profile Photo</a> and you&#8217;ll never have to see mystery man avatars on your site again.</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, 03 Apr 2015 20:51: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:\"Sarah Gooding\";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:72:\"WPTavern: Donnacha MacGloinn Predicts the End of the Webhosting Industry\";s: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:\"http://wptavern.com/?p=41480\";s: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:\"http://wptavern.com/donnacha-macgloinn-predicts-the-end-of-the-webhosting-industry\";s: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:2896:\"<p>Donnacha MacGloinn published an excellent post on WPMayor.com predicting the <a title=\"http://www.wpmayor.com/the-end-of-the-web-hosting-industry/\" href=\"http://www.wpmayor.com/the-end-of-the-web-hosting-industry/\">end of the webhosting industry</a>. Although he talks about the industry as a whole, MacGloinn says the need for specialized WordPress hosting is quickly disappearing.</p>\n<blockquote><p><span class=\"s1\">With the lingering perception that this stuff must be difficult, and the customer’s delight with all that WordPress can do these days, the specialist WordPress hosts get a lot more credit than they deserve.</span></p>\n<p><span class=\"s1\">The problem is that modern technologies are rapidly rendering their role unnecessary. Anyone can now go to Linode or Digital Ocean and fire up their own VPS (Virtual Private Server) within half a minute, for a fraction of the approximately $30 cost of the most basic, one-WordPress-installation package from a specialist WordPress host. </span></p>\n<p><span class=\"s1\">The VPS user can then use Docker or a similar technology to instantly install all they need for any number of secure, optimized installations of WordPress, all running with more memory, storage and bandwidth. The dirty secret of the specialist WordPress hosting industry: this is exactly what most of them are doing themselves.</span></p></blockquote>\n<p>If specialized WordPress hosts rely on cloud infrastructure services like Amazon Web Services and charge a premium to customers, what stops Amazon from providing a great managed WordPress hosting experience, thereby eliminating the middleman? As MacGloinn points out, Amazon, Google, and Microsoft have already made moves to provide the best out-of-the box experience.</p>\n<blockquote><p><span class=\"s1\">Just last Friday, Google announced Google Cloud Launcher, enabling push-button deployment of over 120 top Open Source applications, including WordPress, to the Google Cloud Platform. Just two days before that, Microsoft launched the Azure App Service, which does essentially the same thing from a slightly different angle.</span></p></blockquote>\n<p>VPS (Virtual Private Servers) and other technical jargon is scary to a lot of people, but if companies like Amazon, Google, and Microsoft can provide a great out-of-the box experience and charge a significantly lower price compared to specialized hosts, it&#8217;s possible the managed WordPress hosting space could disappear.</p>\n<p>The article has a <a title=\"http://www.wpmayor.com/the-end-of-the-web-hosting-industry/#comments\" href=\"http://www.wpmayor.com/the-end-of-the-web-hosting-industry/#comments\">few comments</a> from readers and offers a lot of food for thought, but I really want to hear from those who own and operate specialized WordPress hosting companies. Do you think MacGloinn is on to something, or is his prediction way off base?</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, 03 Apr 2015 18:19:44 +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:\"Jeff Chandler\";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:\"Post Status: The Excerpt Episode 3 — WordPress news with Beka Rice\";s: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=12208\";s: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://poststatus.com/the-excerpt-episode-3-wordpress-news-with-beka-rice/\";s: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:2238:\"<p>Welcome to <a href=\"https://poststatus.com/category/draft/the-excerpt/\">The Excerpt</a> Episode 3, part of the <a href=\"https://poststatus.com/category/draft/\">Post Status Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>. Draft consists of two formats: long form interviews like I’ve done for a long time, and The Excerpt for a summary of news around the WordPress ecosystem.</p>\n<p>With The Excerpt, we cover a few of our favorite stories from the <a title=\"Post Status Membership Club\" href=\"https://poststatus.com/club/\">Post Status Club</a> over the last week or two. The primary goal is to keep it short and informational: we keep the podcast to around 15 minutes.</p>\n<p>In Episode 3, I&#8217;m joined by <a title=\"Beka Rice\" href=\"https://poststatus.com/profiles/beka-rice/\">Beka Rice</a>, who writes the excellent eCommerce blog <a href=\"http://sellwithwp.com\">SellWithWP</a> and is a partner at eCommerce company <a href=\"https://www.skyverge.com/\">SkyVerge</a>.</p>\n<p>Listen now:</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"http://audio.simplecast.fm/9886.mp3\">http://audio.simplecast.fm/9886.mp3</a>\n<p><a href=\"http://audio.simplecast.fm/9886.mp3\">Direct Download</a></p>\n<p>Stories discussed:</p>\n<ul>\n<li><a href=\"https://me.sh\">Mesh</a> by Automattic, an in-progress app I discovered by accident.</li>\n<li>Release <a href=\"https://make.wordpress.org/core/2015/04/01/release-leads-for-wordpress-4-3-and-4-4/\">leads for WordPress 4.3, and 4.4 were announced</a>.</li>\n<li>April Fools&#8217; <a href=\"https://poststatus.com/notes/april-fools-roundup/\">roundup</a> (Club only, but we talk about them individually), including my own about <a title=\"WordPress to be bundled in Jetpack with mission to power 50% of the web\" href=\"https://poststatus.com/wordpress-jetpack-bundle/\">Jetpack bundling WordPress</a>.</li>\n<li>A <a href=\"https://poststatus.com/notes/a-theme-shop-year-in-review/\">theme shop&#8217;s year in review</a>. I also covered this <a title=\"A theme shop year in review\" href=\"https://poststatus.com/notes/a-theme-shop-year-in-review/\">in the Club</a>.</li>\n</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:\"Fri, 03 Apr 2015 18:06:44 +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:\"Brian Krogsgard\";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:58:\"WPTavern: Add a Favorite Button to Any WordPress Post Type\";s: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:\"http://wptavern.com/?p=40043\";s: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:\"http://wptavern.com/add-favorite-buttons-to-any-wordpress-post-type\";s: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:5781:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/favorite.jpg\" rel=\"prettyphoto[40043]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/favorite.jpg?resize=958%2C478\" alt=\"favorite\" class=\"aligncenter size-full wp-image-41482\" /></a></p>\n<p>Twitter users have often asked the question: <em>&#8220;What does it mean to favorite a tweet?&#8221;</em> The act of favoriting can communicate any number of things depending on the context, such as bookmarking, agreeing, showing support, or responding to a mention.</p>\n<p>UK researchers studying the favoriting feature on Twitter discovered that users could identify more than 25 distinct motivations for favoriting  a tweet. Their qualitative analysis, titled <a href=\"http://www.cs.nott.ac.uk/~mlw/pubs/icwsm2014-favouriting.pdf\" target=\"_blank\">More than Liking and Bookmarking? Towards Understanding Twitter Favouriting Behaviour</a>, dissects the various motivations for using the feature:</p>\n<blockquote><p>The survey responses from these users demonstrate that motives for favouriting tweets are extremely heterogeneous and not always consistent within and between users.</p></blockquote>\n<p>Although many other apps and websites have offered favoriting for years, this study on Twitter favoriting was one of the first to reveal just how complex and nuanced the feature can become in the hands of users.</p>\n<h3>Add Favorites to WordPress Posts</h3>\n<p>Favoriting is a subjective activity that is interpreted purely by individual motivation. The simple act of pushing a button results in a myriad of functional and communicative uses, making it one of the more interesting interactive features that you can add to your WordPress site.</p>\n<p>Favoriting capabilities are especially important when it comes to custom post types. Not every site needs this feature, but it is particularly helpful for those with large amounts of content stored in custom post types, such as books, recipes, movies, jobs, or real estate listings.</p>\n<p><a href=\"https://wordpress.org/plugins/favorites/\" target=\"_blank\">Favorites</a> is a new plugin that was released last month on WordPress.org. It is easy for end users to set up but was also created with developers in mind. The plugin provides an API for adding a favorite button to any post type.</p>\n<p>The Favorites settings panel allows you to select the post types where you want favoriting functionality to apply. You can also customize the button text in order to make it suitable for bookmarking, liking, favoriting, or any other similar use.</p>\n<p>Favorites will automatically add a favorite button at the top or bottom of your posts. The button intuitively takes on the styles of your active theme, as you can see in this example with the <a href=\"http://wptavern.com/hew-a-free-wordpress-blogging-theme-inspired-by-ryu\">Hew</a> theme:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/favorite-button-on-post.jpg\" rel=\"prettyphoto[40043]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/favorite-button-on-post.jpg?resize=837%2C504\" alt=\"favorite-button-on-post\" class=\"aligncenter size-full wp-image-41485\" /></a></p>\n<p>Use of the plugin requires WordPress version 3.8+ and PHP version 5.3.2+. <a href=\"https://profiles.wordpress.org/kylephillips\" target=\"_blank\">Kyle Phillips</a>, author of Favorites, summarized the features to include the following:</p>\n<ul>\n<li><strong>Use with Any Post Type</strong> &#8211; Enable or disable favorite functionality per post type while automatically adding a favorite button before and/or after the content. Alternatively, you can use the included functions to display the button anywhere in your template.</li>\n<li><strong>Available for All Users</strong> – Don&#8217;t want to hide functionality behind a login? Favorites includes an option to save anonymous users&#8217; favorites by either Session or Cookie. Logged-In users&#8217; favorites are also saved as user meta.</li>\n<li><strong>Designed for Developers</strong> &#8211; Favorites works great out of the box for beginners, but a full set of template functions unlocks just about any sort of custom functionality developers may need. Favorites outputs the minimum amount of markup needed, putting the style and control in your hands.</li>\n</ul>\n<p>Phillip set up the <a href=\"https://favoriteposts.com/\" target=\"_blank\">favoriteposts.com</a> site to house documentation for the plugin, including options, settings, available shortcodes, and a function reference for outputting the button, favorite counts, and a list of user favorites.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/screenshot-3.png\" rel=\"prettyphoto[40043]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/screenshot-3.png?resize=900%2C726\" alt=\"screenshot-3\" class=\"aligncenter size-full wp-image-41495\" /></a></p>\n<p>If you&#8217;re wondering if Favorites is compatible with your caching solution, the short answer is &#8216;yes,&#8217; according to the plugin&#8217;s FAQ page:</p>\n<blockquote><p>Yes, although the buttons may display the incorrect state momentarily. Button states are updated via an AJAX call after page load in order to accommodate cached pages. This may be noticeable on slower servers.</p></blockquote>\n<p>After having tried many different post bookmarking plugins for WordPress, I found Favorites to be the easiest one to use with the most intuitive button display. If you want to test the plugin without installing it, try out a live demo on <a href=\"https://favoriteposts.com/\" target=\"_blank\">favoriteposts.com</a>. Favorites is GPL-licensed and available for free on <a href=\"https://wordpress.org/plugins/favorites/\" target=\"_blank\">WordPress.org</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, 03 Apr 2015 18:03:53 +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:\"Sarah Gooding\";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:97:\"WPTavern: Venturing Outside the Bubble: WordPress Community Members Attend PHP UK 2015 Conference\";s: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:\"http://wptavern.com/?p=41406\";s: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:106:\"http://wptavern.com/venturing-outside-the-bubble-wordpress-community-members-attend-php-uk-2015-conference\";s: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:6594:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/php-uk.jpg\" rel=\"prettyphoto[41406]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/php-uk.jpg?resize=1025%2C499\" alt=\"php-uk\" class=\"aligncenter size-full wp-image-41447\" /></a></p>\n<p>The <a href=\"http://phpconference.co.uk/\" target=\"_blank\">PHP UK Conference</a> celebrated its 10th annual event this year at the end of February. More than 700 participants gathered in London to share knowledge and experiences surrounding PHP and related web technologies.</p>\n<p>WordPress community members <a href=\"https://twitter.com/miss_jwo\" target=\"_blank\">Jenny Wong</a> and <a href=\"http://aaron.jorb.in/\" target=\"_blank\">Aaron Jorbin</a> both spoke at the conference and the videos have just been released today. During Wong&#8217;s keynote presentation, titled &#8220;Integrating Communities,&#8221; she told the story of how she learned PHP by attending local user groups, asking questions, and embracing the community. Her session encouraged those in attendance to build bridges between technology communities.</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>Wong came to WordPress from the PHP community and her presentation addressed the friction that is often present between the two. I spoke with her about the inspiration behind her topic and the deeper issues underlying the general lack of understanding between the two communities.</p>\n<p>&#8220;Lots of people have used WordPress when it was young &#8211; maybe before all the beautiful UI came in,&#8221; she said. &#8220;I am not one of those people, but I&#8217;ve heard the stories of how bad the UX was.</p>\n<p>&#8220;Some people learned to live with it and became part of the WP community; some people hated it and left. The people who left have a particular ideal of WordPress from their very old experience and unless we as a community reach out to them, their perceptions will not change.&#8221;</p>\n<p>She believes that WordPress contributors should strive to attend and speak at non-WordCamp conferences to learn from and experience other communities.</p>\n<p>&#8220;Inside the WP community I often hear, &#8216;How do you become better at PHP?&#8217; <span class=\"pullquote alignleft\">We need to show them that the WP community is welcomed by the PHP community and that it is not a scary place</span>,&#8221; she said.</p>\n<p>The situation is gradually improving across many events, as ZendCon <a href=\"https://twitter.com/zendcon/status/583638815237087232\" target=\"_blank\">announced</a> today that it will be including a WordPress track. WordPress community members made an effort to attend <a href=\"http://world.phparch.com/\" target=\"_blank\">PHP World 2014</a>, PHP developer <a href=\"http://www.lornajane.net/\" target=\"_blank\">Lorna Jane Mitchell</a> spoke at WordCamp London, and PHP South West (a user group in the UK) recently had a joint night with the <a href=\"http://www.meetup.com/Bristol-WordPress-People/\" target=\"_blank\">Bristol WordPress People</a> user group.</p>\n<p>&#8220;We&#8217;re seeing more and more of this cross pollination, at least between the WP and PHP community, slowly,&#8221; Wong said.</p>\n<h3>Venturing Outside the WordPress Community</h3>\n<p>Speaking at WordCamps is an excellent way to give back and connect with others in the community, but the value of venturing outside of the WordPress bubble is often overlooked. Aaron Jorbin attended the PHP UK conference knowing only one person.</p>\n<p>&#8220;I think there is a personal benefit in putting ourselves in situations we aren&#8217;t automatically comfortable,&#8221; he said. &#8220;I&#8217;m used to knowing a lot of people at events. Knowing only one person before hand helps me do a better job of empathizing with people that feel like outsiders at WordPress events. <span class=\"pullquote alignleft\">If we want to do a better job of creating diversity, it&#8217;s good to feel the problems people feel when they don&#8217;t feel like they belong.</span>&#8221;</p>\n<p>Jorbin spoke on Modernizing the WordPress Toolbox. His presentation goes far beyond the topic of modernizing WordPress&#8217; build tools to include his passion for removing barriers to contributing to the project. Jorbin also delved deeper into the reasons behind the project&#8217;s selection of certain tools.</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>&#8220;We as a community need to do a better job of both getting out there and bringing people in,&#8221; Jorbin said.  &#8220;This is something that we have improved over the last few years (Nacin keynoting PHP Tech, Joe Dolson and Joseph O&#8217;Connor at CSUN, Mel Choyce, Nacin and myself at OS Bridge, etc.), but we have a long way to go.&#8221;</p>\n<p>Currently, going outside of the WordPress space usually means that you will encounter some negative opinions about WordPress. Jorbin said that these are largely born out of a lack of knowledge of WordPress and why contributors make the decisions that they make.</p>\n<p>&#8220;PHP developers hear things like PHP 5.2 as a minimum and write us off,&#8221; he said. &#8220;When they hear that 1) We run just fine on PHP 5.6, and 2) are already running our automated tests on php7, and 3) that we do it based on our user focused philosophies, they understand it and actually gain a lot of respect for us.&#8221;</p>\n<p>Beyond combating negative opinions of the software, Jorbin believes that the WordPress community can find a wealth of knowledge outside of WordCamps.</p>\n<p>&#8220;Another benefit is hearing how other projects are solving problems helps WordPress solve problems,&#8221; he said. &#8220;Hearing about <a href=\"http://drupalladder.org/\" target=\"_blank\">The Drupal Ladder</a> influences how I think about on-boarding new contributors. Hearing about how Etsy started using HHVM helps me get ideas for rolling out HHVM on WordPress sites.&#8221;</p>\n<p>If you make the effort to venture outside of your usual networks, you will undoubtedly encounter situations wherein your skills of diplomacy and bridge-building will be sharpened, as both Wong and Jorbin found at the PHP UK conference. However, the value gained in connecting with other communities far outweighs the challenges. The WordPress community has a great deal to share with the world, but it is also enriched by other technologies.</p>\n<p>If you already speak at multiple WordCamps per year, here&#8217;s a new challenge for 2015: Speak at a conference outside the WordPress bubble where you may not know many people. Who knows who you&#8217;ll meet or what you might learn?</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, 02 Apr 2015 23:37: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:13:\"Sarah Gooding\";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:27:\"Matt: Warped Silicon Valley\";s: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:21:\"http://ma.tt/?p=44898\";s: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:43:\"http://ma.tt/2015/04/warped-silicon-valley/\";s: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:441:\"<p>As a counterpoint to yesterday&#8217;s link to the Declaration of the Independence of Cyberspace, here&#8217;s a Washington Post story, <a href=\"http://www.washingtonpost.com/opinions/how-one-mans-utopian-vision-for-the-internet-conquered-and-then-badly-warped-silicon-valley/2015/03/20/7dbe39f8-cdab-11e4-a2a7-9517a3a70506_story.html\">Meet the man whose utopian vision for the Internet conquered, and then warped, Silicon Valley</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, 02 Apr 2015 20: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: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: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:71:\"WPTavern: Display Sheet Music in WordPress With the ABC Notation 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:28:\"http://wptavern.com/?p=41412\";s: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:\"http://wptavern.com/display-sheet-music-in-wordpress-with-the-abc-notation-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:1777:\"<p>If you&#8217;re a musician or a music teacher and want to show sheet music in WordPress, you might be interested in a new plugin <a title=\"http://wordpress.paulrosen.net/plugins/abc-notation/\" href=\"http://wordpress.paulrosen.net/plugins/abc-notation/\">developed by Paul Rosen</a> called <a title=\"https://wordpress.org/plugins/abc-notation/\" href=\"https://wordpress.org/plugins/abc-notation/\">ABC Notation</a>. ABC Notation uses <a title=\"http://abcjs.net/\" href=\"http://abcjs.net/\">ABCjs,</a> an open source ABC music notation JavaScript library that renders sheet music.</p>\n<p>To render sheet music, simply add the string you&#8217;d like to render between the [abcjs] shortcode. If you&#8217;re not familiar with the proper syntax to use, <a title=\"http://abcnotation.com/blog/2010/01/31/how-to-understand-abc-the-basics/\" href=\"http://abcnotation.com/blog/2010/01/31/how-to-understand-abc-the-basics/\">ABCNotation.com has a good article</a> that explains the basics. The string that is used in the shortcode is passed to the ABCjs library, which translates and renders it into an SVG element.</p>\n<p>Here&#8217;s an example of ABC Notation in action. The first image shows the string while the second shows the rendered output.</p>\n<a href=\"http://wptavern.com/display-sheet-music-in-wordpress-with-the-abc-notation-plugin#gallery-41412-1-slideshow\">Click to view slideshow.</a>\n<p>ABC Notation is an excellent example of a plugin that might not have a large audience, but will come in handy to those who need it. I tested it on WordPress 4.2 beta 3 and didn&#8217;t encounter any issues. You can <a title=\"https://wordpress.org/plugins/abc-notation/\" href=\"https://wordpress.org/plugins/abc-notation/\">download it for free</a> from the WordPress plugin directory.</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, 02 Apr 2015 20:06: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:13:\"Jeff Chandler\";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:78:\"WPTavern: WPWeekly Episode 186 – Inspirational Conversation With Lewis Howes\";s: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:44:\"http://wptavern.com?p=41403&preview_id=41403\";s: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:\"http://wptavern.com/wpweekly-episode-186-inspirational-conversation-with-lewis-howes\";s: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:3012:\"<p>In this episode of WordPress Weekly, <a title=\"http://marcuscouch.com/\" href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a title=\"http://lewishowes.com/\" href=\"http://lewishowes.com/\">Lewis Howes</a>, host of the <a title=\"https://itunes.apple.com/us/podcast/the-school-of-greatness/id596047499\" href=\"https://itunes.apple.com/us/podcast/the-school-of-greatness/id596047499\">School of Greatness</a> podcast. Lewis shares his story of achieving his lifelong dream of becoming a professional football player, only to have it crushed by an injury. Without a backup plan in place and limited skills, Lewis became depressed and suffered some financial hardships.</p>\n<p>Thanks to WordPress and influential people like Syed Balkhi, Tim Ferriss, and Joel Comm, Lewis was able to reinvent himself into a motivational speaker and a highly successful content marketer. Lewis has been featured in Forbes magazine, FastCompany, Time, ESPN, and several other publications.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://studio.envato.com/explore/content-writing\" href=\"http://studio.envato.com/explore/content-writing\">Envato Launches Content Writing Service</a><br />\n<a title=\"http://blog.vaultpress.com/2015/04/01/restore-via-carrier-pigeon/\" href=\"http://blog.vaultpress.com/2015/04/01/restore-via-carrier-pigeon/\">VaultPress Now Offers WordPress Site Restores via Carrier Pigeon</a><br />\n<a title=\"http://recode.net/2015/04/01/godaddy-goes-public-today/\" href=\"http://recode.net/2015/04/01/godaddy-goes-public-today/\">Godaddy.com Goes Public</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title=\"https://wordpress.org/plugins/auto-menu-from-pages/\" href=\"https://wordpress.org/plugins/auto-menu-from-pages/\">Auto Menu From Pages</a> automatically generates a WordPress navigation menu that matches your page order and hierarchy.</p>\n<p><a title=\"https://wordpress.org/plugins/remove-wp-branding/\" href=\"https://wordpress.org/plugins/remove-wp-branding/\">Remove WP Branding</a> replaces logos, links, and text with your own. It also adds two new widgets to the dashboard.</p>\n<p><a title=\"https://wordpress.org/plugins/abc-notation/\" href=\"https://wordpress.org/plugins/abc-notation/\">ABC Notation</a> enables you to include sheet music on your WordPress site by simply specifying the ABC style string using shortcodes.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 8th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #186:</strong><br />\n</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, 02 Apr 2015 17:29: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:13:\"Jeff Chandler\";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:62:\"WPTavern: Hew: A Free WordPress Blogging Theme Inspired by Ryu\";s: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:\"http://wptavern.com/?p=41372\";s: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:\"http://wptavern.com/hew-a-free-wordpress-blogging-theme-inspired-by-ryu\";s: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:3498:\"<p><a href=\"https://wordpress.org/themes/hew/\" target=\"_blank\">Hew</a> is Automattic&#8217;s <a href=\"https://wordpress.org/themes/author/automattic/\" target=\"_blank\">67th</a> free theme release on WordPress.org. The new theme, designed by <a href=\"http://soakingupthelight.wordpress.com/\" target=\"_blank\">Ola Laczek</a>, was inspired by <a href=\"https://wordpress.com/themes/ryu\" target=\"_blank\">Ryu</a>, a classic among personal blogging themes. Ryu was released two years ago and for awhile it seemed like everyone was using it.</p>\n<p>Hew brings that same clean, identity-focused design that features the author&#8217;s Gravatar at the top with posts directly beneath. The ability to immediately brand the blog for yourself is one of the design aspects that made Ryu such a hit.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/hew.png\" rel=\"prettyphoto[41372]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/hew.png?resize=880%2C660\" alt=\"hew\" class=\"aligncenter size-full wp-image-41381\" /></a></p>\n<p>Laczek explained her inspiration for Hew in an interview with the <a href=\"http://themeshaper.com/2015/03/31/hew/\" target=\"_blank\">ThemeShaper</a> blog:</p>\n<blockquote><p>Ryu was my initial inspiration for Hew. I wanted to create a personal-blogging theme which shows an author’s identity – via Gravatar logo and social media links in the header – while staying focused on their content.</p></blockquote>\n<p>The theme includes one optional custom menu in the top bar, which is displayed to the left of the social links menu. Hew keeps the focus on content by hiding all four of its widget areas within a slide-out top panel.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/hew-top-widgets.png\" rel=\"prettyphoto[41372]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/hew-top-widgets.png?resize=640%2C284\" alt=\"hew-top-widgets\" class=\"aligncenter size-full wp-image-41388\" /></a></p>\n<p>As is the case with virtually every other recent theme release from WordPress.com, Hew includes support for post formats. The theme prominently features post format icons at the top of every post. Each format has its own subtle differences in style.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/hew-quote-post-formats.jpg\" rel=\"prettyphoto[41372]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/hew-quote-post-formats.jpg?resize=986%2C421\" alt=\"hew-quote-post-formats\" class=\"aligncenter size-full wp-image-41392\" /></a></p>\n<p>Hew&#8217;s customizer options include the ability to change the header image from your Gravatar to something else, as well as the ability to customize the background and header text color. If you&#8217;re hoping to be able to change the yellow highlight color used throughout the theme, I didn&#8217;t see an easy option to do this. You&#8217;ll need to create your own child theme if you want to further customize it.</p>\n<p>Check out the <a href=\"https://hewdemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see the theme in action.</p>\n<p>Hew is essentially the colorful successor to the popular Ryu theme and is on its way to becoming equally as popular. It is rapidly approaching 1,000 downloads after less than a week on WordPress.org. If you need a fresh new look for your personal blog, take <a href=\"https://wordpress.org/themes/hew/\" target=\"_blank\">Hew</a> for a test drive to see what you think.</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, 02 Apr 2015 16:27: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:13:\"Sarah Gooding\";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:61:\"WPTavern: Meet Wapuujlo, Official Mascot of WordCamp Belgrade\";s: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:\"http://wptavern.com/?p=41319\";s: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:70:\"http://wptavern.com/meet-wapuujlo-official-mascot-of-wordcamp-belgrade\";s: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:5126:\"<p>The trend of WordCamps creating their own custom <a href=\"https://github.com/jawordpressorg/wapuu\" target=\"_blank\">wapuu</a> design is starting to catch momentum. The GPL-licensed creature originated in Japan and variations have been used to personalize branding for Japanese meetups and WordCamps for years.</p>\n<p>Last week we featured <a href=\"http://wptavern.com/scott-evans-on-designing-the-punk-wapuu-for-wordcamp-london-2015\" target=\"_blank\">WordCamp London&#8217;s custom wapuu design</a>, which is fondly dubbed &#8220;Wapuunk.&#8221; That same weekend <a href=\"http://philly.wordcamp.org/2015/\" target=\"_blank\">WordCamp Philly</a> organizers previewed their <a href=\"https://twitter.com/LilJimmi/status/579666510945214464\" target=\"_blank\">Philadelphia-inspired collection</a> of designs for the creature on Twitter, including a Rocky wapuu.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/wapuu-variations.jpg\" rel=\"prettyphoto[41319]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/wapuu-variations.jpg?resize=1025%2C433\" alt=\"wapuu-variations\" class=\"aligncenter size-full wp-image-41338\" /></a></p>\n<p><a href=\"http://belgrade.wordcamp.org/2015/\" target=\"_blank\">WordCamp Belgrade</a> is coming up the weekend of April 18-19, and the organizers have a special variation of wapuu planned. They are calling the Serbian version &#8220;Wapuujlo.&#8221;</p>\n<p>&#8220;It has a traditional Serbian hat and it&#8217;s holding a plum, as plums are Serbia&#8217;s national emblem,&#8221; co-organizer Milan Ivanović told the Tavern.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/Wapuujlo.png\" rel=\"prettyphoto[41319]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/Wapuujlo.png?resize=281%2C300\" alt=\"Wapuujlo\" class=\"alignright size-medium wp-image-41324\" /></a>The team plans to present Wapuujlo as the official mascot of the event and will be printing stickers. <a href=\"https://twitter.com/kouteki_\" target=\"_blank\">Nemanja Aleksić</a>, a volunteer for the WordCamp, is credited with the design. Aleksić is a growth researcher and analyst at <a href=\"https://managewp.com/\" target=\"_blank\">ManageWP</a> by day but also has a passion for design.</p>\n<p>Despite having worked with WordPress for a few years, his first contact with the community was at <a href=\"http://wptavern.com/wordpress-beyond-boundaries-a-recap-of-wordcamp-europe-2014\" target=\"_blank\">WordCamp Europe 2014</a>.</p>\n<p>&#8220;I was blown away by the positive attitude of the people there (especially Remkus de Vries and Chris Lema &#8211; those two are a force of nature) and decided I wanted to be a part of it,&#8221; Aleksić said. When he found out about WordCamp Belgrade getting approved, he decided to offer his help to Milan Ivanović and the team.</p>\n<p>&#8220;We&#8217;ve toyed with the idea of creating our own Wapuu several times in the past, but it wasn&#8217;t until I read your article on <a href=\"http://wptavern.com/scott-evans-on-designing-the-punk-wapuu-for-wordcamp-london-2015\" target=\"_blank\">Scott Evans&#8217; punk Wapuu</a> that I finally decided to do something about it,&#8221; Aleksić said. &#8220;I sat down with my colleague <a href=\"https://www.behance.net/milica_spasojevic\" target=\"_blank\">Milica</a>  and created Wapuujlo.&#8221;</p>\n<p>Wapuujlo&#8217;s attire represents a melding of Serbian tradition with the WordPress mission of democratizing publishing. Aleksić explained his inspiration for the mascot&#8217;s design:</p>\n<blockquote><p>The hat šajkača, a traditional Serbian hat worn by the common folk back in the day, was a logical choice because it represents the people using WordPress to have their voices heard. The plum was Milica&#8217;s idea &#8211; it&#8217;s our national symbol, representing prosperity and unity. These two ideas gave Wapuujlo a traditional vibe, which is a nice contrast to the futuristic/anime variants of the Japanese Wapuu. Even the name Wapuujlo is a nod to traditional Serbian names.</p></blockquote>\n<p>Aleksić found the wapuu SVG file to be easy to alter and the team was able to perform the changes in under five minutes. &#8220;I expect that Belgrade, London, and Philly wapuus will prompt other WordPress communities to come up with their own versions of the mascot,&#8221; he said.</p>\n<p>&#8220;Just don&#8217;t go overboard with the alterations: keep it clean, simple and recognizable,&#8221; Aleksić advised those who want to design a wapuu mascot for an event.</p>\n<p>The trend of creating custom mascots for WordCamps seems to be rapidly catching on outside of Japan. The first edition of WordCamp Belgrade is a historic event for <a href=\"http://wptavern.com/a-glimpse-into-serbias-rapidly-growing-wordpress-community\" target=\"_blank\">Serbia&#8217;s WordPress community</a> and the organizers wanted to offer a commemorative wapuu sticker as part of the branding.</p>\n<p>&#8220;We want to continue the tradition and inspire other WordCamps out there to include Wapuu as a must,&#8221; Ivanović said. &#8220;I just love that cute little fellow!&#8221;</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, 02 Apr 2015 00:14: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:13:\"Sarah Gooding\";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:82:\"WPTavern: How to Use LICEcap to Record and Turn Screen Captures into Animated GIFs\";s: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:\"http://wptavern.com/?p=41316\";s: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:\"http://wptavern.com/how-to-use-licecap-to-record-and-turn-screen-captures-into-animated-gifs\";s: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:3800:\"<p>When I wrote about <a title=\"http://wptavern.com/enhanced-plugin-installs-axed-from-wordpress-4-2\" href=\"http://wptavern.com/enhanced-plugin-installs-axed-from-wordpress-4-2\">enhanced plugin installs being removed</a> from WordPress 4.2 last week, a few readers asked how I created the animated image that shows how shiny updates work. I used <a title=\"http://www.cockos.com/licecap/\" href=\"http://www.cockos.com/licecap/\">LICEcap</a> by Çockos Incorporated, which is free, GPL licensed software available for Windows and OSX.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/LicecapFrame.png\" rel=\"prettyphoto[41316]\"><img class=\"size-full wp-image-41321\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/LicecapFrame.png?resize=648%2C508\" alt=\"LICEcap Frame\" /></a>LICEcap Frame\n<p>LICEcap has an adjustable frame that you place over the content you want to record. You can adjust the frame manually by dragging the edges with your mouse cursor, or you can type in an exact size. You can also adjust the max frames per second, but keep in mind that the higher the number, the larger the file size will be.</p>\n<p>When you hit the record button, you&#8217;ll be prompted to name the file and select where it will be saved. There&#8217;s also configuration settings that allow you to manipulate the recording.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/LICEcapRecordingSettings.png\" rel=\"prettyphoto[41316]\"><img class=\"size-full wp-image-41322\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/LICEcapRecordingSettings.png?resize=660%2C222\" alt=\"Recording Settings\" /></a>Recording Settings\n<p>I don&#8217;t know what most of the options do and LICEcap doesn&#8217;t have any documentation outside of <a title=\"http://forum.cockos.com/forumdisplay.php?f=44\" href=\"http://forum.cockos.com/forumdisplay.php?f=44\">this discussion forum</a>. I recommend checking the box to use Control + Alt + P to pause the recording. This way, you won&#8217;t see the mouse cursor move off the screen to click the pause button. LICEcap doesn&#8217;t have an editor to manage frames so if you make a mistake, you&#8217;ll have to start over. Since animated GIFs should be as short and small as possible, the lack of a frame editor isn&#8217;t a big deal.</p>\n<p>Once everything is configured, click the save button and a three second countdown begins. When the countdown reaches 0, LICEcap begins recording movement within the frame. On the bottom left of the recording window, you&#8217;ll see the size of the frame, timestamp, and the amount of FPS.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/LICEcapRecordingWindow.png\" rel=\"prettyphoto[41316]\"><img class=\"size-full wp-image-41323\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/LICEcapRecordingWindow.png?resize=693%2C557\" alt=\"Recording Status \" /></a>Recording Status\n<p>Once you&#8217;re satisfied with the recording, upload the GIF file to the WordPress media library. When you insert it into a post, make sure to use the full size image since animated GIFs don&#8217;t scale as well as JPG files.</p>\n<h2>A Few Tips When Creating Animated GIFs</h2>\n<p>Keep the recording as short and small as possible. Resize the recording window so it&#8217;s only as big as necessary. Animation such as scrolling and page browsing should be kept to a minimum. Last but not least, play with the recording options as there might be a combination that decreases the file size of recordings.</p>\n<p>Animated GIFs are great for a few laughs, but they&#8217;re also an excellent way to show how something works. They&#8217;re a great option when using video doesn&#8217;t make sense. What do you use or recommend to record screen captures in GIF format?</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, 01 Apr 2015 21:12: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:13:\"Jeff Chandler\";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:32:\"Matt: Jetpack bundling 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:21:\"http://ma.tt/?p=44912\";s: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:\"http://ma.tt/2015/04/jetpack-bundling-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:439:\"<blockquote><p>The CEO of Automattic worked with the co-founder of WordPress directly, mediated by the head of the WordPress Foundation. Matt Mullenweg said the meetings were very productive.</p></blockquote>\n<p>As inside-baseball WordPress-focused April Fools go, this one is pretty funny: <em><a href=\"https://poststatus.com/wordpress-jetpack-bundle/\">WordPress to be bundled in Jetpack with mission to power 50% of the web</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:\"Wed, 01 Apr 2015 19:32: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: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:60:\"WPTavern: Jack Lenox on Building Themes with the WP REST 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:28:\"http://wptavern.com/?p=41287\";s: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:70:\"http://wptavern.com/jack-lenox-on-building-themes-with-the-wp-rest-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:4216:\"<p><a href=\"http://wptavern.com/wordcamp-london-2015-highlights-the-energy-in-the-uk-wordpress-scene-with-punk-wapuu-and-a-focus-on-non-profits\" target=\"_blank\">WordCamp London 2015</a> was packed full of excellent presentations, lightning talks, and panels. For several of the more technical sessions, attendees were actually turned away at the door due to the rooms being filled to capacity. This was the case for Jack Lenox&#8217;s presentation on Building Themes with the <a href=\"http://wp-api.org/\" target=\"_blank\">WP REST API</a>.</p>\n<p>&#8220;I was overwhelmed by the popularity of the talk,&#8221; Lenox said in his <a href=\"http://jacklenox.com/2015/03/30/building-themes-with-the-wp-rest-api-wordcamp-london-march-2015/\" target=\"_blank\">recap post</a>. &#8220;I think there were over 200 people crammed into the room, and many more ended up getting turned away.&#8221; A photo captured just before the session shows how crowded the room was with attendees eager to learn about building themes with the WP REST API.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/jack-lenox-building-themes-with-the-wp-rest-api.jpg\" rel=\"prettyphoto[41287]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/04/jack-lenox-building-themes-with-the-wp-rest-api.jpg?resize=825%2C510\" alt=\"photo credit: Tim Nash\" class=\"size-full wp-image-41290\" /></a>photo credit: <a href=\"https://timnash.co.uk/wordcamp-london-2015-photos/\">Tim Nash</a>\n<p>When asked for a link to his slides, Lenox found that they didn&#8217;t communicate much on their own without the presentation, a common drawback to viewing the slides by themselves. The session should make it onto WordPress.tv sometime soon, but in the meantime he created a screencast for those who couldn&#8217;t attend.</p>\n<p>The <a href=\"http://jacklenox.com/2015/03/30/building-themes-with-the-wp-rest-api-wordcamp-london-march-2015/\" target=\"_blank\">video</a> is actually an extended edition of his talk and runs for a full 50 minutes. Lenox starts by answering the question, &#8220;What&#8217;s the big deal about the REST API?&#8221; He also demos the speed of getting content from the API using a few live examples.</p>\n<p>His presentation offers theme developers a few reasons for why they may want to look into building themes that use the WP REST API:</p>\n<ul>\n<li>Provides a way to retrieve pure data (usually in JSON or XML format) over HTTP</li>\n<li>No loops necessary</li>\n<li>Good for mobile apps and environments where you don&#8217;t want a full webpage to render but want content from a blog or site</li>\n</ul>\n<p>Lenox gives a basic overview of what can you do with the WP REST API, even without knowing any PHP. The benefits he cites include a more engaging user experience, potentially reduced server load, improved speed, and better control over failed connections. During the presentation he shows examples of how to incorporate single page application elements into WordPress themes where interactions are handled by JavaScript.</p>\n<p>The Picard theme that he demos is aptly named as a play on the next generation of themes. It&#8217;s a prototype WordPress theme built with React and the upcoming WP-API. If you want to play with it, you can clone the repository on <a href=\"https://github.com/jacklenox/picard-present\" target=\"_blank\">GitHub</a>. Automattic is aiming to open source the Picard theme around the beginning of May.</p>\n<p>Interest surrounding the presentation demonstrates how excited the WordPress community is to start incorporating the new API into their projects. Many who attended the session at WordCamp London were inspired to start looking at themes in a new way.</p>\n<p>The resulting experience of pre-loading all the content allows users to zip around without any delay. It&#8217;s a dramatic improvement and an amazing example of how a theme can have much more control over the speed and resources needed to present content on the frontend. If your interest is piqued, check out the <a href=\"http://jacklenox.com/2015/03/30/building-themes-with-the-wp-rest-api-wordcamp-london-march-2015/\" target=\"_blank\">Jack Lenox&#8217;s extended edition video</a> for the full technical breakdown.</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, 01 Apr 2015 17:13: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:13:\"Sarah Gooding\";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:33:\"Akismet: March 2015 Stats Roundup\";s: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=1831\";s: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:60:\"http://blog.akismet.com/2015/04/01/march-2015-stats-roundup/\";s: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:3160:\"<p>In March, Akismet saw <strong>5,426,166,500 spam comments</strong> go through. Though this was a rise of 32% since last month, it&#8217;s a decrease from last year&#8217;s March by 19 percent. It&#8217;s been a quiet March.</p>\n<div id=\"attachment_1833\" class=\"wp-caption alignright\"><img class=\"size-medium wp-image-1833\" src=\"https://akismet.files.wordpress.com/2015/04/north-america-flickr-and-twitter.jpg?w=300&h=215\" alt=\"North American detail map of Flickr and Twitter locations\" width=\"300\" height=\"215\" /><p class=\"wp-caption-text\">This image, &#8220;<a href=\"https://www.flickr.com/photos/walkingsf/5912385701/in/photolist-c1aCmd-9swg2U-5u4owD-5u4oZB-5u4pbp-5u8Nod-g4diA-a1swhv-4QnfJ4-C3sZf-C5Q5Z-ascVyT-fBML2n-bqSUNe-9EqBbm-fBtVoM-8bq7g4-dyuYhZ-5jhfU6-616jy1-8Acc7V-64MxWF-e2xZ7T-8Ac8Ln-4QnfVv-bniLme-bXnhwT-4QnfEa-4QrsGo-a6BM2e-9xGMoY-qwh4YY-8CKMaP-58JLko-7ybxFe-bmqDdi-BmPq-8i2BcQ-axDnPm-Bf1yg-8fvfh7-87P2XP-anzwqA-cMKsCA-7eTS9k-dqbnvY-caSD2A-4HgdXo-9M1hkq-4Xevm\">North American detail map of Flickr and Twitter locations</a>&#8221; by <a href=\"https://www.flickr.com/photos/walkingsf/\">Eric Fischer</a>, is licensed under <a href=\"https://creativecommons.org/licenses/by/2.0/\">CC BY 2.0</a></p></div>\n<p>If we wanted to visualize this number, we could write down each spam comment on a piece of paper and ask each person in the USA to hold on to them. In that case, each person would be holding onto 17 pieces of paper to cover all of the spam we received.</p>\n<p>As usual, Akismet saw much less ham go around this month &#8211; <strong>only about 2.7% of all comments were real comments</strong>. We&#8217;d need only half of the people in the United States to hold just one piece of paper to cover all the ham comments &#8211; there were 147,994,500 total ham comments going through.</p>\n<p>Here&#8217;s a chart breaking down the numbers per day:</p>\n<div id=\"attachment_1832\" class=\"wp-caption alignnone\"><img class=\"size-large wp-image-1832\" src=\"https://akismet.files.wordpress.com/2015/04/akismet-spam-and-ham-stats-march-2015.png?w=700&h=438\" alt=\"graph of akismet spam and ham daily stats February 2015\" /><p class=\"wp-caption-text\">The busiest day of the month was the 20th, with 198,630,500 spam comments. The slowest day was the 15th with 146,041,500.</p></div>\n<p>If you&#8217;re having any trouble with spam comments getting through on your site, or any false positives in your spam folder, feel free to <a href=\"http://akismet.com/contact/\">contact us</a> so we can help <span class=\"wp-smiley wp-emoji wp-emoji-smile\" title=\":)\">:)</span>.</p>\n<p><em>This post is part of a monthly series summarizing some stats and figures from the Akismet universe. Feel free to browse <a href=\"http://blog.akismet.com/category/monthly-roundup/\">all of the posts in the series</a>.</em></p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1831/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1831/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1831&subd=akismet&ref=&feed=1\" width=\"1\" height=\"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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Apr 2015 13:13: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:7:\"Valerie\";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:51:\"Matt: Declaration of the Independence of Cyberspace\";s: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:21:\"http://ma.tt/?p=44896\";s: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:\"http://ma.tt/2015/03/declaration-of-the-independence-of-cyberspace/\";s: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:449:\"<blockquote><p>Governments of the Industrial World, you weary giants of flesh and steel, I come from Cyberspace, the new home of Mind. On behalf of the future, I ask you of the past to leave us alone. You are not welcome among us. You have no sovereignty where we gather.</p></blockquote>\n<p>John Perry Barlow&#8217;s classic <a href=\"https://projects.eff.org/~barlow/Declaration-Final.html\">A Declaration of the Independence of Cyberspace</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, 01 Apr 2015 05:35: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: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:106:\"WPTavern: Flickr Announces the Ability to Choose Public Domain and Creative Commons 0 License Designations\";s: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:\"http://wptavern.com/?p=41269\";s: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:116:\"http://wptavern.com/flickr-announces-the-ability-to-choose-public-domain-and-creative-commons-0-license-designations\";s: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:4288:\"<p>Flickr <a title=\"https://blog.flickr.net/2015/03/30/flickr-now-offers-public-domain-and-cc0-designations/?linkId=13226047\" href=\"https://blog.flickr.net/2015/03/30/flickr-now-offers-public-domain-and-cc0-designations/?linkId=13226047\">announced on Monday,</a> that it&#8217;s adding the ability for users to choose <a title=\"https://creativecommons.org/publicdomain/mark/1.0/\" href=\"https://creativecommons.org/publicdomain/mark/1.0/\">Public Domain</a> and <a title=\"http://creativecommons.org/about/cc0\" href=\"http://creativecommons.org/about/cc0\">Creative Commons 0</a> (CC0) license designations. The new designations allow users to relinquish all forms of copyright on images. The move is in response to requests from its community and recognizing it has become an important repository of U.S. Government works and historical content.</p>\n<blockquote><p>We’ve been proud to support Creative Commons licenses since 2004, and we’ve become an important repository of U.S. Government works and historic images from galleries, libraries, archives, and museums around the world (check out <a href=\"https://www.flickr.com/commons\">The Flickr Commons</a> for examples).</p>\n<p>But we’ve heard from our community that we’re missing two important designations: Public Domain and Creative Commons 0 (CC0). Many members of our community want to be able to upload images that are no longer protected by copyright and correctly tag them as being in the Public Domain, or they want to release their copyright entirely under CC0.</p></blockquote>\n<p><a title=\"http://www.spacex.com/\" href=\"http://www.spacex.com/\">SpaceX</a> is the first <a title=\"https://www.flickr.com/photos/spacexphotos\" href=\"https://www.flickr.com/photos/spacexphotos\">Flickr account</a> to change its image designation to CC0. License designations are on the right, underneath the date the image was taken.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/FlickrImageDesignation.png\" rel=\"prettyphoto[41269]\"><img class=\"size-full wp-image-41273\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/FlickrImageDesignation.png?resize=1025%2C549\" alt=\"Image Designation\" /></a>Image Designation\n<p>There&#8217;s a distinct difference between Public Domain and CC0 images with CC0 being the least restrictive of the two.</p>\n<ul>\n<li>CC0 images are available without restriction as completely as possible in the public domain, so that others may freely build upon, enhance, and reuse the works for any purposes without restriction under copyright or database law.</li>\n<li>Images marked as Public Domain may not be free of known copyright restrictions in all <a id=\"all_jurisdictions\" class=\"helpLink\" href=\"https://creativecommons.org/publicdomain/mark/1.0/\">jurisdictions</a>. Persons may also have other rights related to the work, such as a patent, or trademark.</li>\n</ul>\n<p>Flickr will continue to mark newly uploaded images as All Rights Reserved by default, but you can change the default for all or individual photos by visiting the Privacy and Permissions tab within your account settings.</p>\n<p>Although Flickr has made it easy to add images to the Public Domain, locating them is difficult. Flickr only provides four different search filters:</p>\n<ul>\n<li>Any License</li>\n<li>Creative Commons Only</li>\n<li>  Commercial use allowed</li>\n<li>  Modifications allowed</li>\n</ul>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LackofSearch.png\" rel=\"prettyphoto[41269]\"><img class=\"size-full wp-image-41274\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LackofSearch.png?resize=1025%2C423\" alt=\"Lack of Search Filters\" /></a>Lack of Search Filters\n<p>Since CC0 is mixed in the other Creative Commons license types, it&#8217;s difficult to search only for images with the CC0 and Public Domain designations. Until Flickr adds specific license filters to its search box, users will likely spend more time searching for images instead of using them.</p>\n<p>Despite not being able to easily find them, enabling users to waive all copyright protection on photographs should increase the amount of freely available images to use. This is a huge win and in the future, could make Flickr the largest source of Public Domain images on the web.</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, 01 Apr 2015 01:24: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:13:\"Jeff Chandler\";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:76:\"Post Status: How StoryCorps uses WordPress to enable storytelling everywhere\";s: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=12142\";s: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://poststatus.com/how-storycorps-uses-wordpress-to-enable-storytelling-everywhere/\";s: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:10814:\"<p><a href=\"http://storycorps.org/\">StoryCorps</a> is an organization that aims &#8220;to provide people of all backgrounds and beliefs with the opportunity to record, share and preserve the stories of our lives.&#8221; Featured stories are broadcast nationally on NPR.</p>\n<p>StoryCorps has published more than 50,000 interviews with almost 100,000 participants since they launched in 2003. A small to mid-size non-profit organization, StoryCorp&#8217;s interviews are logged in the Library of Congress, and over the years they have created new and ingenious ways to enable storytelling.</p>\n<p>There are recording booths in a number of cities throughout the country where anyone can go and record an interview or story. The first was in Grand Central Station, though it&#8217;s since shut down due to budget issues. However, booths are open in Atlanta, San Francisco, and Chicago where <a href=\"http://storycorps.org/programs/\">anyone can make a reservation</a> to record.</p>\n<p>They also have an Airstream trailer that travels the country and records interviews all over the place. Creating ways for people to share stories is the heart of StoryCorps mission.</p>\n<div id=\"attachment_12144\" class=\"wp-caption aligncenter\"><img class=\"size-large wp-image-12144\" src=\"https://poststatus.com/wp-content/uploads/2015/03/story-corps-mobilebooth-752x502.jpg\" alt=\"The StoryCorps MobileBooth. Credit: StoryCorps Flickr\" width=\"752\" height=\"502\" /><p class=\"wp-caption-text\">The StoryCorps MobileBooth. Credit: <a href=\"https://www.flickr.com/photos/storycorps/5361427581/in/album-72157625714105333/\">StoryCorps Flickr</a></p></div>\n<p>One WordPress developer that worked on the StoryCorps project told me, &#8220;I cry almost every time&#8221; as they listen to StoryCorps on their local NPR station every Friday morning. The stories tend to be very powerful. I was nearly brought to tears by one where <a href=\"https://storycorps.me/interviews/i-just-hugged-the-man-who-murdered-my-son/\">a lady hugs her son&#8217;s murderer</a>. Another moving story (from my hometown no less), features a father that <a href=\"http://storycorps.org/listen/william-watford-iii-and-deidra-robinson/\">comes to terms with his daughter&#8217;s homosexuality</a>. Or there&#8217;s one where President Obama<a href=\"http://storycorps.org/listen/noah-mcqueen-and-barack-obama-150225/\"> interviews a boy who overcame adversity to join My Brother&#8217;s Keeper</a>.</p>\n<h3>Record stories anywhere</h3>\n<p>The latest initiative for creating ways for people to share their story is via <a href=\"https://storycorps.me\">StoryCorps.me</a>, a website and companion apps that make it easy for anyone with a smartphone to record an interview and publish it.</p>\n<p>StoryCorps.me is built on WordPress, and utilizes the <a title=\"The WordPress REST API\" href=\"https://poststatus.com/wordpress-json-rest-api/\">WordPress REST API</a> to enable access to a customized content architecture. The StoryCorps app utilizes the API to consume data and publish stories from the app back to the website.</p>\n<p>I interviewed Dean Haddock, Director of Digital &amp; Technical Innovation at StoryCorps, about how the idea for the app came about, how they use and think of WordPress, and other insights from their short three month development period.</p>\n<p>Listen to the interview:</p>\n<a href=\"https://audio.simplecast.fm/9832.mp3\">https://audio.simplecast.fm/9832.mp3</a>\n<p><a href=\"https://audio.simplecast.fm/9832.mp3\">Direct Download</a></p>\n<h3>A national day of listening</h3>\n<p>Dean says he thinks the StoryCorps app really dates back to a program they ran three years ago called A National Day of Listening, where instead of shopping on Black Friday, they hosted an event where people could tell stories.</p>\n<p>Dean&#8217;s team expanding on the idea, and the event turned <a href=\"http://diy.storycorps.org/\">into a micro-site</a> using SoundCloud&#8217;s API that made that process easier. That project eventually expanded into the idea that would become StoryCorps.me.</p>\n<h3>Funding for the app</h3>\n<p>The StoryCorps app was funded thanks to StoryCorps founder Dave Isay winning this year’s TED Prize, with a substantial amount of research and development conducted under the 2014 Knight Foundation Prototype Award. He gave a TED Talk in Vancouver just a few weeks ago, where he shared how <a href=\"http://www.ted.com/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear?language=en\">everyone has a story to tell</a>.</p>\n<div id=\"attachment_12145\" class=\"wp-caption aligncenter\"><a href=\"http://www.ted.com/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear?language=en\"><img class=\"wp-image-12145 size-large\" src=\"https://poststatus.com/wp-content/uploads/2015/03/dave-isay-752x391.png\" alt=\"Dave Isay at TED\" width=\"752\" height=\"391\" /></a><p class=\"wp-caption-text\">Dave Isay at TED</p></div>\n<blockquote><p>The TED Prize is awarded to an individual with a creative, bold vision to spark global change. By leveraging the TED community’s resources and investing $1 million into a powerful idea, each year the TED Prize supports one wish to inspire the world.</p>\n<p><a href=\"https://www.ted.com/participate/ted-prize\">- TED Prize website</a></p></blockquote>\n<p>His wish after winning the TED Prize was to &#8220;to grow this digital archive of the collective wisdom of humanity.&#8221; During the TED Talk, he noted that StoryCorps is &#8220;the single largest collection of human voices ever collected.&#8221;</p>\n<p>The new app makes this mission even more plausible, by having almost no barrier for interview creation. The $1 million TED Prize made it possible.</p>\n<h3>Development of the StoryCorps app</h3>\n<p><img class=\"aligncenter size-large wp-image-12146\" src=\"https://poststatus.com/wp-content/uploads/2015/03/storycorps-app-752x444.jpg\" alt=\"storycorps-app\" width=\"752\" height=\"444\" /></p>\n<p>With &#8220;one tap&#8221;, interviews can be created and uploaded to the StoryCorps.me website and the Library of Congress archive.</p>\n<p>Dave shared some of his vision for the app during the TED Talk:</p>\n<blockquote><p><span id=\"t-1069355\" class=\"talk-transcript__fragment\">Imagine, for example, a national homework assignment</span> <span id=\"t-1073093\" class=\"talk-transcript__fragment\">where every high school student studying U.S. history across the country</span> <span id=\"t-1077087\" class=\"talk-transcript__fragment\">records an interview with an elder over Thanksgiving,</span> <span id=\"t-1079989\" class=\"talk-transcript__fragment\">so that in one single weekend</span> <span id=\"t-1082892\" class=\"talk-transcript__fragment\">an entire generation of American lives and experiences are captured.</span></p></blockquote>\n<p>Development of the app was managed on three levels.</p>\n<p>The StoryCorps team did project management, communication, and handled RFPs for app and website development. They also ensured that everything fit the StoryCorps model, and ensured that the new website and app talked to existing StoryCorps software and APIs properly.</p>\n<p><a href=\"http://10up.com\">10up</a> built the website infrastructure, manages scalability issues, and managed the integration of the WordPress REST API.</p>\n<p><a href=\"http://maya.com/news/maya-creates-storycorps-app-to-capture-the-wisdom-of-humanityreates-storycorps-app-to-capture-the-wisdom-of-humanity\">MAYA design</a> designed and built the app for the end-user, utilizing PhoneGap so that the app could be launched simultaneously to both iOS and Android platforms.</p>\n<p><span class=\"pullquote alignright\">&#8220;We knew we going to use WordPress before we started looking for partners to help us build this thing.&#8221;</span> As a &#8220;small to midsize non-profit,&#8221; StoryCorps has few resources. StoryCorps.org has been on WordPress, and they wanted to use WordPress for StoryCorps.me as well.</p>\n<p>The development phase was quite short: from funding to launch took only three months. They launched at TED after receiving the funding last October.</p>\n<blockquote><p>For public facing web technology, WordPress is so flexible and so malleable and amenable to whatever we need to do with it, that it really wasn&#8217;t much of a question whether this was the right platform.</p></blockquote>\n<p>What their real question was, Dean shares, was how WordPress could scale if and when they hit a million users, and that&#8217;s why they brought in 10up.</p>\n<h3>What they learned</h3>\n<p>They are really pleased with how the project has gone so far. However, not everything was a success. They had to pivot and make adjustments as they went along and learned new things and requirements.</p>\n<p>Dean noted, <span class=\"pullquote alignright\">&#8220;You have to be willing to completely submit to the process.&#8221;</span> He says it wouldn&#8217;t have succeeded if 10up and Maya weren&#8217;t committed as StoryCorps to the success of the project.</p>\n<p>They also learned what Dean calls &#8220;more tangible&#8221; things, like the usage of PhoneGap. Without using a tool like PhoneGap, they wouldn&#8217;t have been able to &#8220;get to market as soon as possible.&#8221; However, he admits the app could be slightly better if it were built in a native platform to either iOS or Android.</p>\n<h3>Powerful stories</h3>\n<p>I really enjoyed digging into StoryCorps mission and the new <a href=\"https://storycorps.me\">StoryCorps.me</a> project. I&#8217;m addicted to their stories, and some of the stories that have been uploaded &#8212; such as <a href=\"https://storycorps.me/interviews/krisalyn-cut-her-hair/\">those</a> <a href=\"https://storycorps.me/interviews/grandmas-favorite-memories/\">in</a> the audio intro &#8212; are really endearing.</p>\n<p>While there may be an element of noise to the StoryCorps.me archive, it&#8217;s already evident that many gems will emerge, and who knows what ideas people will come up with for creative ways to perform interviews and record stories.</p>\n<p>The apps are available on <a href=\"https://play.google.com/store/apps/details?id=com.bottlerocketapps.storycorps\">Google Play</a> and in the <a href=\"https://itunes.apple.com/us/app/storycorps/id359071069?mt=8\">App Store</a>. It&#8217;ll be improving over the next weeks and and months. If you&#8217;re excited about technology at StoryCorps, you can reach Dean at <a href=\"mailto:dhaddock@storycorps.org\">dhaddock@storycorps.org</a> or you can also report issues or ask questions about the app at <a href=\"mailto:contactus@storycorps.me\">contactus@storycorps.me</a>.</p>\n<p>StoryCorps is a great testament to WordPress and its ability to be an infrastructure to an app at scale, while also enabling efficient development cycles. This is probably my favorite utilization of the new REST API yet.</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, 31 Mar 2015 23:21: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:15:\"Brian Krogsgard\";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:111:\"WPTavern: WordPress Theme Directory Improvements Boost User Engagement, Commercial Themes Page Still Recovering\";s: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:\"http://wptavern.com/?p=41237\";s: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:120:\"http://wptavern.com/wordpress-theme-directory-improvements-boost-user-engagement-commercial-themes-page-still-recovering\";s: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:3991:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/new-themes-directory-featured.png\" rel=\"prettyphoto[41237]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/new-themes-directory-featured.png?resize=1001%2C489\" alt=\"new-themes-directory-featured\" class=\"aligncenter size-full wp-image-37113\" /></a></p>\n<p>WordPress.org launched <a href=\"http://wptavern.com/wordpress-theme-directory-launches-new-design\" target=\"_blank\">a new design for the Theme Directory</a> just over a month ago and the meta team has continued to fix bugs and add enhancements. Preliminary stats and feedback indicate that the directory improvements have had a positive impact on users&#8217; ability to hunt for themes.</p>\n<p>WordPress.org contributor Konstantin Obenland <a href=\"https://make.wordpress.org/meta/2015/03/31/theme-directory-stats/\" target=\"_blank\">reports</a> that user engagement has taken a significant jump:</p>\n<blockquote><p>Users stay longer on the site, look at a lot more pages, and are way less likely to leave without any interaction. Comparing the week before the relaunch with this past week, session duration is up 9%. The amount of pages a user looks at is up 34%. And the overall bounce rate went down from ~30% to under 10%. Even on the homepage, where the bounce rate was at around 45%, we can see that drop by 2/3.</p></blockquote>\n<p>The new design has not affected the directory&#8217;s search engine ranking or download numbers. Obenland states that visitor numbers remain constant, as do search engine referral numbers and theme downloads.</p>\n<p>While the new image-heavy grid design makes it easier for users to find the best themes on WordPress.org, the <a href=\"https://wordpress.org/themes/commercial/\" target=\"_blank\">Commercial Themes</a> page has suffered a sharp decline in stats.</p>\n<p>&#8220;The Commercial Themes page saw a drop of ~40% in visitors between the old Directory and the new,&#8221; Obenland said. &#8220;That number was at 60% right after launch, but it recovered and continues to recover with some adjustments we made to the link placement on the site.&#8221;</p>\n<p>Despite the prominent placement of &#8220;Commercial Themes&#8221; link on the main theme directory page, users are spending more time browsing for free themes. The previous design of the directory made it tedious to search for a new theme, but it&#8217;s likely that the new UI is helping users to discover how many truly beautiful, high quality free themes are available on WordPress.org.</p>\n<p>The Commercial Themes page received the same UI updates as the main directory, but the chief complaint from commercial theme developers following the design switch was the <a href=\"https://meta.trac.wordpress.org/ticket/947\" target=\"_blank\">placement and labeling of the link</a>. This particular aspect of the design has been iterated upon several times since the launch.</p>\n<p>However, relentlessly pursuing better stats for commercial theme shops is contrary to the purpose of the WordPress theme directory, according to <a href=\"http://wptavern.com/wordpress-theme-directory-launches-new-design#comment-65597\" target=\"_blank\">an email reply</a> received by one concerned user who contacted themes@wordpress.org:</p>\n<p>&#8220;Our goal wouldn’t be to maximize traffic to the sites listed on the commercial page so much as making the site as functional and useful as possible,&#8221; the WordPress.org representative stated.</p>\n<p>The commercial themes link has ultimately received an even more prominent placement than it had in years past and is also benefiting from the updated design. If stats remain down, it&#8217;s possible that the new design better reflects the quality of the free themes available. Satisfied users are less likely to turn to commercial options when they can easily browse and filter free options. For now, commercial theme shops listed in the directory will have to settle on improving their marketing elsewhere.</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, 31 Mar 2015 20:30: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:13:\"Sarah Gooding\";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:55:\"WPTavern: What’s a Better Name for the 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=41227\";s: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:\"http://wptavern.com/whats-a-better-name-for-the-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5129:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/WPHappinessBarFeaturedImage.png\" rel=\"prettyphoto[41227]\"><img class=\"size-full wp-image-41246\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/WPHappinessBarFeaturedImage.png?resize=817%2C368\" alt=\"WP Happiness Bar Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/35800266@N07/9265175419\">WPMTL2013happinessbar_13_LR</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>If you&#8217;ve <a title=\"http://central.wordcamp.org/\" href=\"http://central.wordcamp.org/\">attended a WordCamp</a>, you might be familiar with the term <em>Happiness Bar</em>. It&#8217;s an area within a WordCamp venue devoted to providing technical support for WordPress. Morten Rand-Hendriksen thinks it&#8217;s time to <a title=\"http://mor10.com/it-is-time-to-rename-the-happiness-bar/#.VRmrv4e3rqk.twitter\" href=\"http://mor10.com/it-is-time-to-rename-the-happiness-bar/#.VRmrv4e3rqk.twitter\">change the name</a> to something more obvious.</p>\n<blockquote><p>The most important task of giving a service a name is to ensure the name communicates what the service does to the uninitiated. The problem, which is pretty obvious, is that the name “Happiness Bar” says nothing about what is being provided. The name “Happiness Bar” is more befitting a bar where they hand out cotton candy, hugs, or free jokes.</p></blockquote>\n<p>Like Hendriksen, I have observed WordCamp attendees not take full advantage of the happiness bar, mostly due to not knowing what it is. It also doesn&#8217;t help when WordCamp organizers fail to mention it during opening remarks. Happiness is a subjective term and is delivered differently depending on the person. This is evident in the responses Hendriksen received when he asked attendees what the happiness bar is.</p>\n<ul>\n<li>“Is it where they hand out swag?”</li>\n<li>“It’s a place where they give you life advice?”</li>\n<li>“It’s a desk where they have life/business/happiness coaches?”</li>\n<li>“You go there to get a massage?”</li>\n<li>“Do they give away candy?”</li>\n</ul>\n<p>As someone who has attended several WordCamps, I find their responses comical yet, realistic. Within the comments of Hendriksen&#8217;s post, <a title=\"http://mor10.com/it-is-time-to-rename-the-happiness-bar/comment-page-1/#comment-1361772\" href=\"http://mor10.com/it-is-time-to-rename-the-happiness-bar/comment-page-1/#comment-1361772\">Jen Mylo gives insight</a> into how the happiness bar originated.</p>\n<blockquote><p>Here&#8217;s the historical reason it was called that: It used to be Genius Bar and at SxSW an Apple person came over, smiled, and took a picture, and we were afraid we’d get sued. WCSF was coming up soon and all of the natural names like WP Help Desk etc had independent businesses attached to them, and we didn’t want to have a conflict with any small businesses.</p>\n<p>Back when Automattic ran WCSF (vs a .org community team like now), happiness bar made sense for that one event, because they were mostly Happiness Engineers and it didn’t infringe on anyone’s business. After that, other WCs wanted to copy it. I begged them not to, to just call it a help desk or something, but organizers persisted in wanting to adopt that nomenclature to be more like SF. (I didn’t use it at the WCs I organized in NYC or Savannah.)</p>\n<p>I work for Automattic so I obviously think it’s a good company, but the devotion to that name in other contexts has always bummed me out, because it doesn’t mean a damn thing to anyone unless they have already been indoctrinated with the whole &#8216;focus on happiness, not support, because the happy outcome is what we want to provide&#8217; thing, which almost no one has.</p></blockquote>\n<p>Mylo finished her comment by offering feedback on Hendriksen&#8217;s suggestions for a new name and encouraged him to post his idea to the <a title=\"http://make.wordpress.org/community\" href=\"http://make.wordpress.org/community\">Make WordPress Community</a> site to start a more official conversation.</p>\n<h2>Call The Happiness Bar The WordPress Help Center</h2>\n<p>I think the happiness bar should be renamed to something that&#8217;s generic and easy to figure out based on its title alone. My suggestion is to call it the <em>WordPress Help Center</em>. It tells people it&#8217;s a location within the venue and is a place to get WordPress help. It&#8217;s also generalized so that it covers both WordPress.com and WordPress.org.</p>\n<p>The only issue I see is that, <a title=\"http://wphelpcenter.com/\" href=\"http://wphelpcenter.com/\">WP HelpCenter</a> used to be a service that offered WordPress tech support. However, the site and service has been defunct for a long time. Perhaps the <a title=\"http://wordpressfoundation.org/\" href=\"http://wordpressfoundation.org/\">WordPress Foundation</a> can find a way to obtain the domain so the title can be used at WordCamps.</p>\n<p>Do you think it&#8217;s time to rename the happiness bar to something else? If so, let us know what you would call it and why.</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, 31 Mar 2015 19:56: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:13:\"Jeff Chandler\";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:93:\"WPTavern: Behind the Curtain with DerpPress, WordPress’ Anonymous Satirical Twitter Account\";s: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:\"http://wptavern.com/?p=41207\";s: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:99:\"http://wptavern.com/behind-the-curtain-with-derppress-wordpress-anonymous-satirical-twitter-account\";s: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:11270:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/derppress.png\" rel=\"prettyphoto[41207]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/derppress.png?resize=1025%2C473\" alt=\"derppress\" class=\"aligncenter size-full wp-image-41217\" /></a></p>\n<p>For the past two years, the <a href=\"https://twitter.com/DerpPress/\" target=\"_blank\">DerpPress</a> Twitter account has been cranking out tweets to amuse followers with clever puns and subtle commentary on WordPress news and development.  Of all the anonymous accounts devoted to tweeting WordPress-related humor, DerpPress is the most consistent and dependable source of timely wise cracks.</p>\n<p>You’ll find the account tweeting on a variety of topics, including current events, security, WordCamps, automatic updates, and WordPress personalities.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>Shortcake Is Now a <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a> Feature Plugin; My Little Ponies, Care Bears, Snorks Hardest Hit</p>\n<p>&mdash; DerpPress (@DerpPress) <a href=\"https://twitter.com/DerpPress/status/580704783843135488\">March 25, 2015</a></p></blockquote>\n<p></p>\n<p>DerpPress is also frequently the originator of playful hashtags that encourage the community to join in creating <a href=\"http://wptavern.com/friday-fun-top-25-wordpress-movie-titles\" target=\"_blank\">WordPress-related puns</a>.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>Little Miss Sunrise.php <a href=\"https://twitter.com/hashtag/WPmovies?src=hash\">#WPmovies</a></p>\n<p>&mdash; DerpPress (@DerpPress) <a href=\"https://twitter.com/DerpPress/status/482560988542414849\">June 27, 2014</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>Theme Hybritney Spears <a href=\"https://twitter.com/hashtag/wpthemebands?src=hash\">#wpthemebands</a></p>\n<p>&mdash; DerpPress (@DerpPress) <a href=\"https://twitter.com/DerpPress/status/566465222454829056\">February 14, 2015</a></p></blockquote>\n<p></p>\n<p>Who could forget Valentine’s Day 2015 when the illustrious Derp spontaneously broke out into verse?</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>Hover links are red&#10;Unvisited are blue&#10;All your links are purple&#10;Because I\'m following you</p>\n<p>&mdash; DerpPress (@DerpPress) <a href=\"https://twitter.com/DerpPress/status/566677833268097025\">February 14, 2015</a></p></blockquote>\n<p></p>\n<p>The person behind the account has yet to be unmasked. At the risk of putting his/her seemingly never-ending fountain of puns in jeopardy, do we really want to know DerpPress’ real identity?</p>\n<p>As part of our continual quest to find out who is behind the account, the Tavern reached out to DerpPress for an interview. Below are unedited answers to some of our burning questions and perhaps even a few clues pointing towards the mysterious voice behind the account.</p>\n<p><strong>1. When you created the DerpPress account, what was on your mind? Did you simply hope to have a few laughs? Or were you thinking, &#8220;WordPress needs its own satirical twitter account.&#8221;</strong></p>\n<p>Much more of the former than the latter. As I recall, the <a href=\"https://twitter.com/wphoneybadger\" target=\"_blank\">WP Honey Badger</a> was rather active back when I started the DerpPress account, so it wasn&#8217;t as though the WP community lacked for snarky subtweets. It wasn&#8217;t any sort of stated mission or anything &#8212; I primarily started it out as a way to gently rib bad WordPress coding practices and missteps (usermeat and such) and honestly it just evolved from there.</p>\n<p><strong>2. On Aug 2nd last year, you tweeted from what I can only assume was WordCamp NYC. To whom did you reveal yourself? How many people are aware of your true identity?</strong></p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"http://t.co/eOvMkN5Inu\">pic.twitter.com/eOvMkN5Inu</a></p>\n<p>&mdash; DerpPress (@DerpPress) <a href=\"https://twitter.com/DerpPress/status/495617532704083969\">August 2, 2014</a></p></blockquote>\n<p></p>\n<p>Yup, WCNYC. One person guessed it there. As for other folks who have acknowledged knowing it&#8217;s me: I know of one definite, two that I&#8217;m pretty sure have me nailed and another two who claim to know but I&#8217;m betting are guessing wrong.</p>\n<p><strong>3. What other WordCamps have you attended?</strong></p>\n<p>Quite a few.</p>\n<p><strong>4. What do you think of WordPress competitors like Ghost?</strong></p>\n<p>Ghost minus the hype is intriguing, but I think its reliance upon Node.js is the real short-term killer for competing against WP. It&#8217;s just not possible at this stage to find a decent shared host that will let you run Node, so it&#8217;s either self-hosting or expensive &#8220;professional&#8221; tier hosting (leaving aside their own hosted solution). It&#8217;s really hard to compete against WP&#8217;s simplicity and low, low, LOW system requirements.</p>\n<p>I&#8217;ve looked into Bolt a bit, I&#8217;ve always kept at least an eye on Drupal and Joomla!, and a few of the static site generators (Leeflets, Jekyll, etc.). While I like Markdown as much as the next web copywriter, those options are still a bit too fiddly for the mass market. My noodling-about shared hosting accounts are littered with the likes of Xoops, concrete5, MODx, Melody, Habari, heck, even a Textpattern install or two.</p>\n<p>WordPress is innovating, though, and in a way that many folks seem blind to &#8212; the WP-API. The intriguing part of the WP-API is that it will (theoretically) allow multiple other projects to either integrate existing WP installs into their flow or to dramatically &#8220;re-skin&#8221; WordPress. You could potentially have a Ghost-like dashboard, completely free of WP&#8217;s legacy, all driven off the API. It&#8217;s pretty exciting.</p>\n<p>Also, I miss having MovableType around to kick about.</p>\n<p><strong>5. Do you think that John O&#8217;Nolan characterized you unfairly in his post on <a href=\"http://john.onolan.org/open-source-culture/\" target=\"_blank\">open source culture</a>? Can you respond to his claims? Would you identify yourself as an open source cultural influencer?</p>\n<p><em>&#8220;Conversely, it’s sad to see a sometimes disparate culture in the WordPress core community. Anonymous twitter accounts like <a href=\"https://twitter.com/WordPreh\" target=\"_blank\">WordPreh</a> and <a href=\"https://twitter.com/DerpPress\" target=\"_blank\">DerpPress</a> spend all day, every day, mostly cutting down other people and projects. It’s like a niche version of Secret app. Regular ad hominem snark directed at people both inside and outside the WordPress community.&#8221;</em> &#8211; O&#8217;Nolan</strong></p>\n<p>An influencer? I certainly hope not.</p>\n<p>I think O&#8217;Nolan really misses my point. I know that there are lots of WP ecosystem ex-pats tooling about, some with axes to grind, but I do appreciate the ones who take the time to say &#8220;This is what I see is wrong with WP and here&#8217;s some constructive feedback&#8221;.</p>\n<p>That being said, the WordPress community can occasionally exhibit behavior best described as &#8220;hero worship&#8221;. It&#8217;s honestly a great thing for &#8220;rockstars&#8221; to make themselves available, but too often we find ourselves venerating folks for their position. I definitely subtweet a good deal and I really try not to take myself too seriously. I hope others do the same. This is all good-natured ribbing. (Except for when we take shots at Joomla!. Those are deadly serious.)</p>\n<p>There&#8217;s occasionally bouts of That&#8217;s Not Funnyism that runs rampant. I suggest a mild dose of Everyone Calm Down And Laugh A Bit.</p>\n<p><strong>6.  Were you disappointed by not making Torque&#8217;s list of <a href=\"http://torquemag.io/100-wordpress-influencers-follow-2015/\" target=\"_blank\">100 WordPress influencers</a>?</strong></p>\n<p>Absolutely no one should ever listen to me about anything. Ever.</p>\n<p><strong>7. Can you recommend some strategies for becoming a better WordPress professional?</strong></p>\n<p>See point #6. But in general: you should be attending Meetups and WordCamps, making connections, following interesting WP people on Twitter (and clicking the links they share), and working with WP in your spare time, if ever you have any. The best way to get better at anything WP is to practice, and to pay attention.</p>\n<p>Also: build a time machine and go back and study WordPress&#8217; history from the beginning.</p>\n<p><strong>8. Who would make a good replacement for Matt Mullenweg to lead WordPress and why?</strong></p>\n<p>Interesting question. I hear Steve Ballmer may have some free time on his hands as of late and&#8230;</p>\n<p>What?</p>\n<p>Oh. Well, it might be interesting if the respective heads of WordPress, Drupal, and Joomla! each took a year and a half and headed one of the other projects &#8212; Matt could head Joomla!, Dries could do WordPress, and, hmmm, I&#8217;m not sure who leads J!, but they could take Drupal. Bring some crazy outsider perspective to each, and maybe this way we&#8217;ll finally get proper request routing in WordPress.</p>\n<p><strong>9.  What are 5 crazy facts we&#8217;d never guess about you? (Please give us more clues, even if you need to obscure them in riddles)</strong></p>\n<ol>\n<li>I aspire to performing stand-up comedy at some point, but my appeal is so niche, Spinal Tap&#8217;s puppet show would attract a larger audience.</li>\n<li>I was chased by a snapping turtle once.</li>\n<li>My best friend is a Tiger.</li>\n<li>Since they changed the Zodiac signs, I have no idea what my sign is anymore.</li>\n<li>As a kid, I wanted to be an aerospace engineer designing the successor to the SR-71.</li>\n<li>I&#8217;ll not be bound by your rules or conventions!</li>\n<li>I am a sweater. Take that as you will.</li>\n<li>Oxford comma forever.</li>\n<li>Emoticons and emoji actually hurt to use, so sometimes Tweeting as this persona is painful. :)</li>\n</ol>\n<p><strong>10. What&#8217;s your favorite plugin?</strong></p>\n<p><a href=\"https://wordpress.org/plugins/markdown-on-save/\" target=\"_blank\">Markdown on Save</a></p>\n<p><strong>11. What&#8217;s your opinion on post formats? Are they dead?</strong></p>\n<p>They never really caught on in the first place. Since Tumblr seems to be fading, I would imagine their eventual replacement will be whatever Wix, Weebly, SquareSpace, or Medium make into the new hotness.</p>\n<p>Aesop&#8217;s take on front-end editing (Lasso) is intriguing and I&#8217;d LOVE to see story-building replace post formats as a core feature.</p>\n<p>Plus, live streaming is hot, so I guess we can expect Meerkat/Periscope/Twitch-alike functionality built into WP 4.4.</p>\n<p><strong>12. If you were to speak at a WordCamp, what would your topic be?</strong></p>\n<p>&#8220;If&#8221;? You&#8217;re assuming I&#8217;ve never done so. :)</p>\n<p>&#8220;Humo[u]r And Open Source: Why So Serious?&#8221;</p>\n<p>Maybe someday I&#8217;ll present a la why the lucky stiff. Who knows?</p>\n<p>PS: <a href=\"https://twitter.com/hashtag/WPmovies?src=hash\" target=\"_blank\">#WPMovies</a> was possibly the highlight of my Twitter experience thus far. I love you all deeply for it.</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, 31 Mar 2015 15:40: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:13:\"Sarah Gooding\";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:39:\"Matt: Calvin and Hobbes And Mindfulness\";s: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:21:\"http://ma.tt/?p=44901\";s: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:\"http://ma.tt/2015/03/calvin-and-hobbes-and-mindfulness/\";s: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:281:\"<p>Fun read by J.D. Andre: <a href=\"https://medium.com/@5rulesforlife/what-calvin-and-hobbes-taught-me-about-mindfulness-21f707245677\">What Calvin and Hobbes taught me about mindfulness</a>. I&#8217;ve been practicing daily <a href=\"http://www.calm.com/\">with the Calm app</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, 31 Mar 2015 04:23: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: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:24:\"Matt: Coworking Vacation\";s: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:21:\"http://ma.tt/?p=44862\";s: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:\"http://ma.tt/2015/03/coworking-vacation/\";s: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:197:\"<p>Cool distributed work article: <a href=\"http://qz.com/356977/why-i-decided-to-go-on-a-cowork-vacation-in-bali-for-a-month/\">Why I decided to go on a cowork vacation in Bali for a month </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, 30 Mar 2015 04:55: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: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:100:\"WPTavern: Mark Jaquith Releases Cache Buddy: A Plugin to Enhance Popular WordPress Caching Solutions\";s: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:\"http://wptavern.com/?p=41202\";s: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:109:\"http://wptavern.com/mark-jaquith-releases-cache-buddy-a-plugin-to-enhance-popular-wordpress-caching-solutions\";s: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:3985:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/speed.jpg\" rel=\"prettyphoto[41202]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/speed.jpg?resize=927%2C425\" alt=\"photo credit: SergioMonsalve - cc\" class=\"size-full wp-image-30119\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/seegioo/4334436675/\">SergioMonsalve</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-nd/2.0/\">cc</a>\n<p><a href=\"http://markjaquith.com/\" target=\"_blank\">Mark Jaquith</a>, one of the lead developers of WordPress, released <a href=\"https://wordpress.org/plugins/cache-buddy/\" target=\"_blank\">Cache Buddy</a> on WordPress.org over the weekend. His new plugin works alongside caching solutions, such as <a href=\"https://wordpress.org/plugins/wp-super-cache/\" target=\"_blank\">WP Super Cache</a>, <a href=\"https://wordpress.org/plugins/batcache/\" target=\"_blank\">Batcache</a>, and <a href=\"https://wordpress.org/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>, to enable WordPress to better serve cached pages to logged-in users.</p>\n<p>Jaquith knows just about everything there is to know about site optimization and caching techniques in WordPress. He recently gave a presentation at <a href=\"http://wptavern.com/wordcamp-london-2015-highlights-the-energy-in-the-uk-wordpress-scene-with-punk-wapuu-and-a-focus-on-non-profits\" target=\"_blank\">WordCamp London 2015</a>, entitled “<a href=\"http://www.slideshare.net/markjaquith/cache-money-business\" target=\"_blank\">Cache Money Business</a>” where he debuted the new plugin.</p>\n<p>He introduced Cache Buddy as &#8220;a companion for your WordPress page caching solution.&#8221; Ordinarily, when WordPress is serving pages to logged-in users or those with comment cookies, it cannot cache pages, even with popular caching plugins in place. Cache Buddy steps in to fill in the gap, allowing WordPress to serve a cached page to logged-in users by performing the following:</p>\n<ol>\n<li>Changes what paths logged-in cookies are set for (so they work in the WordPress backend, but don’t exist on the front of the site).</li>\n<li>Sets custom cookies with relevant information about the logged-in user, on the front of the site, making these cookies JavaScript-readable.</li>\n<li>Sets custom cookies for commenters (again, JavaScript-readable), and doesn’t set the normal WordPress comment cookies.</li>\n<li>Uses the information from these JavaScript cookies, plus some comment form magic, to recreate the comment form experience users would get from a dynamic page.</li>\n</ol>\n<p>By cutting down on the number of dynamic views (cache misses), the load on your sever is dramatically decreased. The toolbar will be hidden from Subscriber and Contributor users, but Authors, Editors, and Administrators will still see the toolbar and get dynamic views.</p>\n<p>Cache Buddy is ideal for sites that already have a caching solution in place and get lots of traffic but have no strict requirements on providing dynamic views. Jaquith summarized the kinds of sites for which Cache Buddy will not be useful:</p>\n<blockquote><p>If you have a BuddyPress site or an e-commerce site, you may honestly need WordPress logged-in cookies available on the front of your site. But if you’re just running a blog/CMS site with a significant number of commenters and logged-in Subscribers, this plugin could massively speed up your site, because requests that had to always be dynamic before, can now be served from a page cache.</p></blockquote>\n<p><a href=\"https://wordpress.org/plugins/cache-buddy/\" target=\"_blank\">Cache Buddy</a> is available to download for free from WordPress.org. To learn more about how it works, check out Jaquith&#8217;s <a href=\"https://markjaquith.wordpress.com/2015/03/27/cache-buddy/\" target=\"_blank\">post introducing the plugin</a>, as well as his <a href=\"http://www.slideshare.net/markjaquith/cache-money-business\" target=\"_blank\">slides</a> from WordCamp London 2015.</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, 30 Mar 2015 04:07:16 +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:\"Sarah Gooding\";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:77:\"Post Status: Andrew Nacin has joined the White House’s U.S. Digital Service\";s: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=12083\";s: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://poststatus.com/andrew-nacin-has-joined-the-white-houses-u-s-digital-service/\";s: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:6238:\"<p>Andrew Nacin hasn&#8217;t worked at <a href=\"http://audrey.co/\">Audrey Capital</a> since January. At Audrey, he has worked for more than four years for WordPress co-founder Matt Mullenweg, exclusively on the WordPress project. He has <a href=\"http://nacin.com/2015/03/29/us-digital-service/\">joined the White House’s new U.S. Digital Service</a>.</p>\n<p><a href=\"https://www.whitehouse.gov/digital/united-states-digital-service\">The U.S. Digital Service</a> is a new organization that operates from the White House, with an aim to modernize and transform the way the federal government operates digitally.</p>\n<blockquote><p>When I was approached, I have to admit that I was nervous to step back from the day-to-day buzz of WordPress because I’ve invested so much. But the community stepped up, in most cases not even knowing about my life change. That’s the beauty of open source, and the fantastic WordPress community in particular. WordPress continues to play an important role in my life. With <a href=\"http://ma.tt\">Matt Mullenweg</a>’s support and encouragement, I’m taking time away from Audrey, where I’ve worked since 2010. I’m still actively involved in the project, just not full time.</p></blockquote>\n<p>Those that are aware of WordPress core development and Nacin’s role in it, know that he’s enormously influential on the project. He’s lead developer for WordPress and has worked full-time or more than full-time exclusively on WordPress for years. He lead WordPress 3.5, 3.7, and 3.9 in a span of two years. In 2014, Nacin spent a lot of time on security related projects, and he&#8217;s always been heavily involved in a variety of WordPress.org website projects.</p>\n<h3>The year of delegation</h3>\n<p>Nacin spent much of 2014 attempting to make himself replaceable. No software project is healthy if there is one person that is so indispensable that if they were no longer involved the project would be severely burdened.</p>\n<p>From security, to internationalization efforts, to leading releases, to managing the WordPress.org website, Nacin has altered his role throughout the year to empower other contributors to do the type of work he was doing.</p>\n<p>His transfer to the U.S. Digital Service just happened to be good timing with this effort. The perfect testament is that he’s been working full time with the U.S. Digital Service since January and the large majority of the WordPress core development community has had no idea.</p>\n<p>Some may be concerned about what happens without Nacin full time on core. The answer is that “business as usual” will happen, and is already happening.</p>\n<h3>About the U.S. Digital Service</h3>\n<p><span class=\"pullquote alignright\">Members of the U.S. Digital Service come from all over the country and some of the top tech companies in the world.</span> Facebook, Twitter, Amazon, Google, and Microsoft are among them. They work on small teams and embed into troubled federal projects to help test, triage, and transform them to success. Wired has a great in-depth article on <a href=\"http://www.wired.com/2014/08/healthcare-gov/\">how the organization works</a>. The team was established in the wake of the Healthcare.gov disaster, and they’re taking the success they had fixing Healthcare.gov across the government.</p>\n<p>Nacin is on one of these teams, and it’s hard to imagine a more perfect fit. Those that follow him <a href=\"https://twitter.com/nacin\">on Twitter</a> or know him in person can see his passion for government. He also lives in DC and has friends in various parts of government.</p>\n<blockquote><p>It’s my nature to look for the hardest problems to solve. I like to take on big challenges and spend every ounce of energy working to solve them. I believe in what we’re doing here. The stakes are high. No matter the challenge, I know what we’re doing will change millions of lives.</p></blockquote>\n<h3>A changing role</h3>\n<p>He’ll be away from Audrey for his stint in government. At some point, he may come back to Audrey and resume his work. It’s actually a preferred method of employment for many members of the U.S. Digital Service. Many of the team members are leaving lucrative jobs to work for the government, which has many restrictions that had to be overcome.</p>\n<p>They even <a href=\"http://www.wired.com/2014/08/the-white-house-dickerson/\">make exceptions on how they dress</a>. The program is designed for members of the U.S. Digital Service to have flexible employment, where they work for six months, or maybe a year, and then they return to the private sector. They may even rotate into the U.S. Digital Service multiple times.</p>\n<p>In his <a href=\"http://nacin.com/2015/03/29/us-digital-service/\">announcement post</a>, Nacin advocates for others to consider <a href=\"https://www.whitehouse.gov/digital/united-states-digital-service#section-join\">joining the U.S. Digital Service</a>. I think it would be incredible if more WordPress developers were involved at that level of government, and it would be a further testament to open source&#8217;s standing in the government community &#8212; a sector that was slow to adopt open technology but now is doing so regularly.</p>\n<p>WordPress lead developers are not always full time on WordPress. Mark Jaquith has never been full time on the project. It is more important that they can guide the project, but being a lead developer doesn’t mean writing code for WordPress every day. It means steering the ship, and that’s what Nacin and the other lead developers do day to day.</p>\n<p>I’m really excited for Nacin, and I think it’s great for the project. The amount he will learn and engage with the U.S. Digital Service will make him an even better WordPress lead developer. The U.S. Digital Service is also one of the most exciting government initiatives I&#8217;ve ever seen.</p>\n<p>You can learn more about his decision to join <a href=\"http://nacin.com/2015/03/29/us-digital-service/\">on his blog</a>, and learn more about the U.S. Digital Service <a href=\"https://www.whitehouse.gov/digital/united-states-digital-service/\">on their website</a>.</p>\n<p><em>Photo credit: <a href=\"http://kldn.net\">Vladimir Petkov</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:\"Sun, 29 Mar 2015 17:56:11 +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:\"Brian Krogsgard\";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:68:\"Andrew Nacin: I’ve joined the White House’s U.S. Digital Service\";s: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=4297\";s: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:\"http://nacin.com/2015/03/29/us-digital-service/\";s: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:\"<blockquote><p>The need for effective government services is rising, while confidence in our ability to deliver them is dropping. More than ever, day-to-day interactions with government are powered by digital systems, and yet far too many Federal IT projects arrive late or over budget. Others are simply abandoned. These failures are often felt by those who count on it most — working class Americans and people who turn to government in a moment of need.<br />\n<cite>The U.S. Digital Service on <a href=\"https://www.whitehouse.gov/digital/united-states-digital-service/story\">whitehouse.gov</a></cite></p></blockquote>\n<p>When you&#8217;re presented with an opportunity to help transform how the federal government works for the American people, it&#8217;s really hard to say no.</p>\n<p>For five years and counting, I&#8217;ve had the honor and privilege as a lead developer of WordPress to play a role in a large, incredible movement to democratize publishing. From my home in D.C., I&#8217;ve closely watched <a href=\"http://www.data.gov/\">open data</a> and <a href=\"https://m.whitehouse.gov/blog/2014/06/02/ostp-s-own-open-government-plan\">open government efforts</a>. <a href=\"http://nacin.com/2014/03/24/an-hour-to-make-government-better/\">I feel very strongly</a> about an open, transparent, and efficient government — boosted in no small part by WordPress and open source.</p>\n<p>I&#8217;ve long admired a number of my new teammates, especially <a href=\"http://www.nextgov.com/cio-briefing/2015/03/meet-digital-service-guru-whos-helping-new-recruits-navigate-federal-bureaucracy/107148/\">Erie Meyer</a>, <a href=\"http://apieconomist.com/blog/2013/4/10/6h6gntzp6twfuw4zwrzu0j43u0o80p\">Gray Brooks</a>, and <a href=\"http://fcw.com/articles/2014/12/02/getting-started-at-usds.aspx\">Haley van Dyck</a>, for years of tenacity and hard work trying to change government from the inside out. <span>I&#8217;ve always felt I could be more effective helping government from the outside, by continuing to work on WordPress. </span><span>After all, we&#8217;ve all heard horror </span><span>stories of all sorts of red tape, from hiring to procurement and everything in between. And we&#8217;ve all heard how difficult government itself makes it to launch good government digital services. While many of us may have have wanted to help, few thought they could. Fewer knew how.</span></p>\n<p>But then the U.S. Digital Service was formed, from <a href=\"http://wired.com/2014/08/healthcare-gov/\">the team that helped rescue healthcare.gov</a>. It&#8217;s dedicated to tackling some of government&#8217;s most pressing problems, ones that directly affect millions of people&#8217;s lives.<strong> </strong>The formula is simple: take what helped turn around healthcare.gov and <a href=\"http://playbook.cio.gov\">apply it</a> to other high priority projects across government.</p>\n<p>In this day and age, public policy must be backed by effective technology to succeed. The American people need our help and our government has asked us to serve, as <a href=\"https://www.whitehouse.gov/digital/united-states-digital-service#section-join\">doers and makers, creative thinkers, and specialized technologists dedicated to untangling, rewiring, and redesigning our government</a>.</p>\n<p>In January, I joined the U.S. Digital Service.</p>\n<p>When I was approached, I have to admit that I was nervous to step back from the day-to-day buzz of WordPress because I&#8217;ve invested so much. But the community stepped up, in most cases not even knowing about my life change. That&#8217;s the beauty of open source, and the fantastic WordPress community in particular. WordPress continues to play an important role in my life. With <a href=\"http://ma.tt/\">Matt Mullenweg</a>’s support and encouragement, I&#8217;m taking time away from Audrey, where I&#8217;ve worked since 2010. I&#8217;m still actively involved in the project, just not full time.</p>\n<p>The U.S. Digital Service is the real deal. I&#8217;ve been astounded by the impact we&#8217;ve already made. We&#8217;ve recruited <a href=\"https://www.whitehouse.gov/blog/2015/03/19/president-obama-names-david-recordon-director-white-house-information-technology\">some</a> <a href=\"http://www.washingtonpost.com/blogs/the-switch/wp/2014/09/04/white-house-names-googles-megan-smith-the-next-chief-technology-officer-of-the-united-states/\">of</a> <a href=\"https://www.whitehouse.gov/blog/2014/08/20/day-one-mikey-dickerson-us-digital-service-administrator\">the</a> <a href=\"https://www.whitehouse.gov/blog/2015/02/18/white-house-names-dr-dj-patil-first-us-chief-data-scientist\">best</a> <a href=\"https://www.whitehouse.gov/blog/2015/02/05/next-us-chief-information-officer\">and</a> <a href=\"https://medium.com/@USDigitalService/why-i-joined-the-u-s-digital-service-24c6682afce2?source=latest\">brightest</a>. Don&#8217;t just take my word for it — do what you can to <a href=\"https://medium.com/@USDigitalService/mikey-dickerson-to-sxsw-why-we-need-you-in-government-f31dab3263a0\">learn more about this movement</a> and <a href=\"http://www.whitehouse.gov/us-digital-service\">come help us make government better</a>. If you haven&#8217;t seen <a href=\"https://www.whitehouse.gov/digital/united-states-digital-service\">this video</a> yet, take a look. (A few of you have noticed me in the background.)</p>\n<p>It&#8217;s my nature to look for the hardest problems to solve. I like to take on big challenges and spend every ounce of energy working to solve them. I believe in what we&#8217;re doing here. The stakes are high. No matter the challenge, I know what we&#8217;re doing will change millions of lives.</p>\n<p>I thought I had made the most of my decade in D.C. I&#8217;ve witnessed a lot of history. I knew I&#8217;d have some great stories to tell my future kids and grandkids. <em>I was there. I saw it.</em> That was only the beginning.</p>\n<p></p>\n<p class=\"share-sfc-stc\"><a href=\"http://twitter.com/share?url=http%3A%2F%2Fwp.me%2FpQEdq-17j&count=vertical&related=nacin&text=I\'ve joined the White House\'s U.S. Digital Service\" class=\"twitter-share-button\"></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, 29 Mar 2015 17:25: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:12:\"Andrew Nacin\";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:29:\"Matt: US memory championship.\";s: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:21:\"http://ma.tt/?p=44786\";s: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:44:\"http://ma.tt/2015/03/us-memory-championship/\";s: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:486:\"<blockquote><p>To attain the rank of grand master of memory, you must be able to perform three seemingly superhuman feats. You have to memorize 1,000 digits in under an hour, the precise order of 10 shuffled decks of playing cards in the same amount of time, and one shuffled deck in less than two minutes.</p></blockquote>\n<p>Ever wondered <a href=\"http://www.slate.com/articles/news_and_politics/dispatches/2005/03/forget_me_not.html\">how to win the U.S. memory championship</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, 29 Mar 2015 04:00: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: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:32:\"Matt: GNU Manifesto Turns Thirty\";s: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:21:\"http://ma.tt/?p=44879\";s: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:\"http://ma.tt/2015/03/gnu-manifesto-turns-thirty/\";s: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:182:\"<p>The New Yorker has a great overview as <a href=\"http://www.newyorker.com/business/currency/the-gnu-manifesto-turns-thirty\">Richard Stallman’s GNU Manifesto Turns Thirty</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 Mar 2015 04:32: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: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:83:\"WPTavern: Slack Adds Two-Factor Authentication Support After Recent Security Breach\";s: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:\"http://wptavern.com/?p=41197\";s: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:\"http://wptavern.com/slack-adds-two-factor-authentication-support-after-recent-security-breach\";s: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:2859:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/slack-logo.jpg\" rel=\"prettyphoto[41197]\"><img class=\"aligncenter size-full wp-image-33466\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/slack-logo.jpg?resize=700%2C314\" alt=\"slack-logo\" /></a><a title=\"https://slack.com/\" href=\"https://slack.com/\">Slack</a>, which is used by thousands of people world-wide to communicate, recently <a title=\"http://slackhq.com/post/114696167740/march-2015-security-incident-and-launch-of-2fa\" href=\"http://slackhq.com/post/114696167740/march-2015-security-incident-and-launch-of-2fa\">suffered a security breach</a>. According to Slack, the breach occurred during a four-day period in February.</p>\n<p>Hackers gained access to a central database used to store user names, email addresses, and one-way encrypted (“hashed”) passwords. In addition, the database contains information that users may have optionally added to their profiles such as phone number and Skype ID.</p>\n<p>Slack uses <a title=\"http://en.wikipedia.org/wiki/Bcrypt\" href=\"http://en.wikipedia.org/wiki/Bcrypt\">bcrypt</a> with a randomly generated salt per-password that according to Slack, &#8220;makes it computationally infeasible that your password could be recreated from the hashed form.&#8221; No financial data was compromised and so far, the company hasn&#8217;t found any evidence that the hackers were able to decrypt the stored passwords.</p>\n<h2>Two New Security Options</h2>\n<p>Slack has launched two new features for individuals and team owners to help increase security. The first is <a title=\"http://en.wikipedia.org/wiki/Two_factor_authentication\" href=\"http://en.wikipedia.org/wiki/Two_factor_authentication\">Two-Factor authentication</a>. Slack has a <a title=\"https://slack.zendesk.com/hc/en-us/articles/204509068\" href=\"https://slack.zendesk.com/hc/en-us/articles/204509068\">detailed guide</a> that explains how to configure 2FA for your account. When you enable 2FA, you&#8217;ll be prompted to enter a verification code in addition to your normal password whenever you sign in.</p>\n<p>The second is a “<a title=\"https://my.slack.com/admin/auth#password_reset\" href=\"https://my.slack.com/admin/auth#password_reset\">Password Kill Switch</a>” for team owners. The kill switch allows for instantaneous team-wide resetting of passwords and forced termination of all user sessions for all team members. This means that everyone is signed out of your Slack team, in all apps and on all devices.</p>\n<h2>Enable 2FA Where Possible</h2>\n<p>Users are highly encouraged to enable 2FA on Slack and on any other service that supports it. To learn more about Slack&#8217;s security principles, including how to report security vulnerabilities, check out their <a title=\"https://slack.com/security\" href=\"https://slack.com/security\">security page</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, 27 Mar 2015 18:51: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:13:\"Jeff Chandler\";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:70:\"Post Status: The Excerpt Episode 2 — WordPress news with Julie Kuehl\";s: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=12067\";s: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://poststatus.com/the-excerpt-episode-2-wordpress-news-with-julie-kuehl/\";s: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:2288:\"<p>Welcome to <a href=\"https://poststatus.com/category/draft/the-excerpt/\">The Excerpt</a>, part of the <a href=\"https://poststatus.com/category/draft/\">Post Status Draft podcast</a>, which you can also find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>. Draft consists of two formats: long form interviews like I’ve done for a long time, and The Excerpt for a summary of news around the WordPress ecosystem.</p>\n<p>With The Excerpt, we cover a few of our favorite stories from the <a title=\"Post Status Membership Club\" href=\"https://poststatus.com/club/\">Post Status Club</a> over the last week or two. The primary goal is to keep it short and informational: we keep the podcast to 15 minutes.</p>\n<p>Content covered in The Excerpt will largely be samples from the members only content, but may also cover free articles and resources. You don’t have to be a member to enjoy The Excerpt, but it is a nice way to preview what members get every day.</p>\n<p>Here’s Episode 2, which <a href=\"https://poststatus.com/profiles/julie-kuehl/\">Julie Kuehl</a> hosted with me:</p>\n<a href=\"http://audio.simplecast.fm/9511.mp3\">http://audio.simplecast.fm/9511.mp3</a>\n<p><a href=\"http://audio.simplecast.fm/9511.mp3\">Direct Download</a></p>\n<ul>\n<li>Shiny Installs removed from 4.2, in Beta 3 release, (<a href=\"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/\">Beta release</a> and <a href=\"http://aaron.jorb.in/blog/2015/03/auto-activating-wordpress-plugins-is-the-right-choice/\">Aaron&#8217;s post</a>).</li>\n<li><a href=\"https://poststatus.com/notes/wp-engine-and-pagely-taking-different-routes-but-both-are-growing/\">Pagely and WP Engine are growing.</a></li>\n<li><a href=\"https://poststatus.com/notes/finding-your-place/ \">Finding your place</a>, by <a href=\"http://heropress.com/essays/finding-your-place/\">Rarst on HeroPress</a></li>\n<li><a href=\"https://poststatus.com/notes/version-1-2-of-the-wordpress-rest-api-released/\">1.2 of the REST API</a> (<a href=\"https://make.wordpress.org/core/2015/03/24/wp-rest-api-version-1-2/\">Original release post</a>).</li>\n<li>Partner feature: <a href=\"https://genesisdesignpro.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Design Palette Pro</a>.</li>\n</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:\"Fri, 27 Mar 2015 15:27: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:15:\"Brian Krogsgard\";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:58:\"WPTavern: Enhanced Plugin Installs Axed From WordPress 4.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=41191\";s: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:\"http://wptavern.com/enhanced-plugin-installs-axed-from-wordpress-4-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:2966:\"<p>A few days ago, <a title=\"http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process\" href=\"http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process\">we highlighted</a> how WordPress 4.2 radically improves the installation and update process for plugins. Several readers <a title=\"http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process#comments\" href=\"http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process#comments\">commented on the article</a> expressing that automatically activating plugins after installation is a bad idea. A decision was made during the March 25th, WordPress core developer chat to remove enhanced plugin installs from WordPress 4.2 and punt it to a future release. However, enhanced plugin updates will remain in WordPress 4.2.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginUpdateRoutine.gif\" rel=\"prettyphoto[41191]\"><img class=\"size-full wp-image-41064\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginUpdateRoutine.gif?resize=837%2C688\" alt=\"New Plugin Update Routine\" /></a>New Plugin Update Routine\n<p>It&#8217;s uncommon for functionality to be removed from WordPress this late in the development cycle. Drew Jaynes, who is <a title=\"http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2\" href=\"http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2\">leading the 4.2 release cycle,</a> explains that the feature just isn&#8217;t ready.</p>\n<blockquote><p>Prudence demands that we decide whether to do things now vs do things right. In this case, we want to make sure we handle the user experience of activating plugins after installation the right way for most use cases. So we still have &#8216;Shiny Updates&#8217;, but we&#8217;re going to have to fall back and regroup on &#8216;Shiny Installs&#8217;.</p></blockquote>\n<p>On the Make WordPress core blog, <a title=\"https://make.wordpress.org/core/2015/03/25/dev-chat-agenda-march-25-2015/#comment-25391\" href=\"https://make.wordpress.org/core/2015/03/25/dev-chat-agenda-march-25-2015/#comment-25391\">Aaron Jorbin outlined three issues</a> caused by auto activating plugins.</p>\n<ol>\n<li>Plugins that require after activation steps (such as connecting to Jetpack or Google Analytics, updating permalinks for BuddyPress, etc) aren’t obvious. We need a way for plugins to provide a notice upon activation that shows what to do next.</li>\n<li>Since the menu isn’t updated, users still need to do a page refresh in order for the changes to actually go in effect and for them to use the features of many plugins.</li>\n<li>There are plugins such as maintenance mode ones that users will not want to be activated right away.</li>\n</ol>\n<p>The idea of installing plugins inline is sound, but until the user experience issues are addressed, the plugin install process will remain the same.</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 Mar 2015 20:50: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:13:\"Jeff Chandler\";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:71:\"WPTavern: WPWeekly Episode 185 – Turning The Page With Joshua Strebel\";s: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:44:\"http://wptavern.com?p=41184&preview_id=41184\";s: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:\"http://wptavern.com/wpweekly-episode-185-turning-the-page-with-joshua-strebel\";s: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:2714:\"<p>In this episode of WordPress Weekly, <a title=\"http://marcuscouch.com/\" href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by Joshua Strebel, CEO of <a title=\"https://pagely.com/\" href=\"https://pagely.com/\">Pagely</a>. We learn how Pagely was founded and the advantages of being an independently owned company. Strebel explains how he&#8217;s managed <a title=\"https://pagely.com/blog/2015/03/pagely-is-scaling-up/\" href=\"https://pagely.com/blog/2015/03/pagely-is-scaling-up/\">Pagely&#8217;s rapid growth</a> while maintaining exceptional service. Last but not least, we discuss the competitive nature and lack of integrity throughout the webhosting industry.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign\" href=\"http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign\">Pods Lead Developer Scott Kingsley Clark Launches “Friends of Pods” Funding Campaign</a><br />\n<a title=\"http://wptavern.com/heropress-publishes-its-first-essay-finding-your-place-by-andrey-savchenko\" href=\"http://wptavern.com/heropress-publishes-its-first-essay-finding-your-place-by-andrey-savchenko\">HeroPress Publishes its First Essay “Finding Your Place” by Andrey Savchenko</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title=\"https://wordpress.org/plugins/plugins-speed-test/\" href=\"https://wordpress.org/plugins/plugins-speed-test/\">Plugins Speed Test</a> shows the impact installed plugins have on your site&#8217;s speed.</p>\n<p><a title=\"https://wordpress.org/plugins/disable-emojis/\" href=\"https://wordpress.org/plugins/disable-emojis/\">Disable Emojis</a> disables the new emoji functionality in WordPress 4.2.</p>\n<p><a title=\"https://wordpress.org/plugins/auto-post-fb-comment/\" href=\"https://wordpress.org/plugins/auto-post-fb-comment/\">Auto Post FB Comment</a> embeds a Facebook comment form on your blog and automatically inserts a user&#8217;s comment to the WordPress database.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 1st 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #185:</strong><br />\n</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 Mar 2015 19:46:43 +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:\"Jeff Chandler\";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:18:\"Matt: Tokyo Meetup\";s: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:21:\"http://ma.tt/?p=44887\";s: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:34:\"http://ma.tt/2015/03/tokyo-meetup/\";s: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:361:\"<p>Are you in or near Tokyo? I&#8217;m going to be in town and doing a meetup this Sunday, and I&#8217;m looking forward to hanging out with the local community. I&#8217;m told you can read about it on this link: <a href=\"https://wbtokyo.doorkeeper.jp/events/22595\">WordBench東京 3月スペシャル『春のマット祭り』 &#8211; WordBench東京</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, 26 Mar 2015 16:51: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: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: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:21:\"Matt: DNS Performance\";s: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:21:\"http://ma.tt/?p=44867\";s: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:37:\"http://ma.tt/2015/03/dns-performance/\";s: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:167:\"<p><a href=\"http://www.dnsperf.com/\">DNSPerf is a cool service that measures the speed of different DNS providers</a>, Cloudflare and WordPress.com rank very well.</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 Mar 2015 03:23: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: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:99:\"WPTavern: How to Get Your WordPress Site Ready for Google’s New Mobile-Friendly Ranking Algorithm\";s: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:\"http://wptavern.com/?p=40825\";s: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:106:\"http://wptavern.com/how-to-get-your-wordpress-site-ready-for-googles-new-mobile-friendly-ranking-algorithm\";s: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:4679:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile.jpg\" rel=\"prettyphoto[40825]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile.jpg?resize=1025%2C498\" alt=\"mobile\" class=\"aligncenter size-full wp-image-41171\" /></a></p>\n<p>The <a href=\"https://make.wordpress.org/themes/2015/03/18/mobile-friendly-themes/\" target=\"_blank\">WordPress Theme Review team</a> is encouraging all theme authors to take notice of <a href=\"http://googlewebmastercentral.blogspot.co.uk/2015/02/finding-more-mobile-friendly-search.html\" target=\"_blank\">Google&#8217;s upcoming change to its ranking algorithm</a>, which will be put in place at the end of April:</p>\n<blockquote><p>Starting April 21, we will be expanding our use of mobile-friendliness as a ranking signal. This change will affect mobile searches in all languages worldwide and will have a significant impact in our search results. Consequently, users will find it easier to get relevant, high quality search results that are optimized for their devices.</p></blockquote>\n<p>You can find out if your site is ready by testing it with the <a href=\"https://www.google.com/webmasters/tools/mobile-friendly/\" target=\"_blank\">mobile-friendly testing tool</a> created by Google. It will give you a rough idea of how the Googlebot views your pages.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile-friendly-test.png\" rel=\"prettyphoto[40825]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile-friendly-test.png?resize=1025%2C495\" alt=\"mobile-friendly-test\" class=\"aligncenter size-full wp-image-41152\" /></a></p>\n<p>Google Webmaster Tools has a new Mobile Usability Report that will also give you a more detailed breakdown of any mobile usability issues with your site.</p>\n<p>Although Google hasn&#8217;t published an exact guide to how the new ranking algorithm will work, it provides a <a href=\"https://developers.google.com/webmasters/mobile-sites/mobile-seo/\" target=\"_blank\">guide for mobile SEO</a>. The documentation for the <a href=\"https://developers.google.com/web/fundamentals/principles/\" target=\"_blank\">Principles of Site Design on Web Fundamentals</a> is also a great resource with practical suggestions for making your site better for mobile users.</p>\n<p>Google also created a mobile-friendliness <a href=\"https://developers.google.com/webmasters/mobile-sites/website-software/wordpress\" target=\"_blank\">guide specifically for WordPress users</a>. It encourages site admins to update to the latest version of WordPress and to use a theme that that is mobile-friendly.</p>\n<p>If you want to test your site on various mobile devices, the Google Chrome browser has a “<a href=\"https://developer.chrome.com/devtools/docs/device-mode\" target=\"_blank\">mobile device emulation</a>” feature that can be found under the &#8220;Developer Tools&#8221; menu.</p>\n<h3>Find a Responsive WordPress Theme</h3>\n<p>Out of the 3,000+ themes listed on in the official directory, filtering by &#8220;<a href=\"https://wordpress.org/themes/tags/responsive-layout/\" target=\"_blank\">Responsive Layout</a>&#8221; under &#8220;Features&#8221; currently returns only 947 themes. This doesn&#8217;t necessarily mean that 2/3 of themes hosted on WordPress.org are not responsive. These are simply the ones that have been tagged with &#8220;Responsive Layout.&#8221;</p>\n<p>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2015/03/18/mobile-friendly-themes/\" target=\"_blank\">posted a notice</a> about the update to encourage developers to examine their themes for mobile-readiness ahead of time. If your theme is not responsive, Emil Uzelac suggests adding responsive media queries:</p>\n<blockquote><p>Mobile-Friendly can be a Responsive design, but also an App that turns your theme into a “mobile version”.</p>\n<p>Since we don’t accept themes with mobile Apps because that would fall into a plugin territory, our choice is Responsive and media queries instead of browser sniffing tools.</p>\n<p>Now, for the mobile-friendliness, responsive media queries will be enough and that is the very basic to be qualified as “mobile-friendly”.</p></blockquote>\n<p>Not all WordPress.org theme developers will be willing to update their themes with a responsive layout, as some of them are abandoned and no longer maintained. If your theme is failing Google&#8217;s mobile friendly test, the most important change you can make is to update to a theme with a responsive layout. Even if site ranking and SEO are not important to your objectives, improving the experience for mobile users should be enough motivation to make the change.</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 Mar 2015 01:16:57 +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:\"Sarah Gooding\";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:90:\"WPTavern: HeroPress Publishes its First Essay “Finding Your Place” by Andrey Savchenko\";s: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:\"http://wptavern.com/?p=41151\";s: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:\"http://wptavern.com/heropress-publishes-its-first-essay-finding-your-place-by-andrey-savchenko\";s: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:1889:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/heropress.jpg\" rel=\"prettyphoto[41151]\"><img class=\"aligncenter size-full wp-image-37733\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/heropress.jpg?resize=956%2C423\" alt=\"heropress\" /></a>Despite not hitting his <a title=\"http://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline\" href=\"http://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline\">funding goal of $60k</a>, Topher DeRosia took the feedback and support he received and <a title=\"http://heropress.com/heropress-rising/\" href=\"http://heropress.com/heropress-rising/\">moved forward</a> with the <a title=\"http://heropress.com/\" href=\"http://heropress.com/\">HeroPress project</a>. HeroPress now focuses on delivering information through text and images instead of video which significantly decreases costs. It also provides more translation opportunities as it&#8217;s easier to translate text versus video.</p>\n<p>Although the project has new life, its mission remains the same: T<em>o develop the WordPress heroes of the world by sharing the accumulated wisdom of the community</em>.</p>\n<p>HeroPress has taken its first step in accomplishing this mission by publishing an essay by <a title=\"http://rarst.net/\" href=\"http://rarst.net/\">Andrey “Rarst” Savchenko</a> entitled, “<a title=\"Finding Your Place\" href=\"http://heropress.com/essays/finding-your-place/\">Finding Your Place</a>”. The essay describes Savchenko&#8217;s journey in finding his place within the WordPress community.</p>\n<p>It&#8217;s an inspiring read filled with peaks, valleys, and sound advice. If the first essay is any indication of what to expect out of HeroPress, I think the WordPress community is in for a treat. I for one can&#8217;t wait to read the next one.</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, 25 Mar 2015 21:31: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:72:\"WPTavern: ThemeReview.co Earns Recommendations by StudioPress and Envato\";s: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:\"http://wptavern.com/?p=41136\";s: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:\"http://wptavern.com/themereview-co-inks-strategic-deal-with-studiopress-and-envato\";s: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:1413:\"<p><a title=\"http://themereview.co/\" href=\"http://themereview.co/\">ThemeReview.co</a>, the theme review service <a title=\"http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service\" href=\"http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service\">started by Emil Uzelac</a> and Justin Tadlock earlier this year, <a title=\"http://justintadlock.com/archives/2015/03/18/now-offering-professional-theme-reviews\" href=\"http://justintadlock.com/archives/2015/03/18/now-offering-professional-theme-reviews\">announced</a> StudioPress and Envato both recommend using its service. Those who create themes for Genesis or ThemeForest can now have them reviewed by both before selling them in the marketplace.</p>\n<p>Themes developed for ThemeForest that are reviewed by Uzelac and Tadlock will receive a secondary review by the ThemeForest theme review team. Since both Uzelac and Tadlock are senior reviewers for the <a title=\"https://wordpress.org/themes/\" href=\"https://wordpress.org/themes/\">WordPress.org theme directory</a>, reviewed themes are more likely to do things the WordPress way instead of locking users in.</p>\n<p>ThemeReview.co is only three months old, but partnering with the largest WordPress theme marketplace ought to provide an unlimited amount of business. The question is, will ThemeForest authors spend the money to have their themes reviewed by a third-party?</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, 25 Mar 2015 20:48: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:\"Jeff Chandler\";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:58:\"WPTavern: Take The “How Do You Learn WordPress” 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:28:\"http://wptavern.com/?p=41127\";s: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:\"http://wptavern.com/take-the-how-do-you-learn-wordpress-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:2204:\"<p>WordPress trainer and coach, Bob Dunn, <a title=\"http://bobwp.com/how-do-you-learn-wordpress-a-survey/\" href=\"http://bobwp.com/how-do-you-learn-wordpress-a-survey/\">wants to know</a> how you learn WordPress. Once the survey concludes, Dunn will publish the results in an infographic.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LearnWordPressSurveyQuestions.png\" rel=\"prettyphoto[41127]\"><img class=\"size-full wp-image-41128\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LearnWordPressSurveyQuestions.png?resize=814%2C429\" alt=\"Survey Questions\" /></a>Survey Questions\n<p>With so many options available to learn WordPress, I&#8217;m interested to see which method comes out on top. I learned WordPress by trial and error and using tutorials I found through Google. I also used the <a title=\"http://codex.wordpress.org/Main_Page\" href=\"http://codex.wordpress.org/Main_Page\">WordPress Codex</a> as my go-to resource since there weren&#8217;t many educational resources in 2006-2007. These days, users have plenty of options to learn WordPress through trainers like Dunn, <a title=\"http://wordpress.tv\" href=\"http://wordpress.tv\">WordPress.tv</a>, <a title=\"http://central.wordcamp.org/\" href=\"http://central.wordcamp.org/\">WordCamps</a>, and hundreds of free tutorials.</p>\n<p>If you learn best by reading, I highly encourage you to check out the following handbooks, which are condensed guides focused on a specific subject. Keep in mind that they&#8217;re works in progress.</p>\n<ul>\n<li><a title=\"https://developer.wordpress.org/plugins/intro/\" href=\"https://developer.wordpress.org/plugins/intro/\">Plugin Handbook</a></li>\n<li><a title=\"https://developer.wordpress.org/themes/getting-started/\" href=\"https://developer.wordpress.org/themes/getting-started/\">Theme Handbook</a></li>\n<li><a title=\"https://make.wordpress.org/core/handbook/\" href=\"https://make.wordpress.org/core/handbook/\">WordPress Core Handbook</a></li>\n<li><a title=\"https://make.wordpress.org/support/handbook/\" href=\"https://make.wordpress.org/support/handbook/\">Support Handbook </a></li>\n</ul>\n<p>Share your guides, techniques, and resources for learning WordPress in the comments.</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, 25 Mar 2015 18:25: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:13:\"Jeff Chandler\";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:53:\"WPTavern: Shortcake Is Now a WordPress Feature 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:28:\"http://wptavern.com/?p=40867\";s: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:63:\"http://wptavern.com/shortcake-is-now-a-wordpress-feature-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:5145:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake.jpg\" rel=\"prettyphoto[40867]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake.jpg?resize=1024%2C502\" alt=\"photo credit: kendiala - cc\" class=\"size-full wp-image-33434\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/kendiala/97929388/\">kendiala</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a>\n<p>Shortcake, a <a href=\"http://wptavern.com/shortcake-a-ui-for-wordpress-shortcodes\" target=\"_blank\">plugin that adds a UI to make shortcodes more user friendly</a>, is now an official <a href=\"https://make.wordpress.org/core/features-as-plugins/\" target=\"_blank\">WordPress feature plugin</a>. The project is led by <a href=\"https://twitter.com/danielbachhuber\" target=\"_blank\">Daniel Bachhuber</a>, currently the interim director of engineering at <a href=\"http://fusion.net/\" target=\"_blank\">Fusion</a>, the company where Shortcake originated. Contributors include <a href=\"https://twitter.com/matth_eu\" target=\"_blank\">Matthew Haines-Young</a> and the folks at <a href=\"http://hmn.md\" target=\"_blank\">Human Made</a>.</p>\n<p>The plugin is being developed on <a href=\"https://github.com/fusioneng/Shortcake/\" target=\"_blank\">GitHub</a> but is also now available for <a href=\"https://wordpress.org/plugins/shortcode-ui/\" target=\"_blank\">download</a> on WordPress.org. Developers who want to utilize Shortcake can register a UI for their shortcodes alongside add_shortcode, which will expose Shortcake&#8217;s user-friendly interface.</p>\n<p>Shortcake transforms your ordinary shortcode to render a preview in a TinyMCE view:</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/shortcake-demo.png\" rel=\"prettyphoto[40867]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/shortcake-demo.png?resize=1025%2C538\" alt=\"shortcake-demo\" class=\"aligncenter size-full wp-image-41115\" /></a></p>\n<p>It also supplies a user-friendly UI to add shortcodes via the &#8220;Add Media&#8221; button. After selecting your shortcode, you&#8217;ll have the ability to edit its content and attributes.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/insert-post-element.png\" rel=\"prettyphoto[40867]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/insert-post-element.png?resize=1018%2C700\" alt=\"insert-post-element\" class=\"aligncenter size-full wp-image-41117\" /></a></p>\n<p><a href=\"http://fusion.net/story/105889/shortcake-v0-2-0-js-abstraction-add-post-element-enhancements-inner-content-field/\" target=\"_blank\">Version 0.2.0</a> enhances the post element interface in the following ways:</p>\n<ul>\n<li>Shortcodes are sorted alphabetically, making it easier to skim and find shortcodes.</li>\n<li>Shortcodes can be filtered by name using the “Search” field, reducing complexity when a site has many dozens of shortcodes.</li>\n<li>The “Insert Element” button is disabled until a post element is selected, providing a visual cue to the user.</li>\n</ul>\n<p>This release also makes a number of significant changes to the structure of the plugin. It has been retooled using an MVC architecture that relies on Browserify. Shortcake contributor <a href=\"https://twitter.com/jeetu_58\" target=\"_blank\">Jitendra Harpalani</a> explains the reasons behind the changes:</p>\n<blockquote><p>Specifically, we decided to use Browserify. It’s much easier to compartmentalize models, views, and controllers into different directories and then simply “require” them into your main JavaScript file, rather than having to create a self-contained and fully-fledged Backbone app.</p></blockquote>\n<p>Fortunately, WordPress core already uses Browserify to split apart the media library JavaScript, so it doesn&#8217;t introduce a new dependency.</p>\n<h3>Does Shortcake have a chance to make it into WordPress core?</h3>\n<p>Although shortcodes make it easy to insert and structure complex content, they&#8217;re an eyesore in the post editor. Including multiple shortcodes the old fashioned way can quickly become messy.</p>\n<p>Shortcake is a well-conceived solution that brings new life to shortcodes and makes them significantly less confusing to implement. Contributors on the project believe in it enough to start working on the steps necessary to make the feature plugin ready to be proposed for core.</p>\n<p>If it does land in core someday, it will be interesting to see how well the feature is adopted. If some developers register a UI for their shortcodes and others don&#8217;t, it could be confusing to know which shortcodes are available if they don&#8217;t show up on the &#8220;Insert Element&#8221; screen. Then again, that problem already exists without Shortcake. Without the help of an additional plugin, there&#8217;s no easy way to know which shortcodes are available.</p>\n<p>If you think Shortcake has potential and want to get involved, follow the updates on <a href=\"https://make.wordpress.org/core/tag/shortcode-ui/\" target=\"_blank\">make.wordpress.org/core</a> and join the development team for a meeting on WordPress.org Slack.</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, 25 Mar 2015 10:59: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:\"Sarah Gooding\";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:75:\"Matt: Why Remote Work Thrives in Some Companies and Fails in Others – HBR\";s: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:21:\"http://ma.tt/?p=44883\";s: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:\"http://ma.tt/2015/03/why-remote-work-thrives-in-some-companies-and-fails-in-others-hbr/\";s: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:854:\"<p><a href=\"https://hbr.org/2015/03/why-remote-work-thrives-in-some-companies-and-fails-in-others\">Why Remote Work Thrives in Some Companies and Fails in Others</a>, by Sean Graber in the Harvard Business Review.</p>\n<blockquote><p>Why are some organizations reaping benefits but others not? Conditions are seemingly ideal: More and more people are choosing to work remotely. By one estimate, the number of remote workers in the U.S. grew by nearly 80% between 2005 and 2012. Advances in technology are keeping pace. About 94% of U.S. households have access to broadband Internet — one of the most important enablers of remote work. Workers also have access to an array of tools that allow them to videoconference, collaborate on shared documents, and manage complex workflows with colleagues around the world. So what’s the problem?</p></blockquote>\";s: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, 24 Mar 2015 20:50: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: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: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:98:\"WPTavern: Pods Lead Developer Scott Kingsley Clark Launches “Friends of Pods” Funding Campaign\";s: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:\"http://wptavern.com/?p=41076\";s: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:102:\"http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign\";s: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:3146:\"<p><img class=\"alignright size-full wp-image-41081\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/FriendsofPodsLogo.png?resize=198%2C91\" alt=\"Friends of Pods Logo\" />Between support costs, website maintenance, and development time, managing a WordPress plugin can be expensive. Despite the costs associated with maintaining <a title=\"https://wordpress.org/plugins/pods/\" href=\"https://wordpress.org/plugins/pods/\">Pods</a>, it&#8217;s remained free of charge since the day it was created. In September 2011, Pods lead developer, Scott Kingsley Clark, created a <a title=\"https://www.kickstarter.com/projects/sc0ttkclark/pods-development-framework-20\" href=\"https://www.kickstarter.com/projects/sc0ttkclark/pods-development-framework-20\">Kickstarter campaign</a> asking for $1,500 to help fund Pods 2.0 development. By the time it ended, he received $4,177 with 91 backers.</p>\n<p><a title=\"http://pods.io/2015/03/24/help-us-grow-introducing-friends-of-pods/\" href=\"http://pods.io/2015/03/24/help-us-grow-introducing-friends-of-pods/\">According to Clark</a>, sponsorship money from Automattic and donations from users are just enough to keep the support team going with little left over to put towards website and plugin development. In what may be a first for a WordPress plugin, Clark has launched a &#8220;<a title=\"https://pods.io/friends-of-pods/\" href=\"https://pods.io/friends-of-pods/\">Friends of Pods</a>&#8221; funding campaign that works similar to public television.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/PodsCampaignMissionStatement.png\" rel=\"prettyphoto[41076]\"><img class=\"size-full wp-image-41084\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/PodsCampaignMissionStatement.png?resize=1025%2C444\" alt=\"Friends of Pods Mission Statement\" /></a>Friends of Pods Mission Statement\n<p>There are <a title=\"https://pods.io/friends-of-pods/membership-levels/\" href=\"https://pods.io/friends-of-pods/membership-levels/\">four tiers</a> to choose ranging from $5-$300 per month. Each tier has perks and benefits including, shirts, stickers, tweets, and placement on the Pods website. You can also donate a one time amount or become a pillar sponsor. Those who donate $25 a month or more are eligible to choose rewards every six months, which are provided by reward partners.</p>\n<p>The funding will be used to decrease private development of Pods and focus more on Pods core, related plugins, and integrations. It will also free up time to work on Pods 3.0 and improve its documentation. &#8220;Through Friends of Pods, we will grow both in terms of improving the code and strengthening our community. We also plan on adding &#8220;Pods Development Partners&#8221; to the Friends of Pods site soon as well as other cool tools to help our friends grow with Pods,&#8221; Clark said.</p>\n<p>It&#8217;s unclear whether this model will work, but it gives Clark and his team an opportunity to receive recurring income without charging for Pods. If the experiment is successful, it would give plugin developers another option to earn recurring income while keeping their plugins free.</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, 24 Mar 2015 19:07: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:13:\"Jeff Chandler\";s: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\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 Apr 2015 13:59:56 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"191959\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 07 Apr 2015 13:45:12 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911040210\";}", "no");
INSERT INTO `k2zp_options` VALUES("426", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1428458397", "no");
INSERT INTO `k2zp_options` VALUES("427", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1428415197", "no");
INSERT INTO `k2zp_options` VALUES("428", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1428458398", "no");
INSERT INTO `k2zp_options` VALUES("429", "_transient_feed_b9388c83948825c1edaef0d856b7b109", "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\";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:117:\"\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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s: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://wordpress.org/plugins/browse/popular/\";s: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:39:\"WordPress Plugins » View: Most Popular\";s: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-US\";s: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, 07 Apr 2015 13:41:57 +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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.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:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\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:7:\"Akismet\";s: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:46:\"https://wordpress.org/plugins/akismet/#post-15\";s: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, 09 Mar 2007 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";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:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s: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:\"Matt Mullenweg\";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:30:\"\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:22:\"WordPress SEO by Yoast\";s: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/plugins/wordpress-seo/#post-8321\";s: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 Jan 2009 20:34:44 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";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:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast&#039;s WordPress SEO 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";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:30:\"\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:14:\"Contact Form 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s: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, 02 Aug 2007 12: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";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:54:\"Just another contact form plugin. Simple but flexible.\";s: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:\"Takayuki Miyoshi\";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:30:\"\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:18:\"Wordfence Security\";s: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:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s: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, 04 Sep 2011 03:13: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";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:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s: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:9:\"Wordfence\";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:30:\"\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:\"Jetpack by WordPress.com\";s: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://wordpress.org/plugins/jetpack/#post-23862\";s: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, 20 Jan 2011 02:21: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";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:28:\"Your WordPress, Streamlined.\";s: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:9:\"Tim Moore\";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:30:\"\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:14:\"WP Super Cache\";s: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://wordpress.org/plugins/wp-super-cache/#post-2572\";s: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, 05 Nov 2007 11:40: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";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:73:\"A very fast caching engine for WordPress that produces static html files.\";s: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:\"Donncha O Caoimh\";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:30:\"\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:19:\"All in One SEO Pack\";s: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://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s: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, 30 Mar 2007 20:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";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:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s: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:8:\"uberdose\";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:30:\"\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:33:\"WooCommerce - excelling eCommerce\";s: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/plugins/woocommerce/#post-29860\";s: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, 05 Sep 2011 08:13:36 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";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:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s: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:9:\"WooThemes\";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:30:\"\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:18:\"WordPress Importer\";s: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:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s: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, 20 May 2010 17:42: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";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:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s: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:\"Brian Colinger\";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:30:\"\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:34:\"UpdraftPlus Backup and Restoration\";s: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/plugins/updraftplus/#post-38058\";s: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 May 2012 15:14:11 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";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:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s: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:\"David Anderson\";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:30:\"\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:25:\"Google Analytics by Yoast\";s: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/plugins/google-analytics-for-wordpress/#post-2316\";s: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, 14 Sep 2007 12:15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";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:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s: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:\"Joost de Valk\";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:30:\"\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:21:\"WPtouch Mobile 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wptouch/#post-5468\";s: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 May 2008 04:58:09 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5468@https://wordpress.org/plugins/\";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:67:\"Make your WordPress website mobile-friendly with just a few clicks.\";s: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:\"BraveNewCode Inc.\";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:30:\"\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:26:\"Page Builder by SiteOrigin\";s: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://wordpress.org/plugins/siteorigin-panels/#post-51888\";s: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, 11 Apr 2013 10:36:42 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";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:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s: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:\"Greg Priday\";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:30:\"\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:15:\"NextGEN Gallery\";s: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:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s: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 Apr 2007 20:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 12 million downloads.\";s: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:9:\"Alex Rabe\";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:30:\"\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:19:\"Google XML Sitemaps\";s: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://wordpress.org/plugins/google-sitemap-generator/#post-132\";s: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, 09 Mar 2007 22:31: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";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:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s: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:\"Arne Brachhold\";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:30:\"\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:19:\"Shortcodes Ultimate\";s: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://wordpress.org/plugins/shortcodes-ultimate/#post-25618\";s: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 Apr 2011 13:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25618@https://wordpress.org/plugins/\";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:61:\"Supercharge your WordPress theme with mega pack of 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Vladimir Anokhin\";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:30:\"\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:22:\"Advanced Custom Fields\";s: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://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s: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 Mar 2011 04:07: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";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:68:\"Customise WordPress with powerful, professional and intuitive fields\";s: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:\"elliotcondon\";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:30:\"\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:33:\"Google Analytics Dashboard for WP\";s: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://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s: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 Mar 2013 17:07:11 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";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:148:\"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.\";s: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:10:\"Alin Marcu\";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:30:\"\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:11:\"WP Smush.it\";s: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:51:\"https://wordpress.org/plugins/wp-smushit/#post-7936\";s: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 Dec 2008 00:00: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"7936@https://wordpress.org/plugins/\";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:148:\"Improve performance and get faster load times by optimizing image files with Smush.it for WordPress – “It&#039;s the best plugin of its kind.”\";s: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:10:\"Alex Dunae\";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:30:\"\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:\"iThemes Security (formerly Better WP Security)\";s: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:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s: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 Oct 2010 22:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";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:63:\"The easiest, most effective way to secure WordPress in seconds.\";s: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:\"Chris Wiegman\";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:30:\"\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:16:\"Disable Comments\";s: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/plugins/disable-comments/#post-26907\";s: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, 27 May 2011 04:42: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26907@https://wordpress.org/plugins/\";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:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s: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:\"solarissmoke\";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:30:\"\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:17:\"InfiniteWP Client\";s: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://wordpress.org/plugins/iwp-client/#post-36147\";s: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, 26 Mar 2012 04:21: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"36147@https://wordpress.org/plugins/\";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:143:\"Install this plugin on unlimited sites and manage them all from a central dashboard.\nThis plugin communicates with your InfiniteWP Admin Panel.\";s: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:10:\"infinitewp\";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:30:\"\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:11:\"Meta Slider\";s: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:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s: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 Feb 2013 16:56: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"49521@https://wordpress.org/plugins/\";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:145:\"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s: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:\"Matcha Labs\";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:30:\"\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:15:\"BackUpWordPress\";s: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:56:\"https://wordpress.org/plugins/backupwordpress/#post-2236\";s: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, 02 Sep 2007 21:15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2236@https://wordpress.org/plugins/\";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:59:\"Simple automated backups of your WordPress powered website.\";s: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:\"Tom Willmot\";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:30:\"\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:15:\"Contact Form DB\";s: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://wordpress.org/plugins/contact-form-7-to-database-extension/#post-19767\";s: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, 02 Aug 2010 02:24: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"19767@https://wordpress.org/plugins/\";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:102:\"Saves submitted form data to the database. Export the data to a file or use short codes to display it.\";s: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:\"Michael Simpson\";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:30:\"\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:25:\"Share Buttons by AddToAny\";s: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:50:\"https://wordpress.org/plugins/add-to-any/#post-498\";s: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, 17 Mar 2007 23:08:16 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"498@https://wordpress.org/plugins/\";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:142:\"Share buttons for WordPress including AddToAny&#039;s universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.\";s: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:8:\"micropat\";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:30:\"\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:\"Fast Secure Contact Form\";s: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://wordpress.org/plugins/si-contact-form/#post-12636\";s: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, 27 Aug 2009 01:20: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12636@https://wordpress.org/plugins/\";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:131:\"An easy and powerful form builder that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s: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:\"Mike Challis\";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:30:\"\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:16:\"TinyMCE Advanced\";s: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://wordpress.org/plugins/tinymce-advanced/#post-2082\";s: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, 27 Jun 2007 15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";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:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";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:30:\"\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:\"MailChimp for 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/mailchimp-for-wp/#post-54377\";s: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, 10 Jun 2013 17:32:11 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"54377@https://wordpress.org/plugins/\";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:138:\"The best MailChimp plugin to get more email subscribers. Easily add MailChimp sign-up forms and sign-up checkboxes to your WordPress site.\";s: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:\"Danny van Kooten\";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:30:\"\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:14:\"W3 Total Cache\";s: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:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s: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, 29 Jul 2009 18:46: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12073@https://wordpress.org/plugins/\";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:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s: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:46:\"https://wordpress.org/plugins/rss/view/popular\";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:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 07 Apr 2015 13:59:58 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Tue, 07 Apr 2015 14:16:57 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Tue, 07 Apr 2015 13:41:57 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911040210\";}", "no");
INSERT INTO `k2zp_options` VALUES("430", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1428458398", "no");
INSERT INTO `k2zp_options` VALUES("431", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1428415198", "no");
INSERT INTO `k2zp_options` VALUES("432", "_transient_timeout_plugin_slugs", "1428507640", "no");
INSERT INTO `k2zp_options` VALUES("433", "_transient_plugin_slugs", "a:8:{i:0;s:19:\"akismet/akismet.php\";i:1;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:2;s:17:\"wpclef/wpclef.php\";i:3;s:33:\"duplicate-post/duplicate-post.php\";i:4;s:25:\"duplicator/duplicator.php\";i:5;s:9:\"hello.php\";i:6;s:45:\"limit-login-attempts/limit-login-attempts.php\";i:7;s:23:\"revslider/revslider.php\";}", "no");
INSERT INTO `k2zp_options` VALUES("434", "_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51", "1428458398", "no");
INSERT INTO `k2zp_options` VALUES("435", "_transient_dash_4077549d03da2e451c8b5f002294ff51", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/04/improvements-to-wordpress-org/\'>Improvements to WordPress.org</a> <span class=\"rss-date\">april 4, 2015</span><div class=\"rssSummary\">If you visit WordPress.org regularly you might have noticed some changes around the place. If you don’t, now’s the time to check them out! We’ve been working hard to improve the site to make it more useful to everyone, both developers and users, and we hope you like what we’ve done. New Theme and Plugin Directories [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://z9.io/2015/04/07/wp-super-cache-1-4-4/\'>Donncha: WP Super Cache 1.4.4</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/04/open-source-windows/\'>Matt: Open Source Windows</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wordpress-core-team-announces-release-leads-for-wordpress-4-3-and-4-4\'>WPTavern: WordPress Core Team Announces Release Leads for WordPress 4.3 and 4.4</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Populärt tillägg:</span> <a href=\'https://wordpress.org/plugins/ml-slider/\' class=\'dashboard-news-plugin-link\'>Meta Slider</a>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=ml-slider&amp;_wpnonce=257345e60f&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Meta Slider\'>Installera</a>)</span></li></ul></div>", "no");
INSERT INTO `k2zp_options` VALUES("438", "rewrite_rules", "a:98:{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: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: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: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:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:57:\"gallery-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?gallery-category=$matches[1]&feed=$matches[2]\";s:52:\"gallery-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?gallery-category=$matches[1]&feed=$matches[2]\";s:45:\"gallery-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?gallery-category=$matches[1]&paged=$matches[2]\";s:27:\"gallery-category/([^/]+)/?$\";s:38:\"index.php?gallery-category=$matches[1]\";s:54:\"team-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?team-category=$matches[1]&feed=$matches[2]\";s:49:\"team-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?team-category=$matches[1]&feed=$matches[2]\";s:42:\"team-category/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?team-category=$matches[1]&paged=$matches[2]\";s:24:\"team-category/([^/]+)/?$\";s:35:\"index.php?team-category=$matches[1]\";s:54:\"faqs-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?faqs-category=$matches[1]&feed=$matches[2]\";s:49:\"faqs-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?faqs-category=$matches[1]&feed=$matches[2]\";s:42:\"faqs-category/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?faqs-category=$matches[1]&paged=$matches[2]\";s:24:\"faqs-category/([^/]+)/?$\";s:35:\"index.php?faqs-category=$matches[1]\";s:59:\"directory-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?directory-category=$matches[1]&feed=$matches[2]\";s:54:\"directory-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?directory-category=$matches[1]&feed=$matches[2]\";s:47:\"directory-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?directory-category=$matches[1]&paged=$matches[2]\";s:29:\"directory-category/([^/]+)/?$\";s:40:\"index.php?directory-category=$matches[1]\";s:59:\"spb-section-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?spb-section-category=$matches[1]&feed=$matches[2]\";s:54:\"spb-section-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?spb-section-category=$matches[1]&feed=$matches[2]\";s:47:\"spb-section-category/(.+?)/page/?([0-9]{1,})/?$\";s:60:\"index.php?spb-section-category=$matches[1]&paged=$matches[2]\";s:29:\"spb-section-category/(.+?)/?$\";s:42:\"index.php?spb-section-category=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=8&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: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: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: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: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: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: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: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:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:31:\".+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\".+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"(.+?)/([^/]+)/trackback/?$\";s:57:\"index.php?category_name=$matches[1]&name=$matches[2]&tb=1\";s:46:\"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:41:\"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:34:\"(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]\";s:41:\"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]\";s:26:\"(.+?)/([^/]+)(/[0-9]+)?/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]\";s:20:\".+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\".+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&cpage=$matches[2]\";s:8:\"(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";}", "yes");
INSERT INTO `k2zp_options` VALUES("442", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1428432000", "yes");
INSERT INTO `k2zp_options` VALUES("443", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"4916\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3078\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3022\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2529\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2346\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1892\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1729\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1680\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1678\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1676\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1612\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1609\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1505\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1322\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1276\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1175\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1171\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1083\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1079\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"918\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"905\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"874\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"843\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"837\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"794\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"758\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"748\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"709\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:3:\"700\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"692\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"682\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"657\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"649\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"642\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"642\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"623\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"620\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"605\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"600\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"593\";}}", "yes");
INSERT INTO `k2zp_options` VALUES("444", "_site_transient_timeout_theme_roots", "1428423025", "yes");
INSERT INTO `k2zp_options` VALUES("445", "_site_transient_theme_roots", "a:5:{s:14:\"cardinal-child\";s:7:\"/themes\";s:8:\"cardinal\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}", "yes");
INSERT INTO `k2zp_options` VALUES("446", "_site_transient_update_plugins", "O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1428421238;s:7:\"checked\";a:8:{s:19:\"akismet/akismet.php\";s:5:\"3.1.1\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:5:\"5.2.0\";s:17:\"wpclef/wpclef.php\";s:7:\"2.2.9.1\";s:33:\"duplicate-post/duplicate-post.php\";s:3:\"2.6\";s:25:\"duplicator/duplicator.php\";s:6:\"0.5.12\";s:9:\"hello.php\";s:3:\"1.6\";s:45:\"limit-login-attempts/limit-login-attempts.php\";s:5:\"1.7.1\";s:23:\"revslider/revslider.php\";s:5:\"4.6.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.1.zip\";}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1283\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"5.2.0\";s:14:\"upgrade_notice\";s:268:\"This version requires PHP5.3 or newer. Some improvements to the settings page were made. Additionally, note that the Max Breadcrumb Length setting has been deprecated in favor of using CSS styling to perform the length limiting.ion enhances compatibility with bbPress.\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.zip\";}s:17:\"wpclef/wpclef.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"37352\";s:4:\"slug\";s:6:\"wpclef\";s:6:\"plugin\";s:17:\"wpclef/wpclef.php\";s:11:\"new_version\";s:7:\"2.2.9.1\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/wpclef/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wpclef.2.2.9.1.zip\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1295\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"2.6\";s:14:\"upgrade_notice\";s:90:\"PHP 5.4 (Strict Standards) compatible + Fixed possible XSS and SQL injections + other bugs\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.2.6.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"0.5.12\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.0.5.12.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:45:\"limit-login-attempts/limit-login-attempts.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"6158\";s:4:\"slug\";s:20:\"limit-login-attempts\";s:6:\"plugin\";s:45:\"limit-login-attempts/limit-login-attempts.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:14:\"upgrade_notice\";s:249:\"Users of version 1.6.2 and 1.7.0 should upgrade immediately. There was a problem with &quot;auth cookie&quot; lockout enforcement. Lockout of normal password login attempts still worked as it should. Please see plugin Changelog for more information.\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/limit-login-attempts/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/limit-login-attempts.1.7.1.zip\";}}}", "yes");
INSERT INTO `k2zp_options` VALUES("447", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"0.5.12\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `k2zp_options` VALUES("448", "duplicator_version_plugin", "0.5.12", "yes");
INSERT INTO `k2zp_options` VALUES("449", "duplicator_ui_view_state", "a:3:{s:14:\"dup-wpnotice01\";b:1;s:22:\"dup-pack-archive-panel\";s:1:\"0\";s:24:\"dup-pack-installer-panel\";s:1:\"0\";}", "yes");
INSERT INTO `k2zp_options` VALUES("450", "duplicator_package_active", "O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:23:\"20150407_unitedcashback\";s:4:\"Hash\";s:29:\"5524211e0499e1680150407182534\";s:8:\"NameHash\";s:53:\"20150407_unitedcashback_5524211e0499e1680150407182534\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:72:\"/storage/content/83/125683/united.sommar.se/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:41:\"http://www.united.sommar.se/wp-snapshots/\";s:8:\"ScanFile\";s:63:\"20150407_unitedcashback_5524211e0499e1680150407182534_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:55:\"/storage/content/83/125683/united.sommar.se/public_html\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:23:\"20150407_unitedcashback\";s:4:\"Hash\";s:29:\"5524211e0499e1680150407182534\";s:8:\"NameHash\";s:53:\"20150407_unitedcashback_5524211e0499e1680150407182534\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:72:\"/storage/content/83/125683/united.sommar.se/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:41:\"http://www.united.sommar.se/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:30;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}", "yes");
INSERT INTO `k2zp_options` VALUES("451", "_site_transient_timeout_browser_948138cbf26dd48da485ec1a485ce194", "1429035781", "yes");
INSERT INTO `k2zp_options` VALUES("452", "_site_transient_browser_948138cbf26dd48da485ec1a485ce194", "a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"41.0.2272.118\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `k2zp_options` VALUES("453", "_transient_is_multi_author", "0", "yes");
INSERT INTO `k2zp_options` VALUES("456", "_site_transient_timeout_available_translations", "1428441879", "yes");
INSERT INTO `k2zp_options` VALUES("457", "_site_transient_available_translations", "a:52:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-01 13:21:43\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:15:41\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:19:26\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:22:49\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:24:48\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:30:22\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:32:23\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:38:25\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:34:24\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:40:46\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:46:15\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:44:26\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:42:35\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:48:12\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:54:32\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:56:31\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:50:12\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-27 08:55:29\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:03:17\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-18 08:12:21\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:08:29\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:14:57\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.1/haz.zip\";s:3:\"iso\";a:2:{i:1;s:3:\"haz\";i:2;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-01 19:08:42\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:25:25\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:27:28\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:29:34\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-15 22:23:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:33:39\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:35:42\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:43:18\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:47:56\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:7:\"Burmese\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:59:41\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:02:30\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:07:08\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ps.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ps\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:11:07\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:14:41\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-27 14:48:56\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:19:48\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:23:44\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:25:46\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:30:35\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:33:33\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-27 00:00:51\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:43:10\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:55:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-26 02:21:02\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}", "yes");

/* INSERT TABLE DATA: k2zp_postmeta */
INSERT INTO `k2zp_postmeta` VALUES("1", "2", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("6", "6", "_wp_attached_file", "2015/04/Admin-login.png");
INSERT INTO `k2zp_postmeta` VALUES("7", "6", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:254;s:6:\"height\";i:95;s:4:\"file\";s:23:\"2015/04/Admin-login.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Admin-login-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Admin-login-220x95.png\";s:5:\"width\";i:220;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:21:\"Admin-login-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:22:\"Admin-login-250x95.png\";s:5:\"width\";i:250;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("8", "2", "_wp_trash_meta_status", "publish");
INSERT INTO `k2zp_postmeta` VALUES("9", "2", "_wp_trash_meta_time", "1427878257");
INSERT INTO `k2zp_postmeta` VALUES("10", "8", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("11", "8", "_edit_lock", "1427965222:1");
INSERT INTO `k2zp_postmeta` VALUES("12", "8", "sf_page_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("13", "8", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("14", "8", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("15", "8", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("16", "8", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("17", "8", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("18", "8", "sf_no_breadcrumbs", "1");
INSERT INTO `k2zp_postmeta` VALUES("19", "8", "sf_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("20", "8", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("21", "8", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("22", "8", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("23", "8", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("24", "8", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("25", "8", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("26", "8", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("27", "8", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("28", "8", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("29", "8", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("30", "8", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("31", "8", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("32", "8", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("33", "8", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("34", "8", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("35", "8", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("36", "8", "sf_no_top_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("37", "8", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("38", "8", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("39", "8", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("40", "8", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("41", "8", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("42", "8", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("43", "10", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("44", "10", "_edit_lock", "1427960865:1");
INSERT INTO `k2zp_postmeta` VALUES("45", "10", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("46", "10", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("47", "10", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("48", "10", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("49", "10", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("50", "10", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("51", "10", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("52", "10", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("53", "10", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("54", "10", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("55", "10", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("56", "10", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("57", "10", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("58", "10", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("59", "10", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("60", "10", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("61", "10", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("62", "10", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("63", "10", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("64", "10", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("65", "10", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("66", "10", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("67", "10", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("68", "10", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("69", "10", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("70", "10", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("71", "10", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("72", "10", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("73", "10", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("74", "10", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("75", "10", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("76", "12", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("77", "12", "_edit_lock", "1427896496:1");
INSERT INTO `k2zp_postmeta` VALUES("78", "12", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("79", "12", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("80", "12", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("81", "12", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("82", "12", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("83", "12", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("84", "12", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("85", "12", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("86", "12", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("87", "12", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("88", "12", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("89", "12", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("90", "12", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("91", "12", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("92", "12", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("93", "12", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("94", "12", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("95", "12", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("96", "12", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("97", "12", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("98", "12", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("99", "12", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("100", "12", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("101", "12", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("102", "12", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("103", "12", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("104", "12", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("105", "12", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("106", "12", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("107", "12", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("108", "12", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("109", "14", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("110", "14", "_edit_lock", "1427960743:1");
INSERT INTO `k2zp_postmeta` VALUES("111", "14", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("112", "14", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("113", "14", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("114", "14", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("115", "14", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("116", "14", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("117", "14", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("118", "14", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("119", "14", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("120", "14", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("121", "14", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("122", "14", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("123", "14", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("124", "14", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("125", "14", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("126", "14", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("127", "14", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("128", "14", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("129", "14", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("130", "14", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("131", "14", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("132", "14", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("133", "14", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("134", "14", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("135", "14", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("136", "14", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("137", "14", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("138", "14", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("139", "14", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("140", "14", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("141", "14", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("142", "16", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("143", "16", "_edit_lock", "1427961333:1");
INSERT INTO `k2zp_postmeta` VALUES("144", "16", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("145", "16", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("146", "16", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("147", "16", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("148", "16", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("149", "16", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("150", "16", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("151", "16", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("152", "16", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("153", "16", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("154", "16", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("155", "16", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("156", "16", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("157", "16", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("158", "16", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("159", "16", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("160", "16", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("161", "16", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("162", "16", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("163", "16", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("164", "16", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("165", "16", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("166", "16", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("167", "16", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("168", "16", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("169", "16", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("170", "16", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("171", "16", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("172", "16", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("173", "16", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("174", "16", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("175", "18", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("176", "18", "_edit_lock", "1427892034:1");
INSERT INTO `k2zp_postmeta` VALUES("177", "18", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("178", "18", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("179", "18", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("180", "18", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("181", "18", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("182", "18", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("183", "18", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("184", "18", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("185", "18", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("186", "18", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("187", "18", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("188", "18", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("189", "18", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("190", "18", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("191", "18", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("192", "18", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("193", "18", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("194", "18", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("195", "18", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("196", "18", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("197", "18", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("198", "18", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("199", "18", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("200", "18", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("201", "18", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("202", "18", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("203", "18", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("204", "18", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("205", "18", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("206", "18", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("207", "18", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("208", "20", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("209", "20", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("210", "20", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("211", "20", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("212", "20", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("213", "20", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("214", "20", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("215", "20", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("216", "20", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("217", "20", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("218", "20", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("219", "20", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("220", "20", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("221", "20", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("222", "20", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("223", "20", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("224", "20", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("225", "20", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("226", "20", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("227", "20", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("228", "20", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("229", "20", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("230", "20", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("231", "20", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("232", "20", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("233", "20", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("234", "20", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("235", "20", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("236", "20", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("237", "20", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("238", "20", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("239", "20", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("240", "20", "_edit_lock", "1427891655:1");
INSERT INTO `k2zp_postmeta` VALUES("241", "22", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("242", "22", "_edit_lock", "1427965153:1");
INSERT INTO `k2zp_postmeta` VALUES("243", "22", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("244", "22", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("245", "22", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("246", "22", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("247", "22", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("248", "22", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("249", "22", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("250", "22", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("251", "22", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("252", "22", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("253", "22", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("254", "22", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("255", "22", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("256", "22", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("257", "22", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("258", "22", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("259", "22", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("260", "22", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("261", "22", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("262", "22", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("263", "22", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("264", "22", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("265", "22", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("266", "22", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("267", "22", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("268", "22", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("269", "22", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("270", "22", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("271", "22", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("272", "22", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("273", "22", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("274", "24", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("275", "24", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("276", "24", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("277", "24", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("278", "24", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("279", "24", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("280", "24", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("281", "24", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("282", "24", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("283", "24", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("284", "24", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("285", "24", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("286", "24", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("287", "24", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("288", "24", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("289", "24", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("290", "24", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("291", "24", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("292", "24", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("293", "24", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("294", "24", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("295", "24", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("296", "24", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("297", "24", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("298", "24", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("299", "24", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("300", "24", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("301", "24", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("302", "24", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("303", "24", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("304", "24", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("305", "24", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("306", "24", "_edit_lock", "1427964172:1");
INSERT INTO `k2zp_postmeta` VALUES("307", "26", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("308", "26", "_edit_lock", "1427963150:1");
INSERT INTO `k2zp_postmeta` VALUES("309", "26", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("310", "26", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("311", "26", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("312", "26", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("313", "26", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("314", "26", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("315", "26", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("316", "26", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("317", "26", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("318", "26", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("319", "26", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("320", "26", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("321", "26", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("322", "26", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("323", "26", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("324", "26", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("325", "26", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("326", "26", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("327", "26", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("328", "26", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("329", "26", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("330", "26", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("331", "26", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("332", "26", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("333", "26", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("334", "26", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("335", "26", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("336", "26", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("337", "26", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("338", "26", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("339", "26", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("340", "28", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("341", "28", "_edit_lock", "1427962435:1");
INSERT INTO `k2zp_postmeta` VALUES("342", "28", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("343", "28", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("344", "28", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("345", "28", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("346", "28", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("347", "28", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("348", "28", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("349", "28", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("350", "28", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("351", "28", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("352", "28", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("353", "28", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("354", "28", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("355", "28", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("356", "28", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("357", "28", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("358", "28", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("359", "28", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("360", "28", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("361", "28", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("362", "28", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("363", "28", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("364", "28", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("365", "28", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("366", "28", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("367", "28", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("368", "28", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("369", "28", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("370", "28", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("371", "28", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("372", "28", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("373", "30", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("374", "30", "_edit_lock", "1427961653:1");
INSERT INTO `k2zp_postmeta` VALUES("375", "30", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("376", "30", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("377", "30", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("378", "30", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("379", "30", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("380", "30", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("381", "30", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("382", "30", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("383", "30", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("384", "30", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("385", "30", "sf_page_header_alt_logo", "0");
INSERT INTO `k2zp_postmeta` VALUES("386", "30", "sf_page_slider", "none");
INSERT INTO `k2zp_postmeta` VALUES("387", "30", "sf_ss_type", "slider");
INSERT INTO `k2zp_postmeta` VALUES("388", "30", "sf_ss_category", "all");
INSERT INTO `k2zp_postmeta` VALUES("389", "30", "sf_ss_slides", "5");
INSERT INTO `k2zp_postmeta` VALUES("390", "30", "sf_ss_fs", "0");
INSERT INTO `k2zp_postmeta` VALUES("391", "30", "sf_ss_maxheight", "600");
INSERT INTO `k2zp_postmeta` VALUES("392", "30", "sf_ss_transition", "slide");
INSERT INTO `k2zp_postmeta` VALUES("393", "30", "sf_ss_loop", "1");
INSERT INTO `k2zp_postmeta` VALUES("394", "30", "sf_ss_nav", "1");
INSERT INTO `k2zp_postmeta` VALUES("395", "30", "sf_ss_pagination", "1");
INSERT INTO `k2zp_postmeta` VALUES("396", "30", "sf_ss_continue", "1");
INSERT INTO `k2zp_postmeta` VALUES("397", "30", "sf_enable_one_page_nav", "0");
INSERT INTO `k2zp_postmeta` VALUES("398", "30", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("399", "30", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("400", "30", "sf_no_bottom_spacing", "1");
INSERT INTO `k2zp_postmeta` VALUES("401", "30", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("402", "30", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("403", "30", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("404", "30", "_wp_page_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("405", "30", "_spb_js_status", "true");
INSERT INTO `k2zp_postmeta` VALUES("406", "32", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("407", "32", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("408", "32", "_menu_item_object_id", "20");
INSERT INTO `k2zp_postmeta` VALUES("409", "32", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("410", "32", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("411", "32", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("412", "32", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("413", "32", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("415", "32", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("416", "32", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("417", "32", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("418", "32", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("419", "32", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("420", "32", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("421", "32", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("422", "32", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("423", "32", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("424", "32", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("425", "33", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("426", "33", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("427", "33", "_menu_item_object_id", "18");
INSERT INTO `k2zp_postmeta` VALUES("428", "33", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("429", "33", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("430", "33", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("431", "33", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("432", "33", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("434", "33", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("435", "33", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("436", "33", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("437", "33", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("438", "33", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("439", "33", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("440", "33", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("441", "33", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("442", "33", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("443", "33", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("539", "39", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("540", "39", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("541", "39", "_menu_item_object_id", "16");
INSERT INTO `k2zp_postmeta` VALUES("542", "39", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("543", "39", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("544", "39", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("545", "39", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("546", "39", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("548", "39", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("549", "39", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("550", "39", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("551", "39", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("552", "39", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("553", "39", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("554", "39", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("555", "39", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("556", "39", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("557", "39", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("558", "40", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("559", "40", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("560", "40", "_menu_item_object_id", "14");
INSERT INTO `k2zp_postmeta` VALUES("561", "40", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("562", "40", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("563", "40", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("564", "40", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("565", "40", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("567", "40", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("568", "40", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("569", "40", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("570", "40", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("571", "40", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("572", "40", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("573", "40", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("574", "40", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("575", "40", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("576", "40", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("577", "41", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("578", "41", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("579", "41", "_menu_item_object_id", "12");
INSERT INTO `k2zp_postmeta` VALUES("580", "41", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("581", "41", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("582", "41", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("583", "41", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("584", "41", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("586", "41", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("587", "41", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("588", "41", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("589", "41", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("590", "41", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("591", "41", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("592", "41", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("593", "41", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("594", "41", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("595", "41", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("596", "42", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("597", "42", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("598", "42", "_menu_item_object_id", "10");
INSERT INTO `k2zp_postmeta` VALUES("599", "42", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("600", "42", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("601", "42", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("602", "42", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("603", "42", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("605", "42", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("606", "42", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("607", "42", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("608", "42", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("609", "42", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("610", "42", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("611", "42", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("612", "42", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("613", "42", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("614", "42", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("615", "43", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("616", "43", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("617", "43", "_menu_item_object_id", "8");
INSERT INTO `k2zp_postmeta` VALUES("618", "43", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("619", "43", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("620", "43", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("621", "43", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("622", "43", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("624", "43", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("625", "43", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("626", "43", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("627", "43", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("628", "43", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("629", "43", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("630", "43", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("631", "43", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("632", "43", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("633", "43", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("634", "43", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("635", "43", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("636", "32", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("637", "32", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("638", "33", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("639", "33", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("650", "39", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("651", "39", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("652", "40", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("653", "40", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("654", "41", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("655", "41", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("656", "42", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("657", "42", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("668", "44", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("669", "44", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("670", "44", "_menu_item_object_id", "44");
INSERT INTO `k2zp_postmeta` VALUES("671", "44", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("672", "44", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("673", "44", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("674", "44", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("675", "44", "_menu_item_url", "#");
INSERT INTO `k2zp_postmeta` VALUES("677", "44", "_menu_megamenu", "1");
INSERT INTO `k2zp_postmeta` VALUES("678", "44", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("679", "44", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("680", "44", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("681", "44", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("682", "44", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("683", "44", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("684", "44", "_menu_hideheadings", "1");
INSERT INTO `k2zp_postmeta` VALUES("685", "44", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("686", "44", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("687", "45", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("688", "45", "_menu_item_menu_item_parent", "236");
INSERT INTO `k2zp_postmeta` VALUES("689", "45", "_menu_item_object_id", "45");
INSERT INTO `k2zp_postmeta` VALUES("690", "45", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("691", "45", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("692", "45", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("693", "45", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("694", "45", "_menu_item_url", "http://www.cashback.at/");
INSERT INTO `k2zp_postmeta` VALUES("696", "45", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("697", "45", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("698", "45", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("699", "45", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("700", "45", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("701", "45", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("702", "45", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("703", "45", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("704", "45", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("705", "45", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("706", "46", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("707", "46", "_menu_item_menu_item_parent", "236");
INSERT INTO `k2zp_postmeta` VALUES("708", "46", "_menu_item_object_id", "46");
INSERT INTO `k2zp_postmeta` VALUES("709", "46", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("710", "46", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("711", "46", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("712", "46", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("713", "46", "_menu_item_url", "http://tvaconseil.com/");
INSERT INTO `k2zp_postmeta` VALUES("715", "46", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("716", "46", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("717", "46", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("718", "46", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("719", "46", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("720", "46", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("721", "46", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("722", "46", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("723", "46", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("724", "46", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("725", "47", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("726", "47", "_menu_item_menu_item_parent", "236");
INSERT INTO `k2zp_postmeta` VALUES("727", "47", "_menu_item_object_id", "47");
INSERT INTO `k2zp_postmeta` VALUES("728", "47", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("729", "47", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("730", "47", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("731", "47", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("732", "47", "_menu_item_url", "http://www.povratpdv.com/");
INSERT INTO `k2zp_postmeta` VALUES("734", "47", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("735", "47", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("736", "47", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("737", "47", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("738", "47", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("739", "47", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("740", "47", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("741", "47", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("742", "47", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("743", "47", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("744", "48", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("745", "48", "_menu_item_menu_item_parent", "236");
INSERT INTO `k2zp_postmeta` VALUES("746", "48", "_menu_item_object_id", "48");
INSERT INTO `k2zp_postmeta` VALUES("747", "48", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("748", "48", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("749", "48", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("750", "48", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("751", "48", "_menu_item_url", "http://www.skycashback.com/");
INSERT INTO `k2zp_postmeta` VALUES("753", "48", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("754", "48", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("755", "48", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("756", "48", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("757", "48", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("758", "48", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("759", "48", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("760", "48", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("761", "48", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("762", "48", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("763", "49", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("764", "49", "_menu_item_menu_item_parent", "236");
INSERT INTO `k2zp_postmeta` VALUES("765", "49", "_menu_item_object_id", "49");
INSERT INTO `k2zp_postmeta` VALUES("766", "49", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("767", "49", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("768", "49", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("769", "49", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("770", "49", "_menu_item_url", "http://CzechRepublic");
INSERT INTO `k2zp_postmeta` VALUES("772", "49", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("773", "49", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("774", "49", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("775", "49", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("776", "49", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("777", "49", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("778", "49", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("779", "49", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("780", "49", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("781", "49", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("782", "50", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("783", "50", "_menu_item_menu_item_parent", "236");
INSERT INTO `k2zp_postmeta` VALUES("784", "50", "_menu_item_object_id", "50");
INSERT INTO `k2zp_postmeta` VALUES("785", "50", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("786", "50", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("787", "50", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("788", "50", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("789", "50", "_menu_item_url", "http://www.cashback.fi/sv/");
INSERT INTO `k2zp_postmeta` VALUES("791", "50", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("792", "50", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("793", "50", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("794", "50", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("795", "50", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("796", "50", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("797", "50", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("798", "50", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("799", "50", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("800", "50", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("801", "51", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("802", "51", "_menu_item_menu_item_parent", "237");
INSERT INTO `k2zp_postmeta` VALUES("803", "51", "_menu_item_object_id", "51");
INSERT INTO `k2zp_postmeta` VALUES("804", "51", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("805", "51", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("806", "51", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("807", "51", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("808", "51", "_menu_item_url", "http://www.cashback.fi/sv/");
INSERT INTO `k2zp_postmeta` VALUES("810", "51", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("811", "51", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("812", "51", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("813", "51", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("814", "51", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("815", "51", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("816", "51", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("817", "51", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("818", "51", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("819", "51", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("820", "44", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("821", "44", "_menu_megamenucols", "4");
INSERT INTO `k2zp_postmeta` VALUES("822", "45", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("823", "45", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("824", "46", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("825", "46", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("826", "47", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("827", "47", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("828", "48", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("829", "48", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("830", "49", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("831", "49", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("832", "50", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("833", "50", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("834", "51", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("835", "51", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("836", "52", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("837", "52", "_menu_item_menu_item_parent", "237");
INSERT INTO `k2zp_postmeta` VALUES("838", "52", "_menu_item_object_id", "52");
INSERT INTO `k2zp_postmeta` VALUES("839", "52", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("840", "52", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("841", "52", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("842", "52", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("843", "52", "_menu_item_url", "http://tvaconseil.com/");
INSERT INTO `k2zp_postmeta` VALUES("845", "52", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("846", "52", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("847", "52", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("848", "52", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("849", "52", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("850", "52", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("851", "52", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("852", "52", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("853", "52", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("854", "52", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("855", "53", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("856", "53", "_menu_item_menu_item_parent", "237");
INSERT INTO `k2zp_postmeta` VALUES("857", "53", "_menu_item_object_id", "53");
INSERT INTO `k2zp_postmeta` VALUES("858", "53", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("859", "53", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("860", "53", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("861", "53", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("862", "53", "_menu_item_url", "http://www.cash-back-vat-reclaim.de/");
INSERT INTO `k2zp_postmeta` VALUES("864", "53", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("865", "53", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("866", "53", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("867", "53", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("868", "53", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("869", "53", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("870", "53", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("871", "53", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("872", "53", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("873", "53", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("874", "54", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("875", "54", "_menu_item_menu_item_parent", "237");
INSERT INTO `k2zp_postmeta` VALUES("876", "54", "_menu_item_object_id", "54");
INSERT INTO `k2zp_postmeta` VALUES("877", "54", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("878", "54", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("879", "54", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("880", "54", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("881", "54", "_menu_item_url", "http://www.unityfour.eu/en/");
INSERT INTO `k2zp_postmeta` VALUES("883", "54", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("884", "54", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("885", "54", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("886", "54", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("887", "54", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("888", "54", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("889", "54", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("890", "54", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("891", "54", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("892", "54", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("893", "55", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("894", "55", "_menu_item_menu_item_parent", "237");
INSERT INTO `k2zp_postmeta` VALUES("895", "55", "_menu_item_object_id", "55");
INSERT INTO `k2zp_postmeta` VALUES("896", "55", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("897", "55", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("898", "55", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("899", "55", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("900", "55", "_menu_item_url", "http://www.cashback.hu/");
INSERT INTO `k2zp_postmeta` VALUES("902", "55", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("903", "55", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("904", "55", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("905", "55", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("906", "55", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("907", "55", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("908", "55", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("909", "55", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("910", "55", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("911", "55", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("912", "56", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("913", "56", "_menu_item_menu_item_parent", "237");
INSERT INTO `k2zp_postmeta` VALUES("914", "56", "_menu_item_object_id", "56");
INSERT INTO `k2zp_postmeta` VALUES("915", "56", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("916", "56", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("917", "56", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("918", "56", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("919", "56", "_menu_item_url", "http://tvaconseil.com/");
INSERT INTO `k2zp_postmeta` VALUES("921", "56", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("922", "56", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("923", "56", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("924", "56", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("925", "56", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("926", "56", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("927", "56", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("928", "56", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("929", "56", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("930", "56", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("931", "57", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("932", "57", "_menu_item_menu_item_parent", "238");
INSERT INTO `k2zp_postmeta` VALUES("933", "57", "_menu_item_object_id", "57");
INSERT INTO `k2zp_postmeta` VALUES("934", "57", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("935", "57", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("936", "57", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("937", "57", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("938", "57", "_menu_item_url", "http://www.isravat.com/");
INSERT INTO `k2zp_postmeta` VALUES("940", "57", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("941", "57", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("942", "57", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("943", "57", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("944", "57", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("945", "57", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("946", "57", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("947", "57", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("948", "57", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("949", "57", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("950", "58", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("951", "58", "_menu_item_menu_item_parent", "238");
INSERT INTO `k2zp_postmeta` VALUES("952", "58", "_menu_item_object_id", "58");
INSERT INTO `k2zp_postmeta` VALUES("953", "58", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("954", "58", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("955", "58", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("956", "58", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("957", "58", "_menu_item_url", "http://tvaconseil.com/english/");
INSERT INTO `k2zp_postmeta` VALUES("959", "58", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("960", "58", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("961", "58", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("962", "58", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("963", "58", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("964", "58", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("965", "58", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("966", "58", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("967", "58", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("968", "58", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("969", "59", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("970", "59", "_menu_item_menu_item_parent", "238");
INSERT INTO `k2zp_postmeta` VALUES("971", "59", "_menu_item_object_id", "59");
INSERT INTO `k2zp_postmeta` VALUES("972", "59", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("973", "59", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("974", "59", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("975", "59", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("976", "59", "_menu_item_url", "http://tvaconseil.com/english/");
INSERT INTO `k2zp_postmeta` VALUES("978", "59", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("979", "59", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("980", "59", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("981", "59", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("982", "59", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("983", "59", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("984", "59", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("985", "59", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("986", "59", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("987", "59", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("988", "60", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("989", "60", "_menu_item_menu_item_parent", "238");
INSERT INTO `k2zp_postmeta` VALUES("990", "60", "_menu_item_object_id", "60");
INSERT INTO `k2zp_postmeta` VALUES("991", "60", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("992", "60", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("993", "60", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("994", "60", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("995", "60", "_menu_item_url", "http://www.cash-back.no/");
INSERT INTO `k2zp_postmeta` VALUES("997", "60", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("998", "60", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("999", "60", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1000", "60", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1001", "60", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1002", "60", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1003", "60", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1004", "60", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1005", "60", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1006", "60", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1007", "61", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1008", "61", "_menu_item_menu_item_parent", "238");
INSERT INTO `k2zp_postmeta` VALUES("1009", "61", "_menu_item_object_id", "61");
INSERT INTO `k2zp_postmeta` VALUES("1010", "61", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1011", "61", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1012", "61", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1013", "61", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1014", "61", "_menu_item_url", "http://www.cashback.pl/");
INSERT INTO `k2zp_postmeta` VALUES("1016", "61", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1017", "61", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1018", "61", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1019", "61", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1020", "61", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1021", "61", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1022", "61", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1023", "61", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1024", "61", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1025", "61", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1026", "62", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1027", "62", "_menu_item_menu_item_parent", "238");
INSERT INTO `k2zp_postmeta` VALUES("1028", "62", "_menu_item_object_id", "62");
INSERT INTO `k2zp_postmeta` VALUES("1029", "62", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1030", "62", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1031", "62", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1032", "62", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1033", "62", "_menu_item_url", "http://www.cessco.eu/cashback-ro/");
INSERT INTO `k2zp_postmeta` VALUES("1035", "62", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1036", "62", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1037", "62", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1038", "62", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1039", "62", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1040", "62", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1041", "62", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1042", "62", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1043", "62", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1044", "62", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1045", "63", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1046", "63", "_menu_item_menu_item_parent", "239");
INSERT INTO `k2zp_postmeta` VALUES("1047", "63", "_menu_item_object_id", "63");
INSERT INTO `k2zp_postmeta` VALUES("1048", "63", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1049", "63", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1050", "63", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1051", "63", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1052", "63", "_menu_item_url", "http://www.refundacijapdv.com/");
INSERT INTO `k2zp_postmeta` VALUES("1054", "63", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1055", "63", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1056", "63", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1057", "63", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1058", "63", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1059", "63", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1060", "63", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1061", "63", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1062", "63", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1063", "63", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1064", "64", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1065", "64", "_menu_item_menu_item_parent", "239");
INSERT INTO `k2zp_postmeta` VALUES("1066", "64", "_menu_item_object_id", "64");
INSERT INTO `k2zp_postmeta` VALUES("1067", "64", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1068", "64", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1069", "64", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1070", "64", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1071", "64", "_menu_item_url", "http://www.cessco.eu/cashback-sk/");
INSERT INTO `k2zp_postmeta` VALUES("1073", "64", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1074", "64", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1075", "64", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1076", "64", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1077", "64", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1078", "64", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1079", "64", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1080", "64", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1081", "64", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1082", "64", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1083", "52", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1084", "52", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1085", "53", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1086", "53", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1087", "54", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1088", "54", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1089", "55", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1090", "55", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1091", "56", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1092", "56", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1093", "57", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1094", "57", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1095", "58", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1096", "58", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1097", "59", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1098", "59", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1099", "60", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1100", "60", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1101", "61", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1102", "61", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1103", "62", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1104", "62", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1105", "63", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1106", "63", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1107", "64", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1108", "64", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1109", "65", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1110", "65", "_menu_item_menu_item_parent", "239");
INSERT INTO `k2zp_postmeta` VALUES("1111", "65", "_menu_item_object_id", "65");
INSERT INTO `k2zp_postmeta` VALUES("1112", "65", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1113", "65", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1114", "65", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1115", "65", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1116", "65", "_menu_item_url", "http://www.cashback.ch/");
INSERT INTO `k2zp_postmeta` VALUES("1118", "65", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1119", "65", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1120", "65", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1121", "65", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1122", "65", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1123", "65", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1124", "65", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1125", "65", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1126", "65", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1127", "65", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1128", "66", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1129", "66", "_menu_item_menu_item_parent", "239");
INSERT INTO `k2zp_postmeta` VALUES("1130", "66", "_menu_item_object_id", "66");
INSERT INTO `k2zp_postmeta` VALUES("1131", "66", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1132", "66", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1133", "66", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1134", "66", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1135", "66", "_menu_item_url", "#");
INSERT INTO `k2zp_postmeta` VALUES("1137", "66", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1138", "66", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1139", "66", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1140", "66", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1141", "66", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1142", "66", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1143", "66", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1144", "66", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1145", "66", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1146", "66", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1147", "67", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1148", "67", "_menu_item_menu_item_parent", "239");
INSERT INTO `k2zp_postmeta` VALUES("1149", "67", "_menu_item_object_id", "67");
INSERT INTO `k2zp_postmeta` VALUES("1150", "67", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1151", "67", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1152", "67", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1153", "67", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1154", "67", "_menu_item_url", "http://tvaconseil.com/english/");
INSERT INTO `k2zp_postmeta` VALUES("1156", "67", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1157", "67", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1158", "67", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1159", "67", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1160", "67", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1161", "67", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1162", "67", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1163", "67", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1164", "67", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1165", "67", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1166", "68", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1167", "68", "_menu_item_menu_item_parent", "239");
INSERT INTO `k2zp_postmeta` VALUES("1168", "68", "_menu_item_object_id", "68");
INSERT INTO `k2zp_postmeta` VALUES("1169", "68", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1170", "68", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1171", "68", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1172", "68", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1173", "68", "_menu_item_url", "http://www.cbvatamerica.com/");
INSERT INTO `k2zp_postmeta` VALUES("1175", "68", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1176", "68", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1177", "68", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("1178", "68", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1179", "68", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1180", "68", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1181", "68", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1182", "68", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1183", "68", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1184", "68", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1185", "65", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1186", "65", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1187", "66", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1188", "66", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1189", "67", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1190", "67", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1191", "68", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("1192", "68", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1193", "69", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1194", "69", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("1195", "69", "_menu_item_object_id", "69");
INSERT INTO `k2zp_postmeta` VALUES("1196", "69", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("1197", "69", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("1198", "69", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("1199", "69", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("1200", "69", "_menu_item_url", "https://login.cashbackvatreclaim.com/myportal/login.phtml");
INSERT INTO `k2zp_postmeta` VALUES("1202", "69", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("1203", "69", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("1204", "69", "_menu_menuitembtn", "1");
INSERT INTO `k2zp_postmeta` VALUES("1205", "69", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1206", "69", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("1207", "69", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("1208", "69", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1209", "69", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("1210", "69", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("1211", "69", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1212", "69", "_menu_item_icon", "fa-unlock-alt");
INSERT INTO `k2zp_postmeta` VALUES("1213", "69", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("1214", "70", "_wp_attached_file", "2015/04/20years-anniversary-cashback.png");
INSERT INTO `k2zp_postmeta` VALUES("1215", "70", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:278;s:6:\"height\";i:80;s:4:\"file\";s:40:\"2015/04/20years-anniversary-cashback.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"20years-anniversary-cashback-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"20years-anniversary-cashback-220x80.png\";s:5:\"width\";i:220;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:38:\"20years-anniversary-cashback-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:39:\"20years-anniversary-cashback-250x80.png\";s:5:\"width\";i:250;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1216", "45", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1217", "45", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1218", "46", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1219", "46", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1220", "47", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1221", "47", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1222", "48", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1223", "48", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1224", "49", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1225", "49", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1226", "50", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1227", "50", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1228", "51", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1229", "51", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1230", "52", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1231", "52", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1232", "53", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1233", "53", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1234", "54", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1235", "54", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1236", "55", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1237", "55", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1238", "56", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1239", "56", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1240", "57", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1241", "57", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1242", "58", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1243", "58", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1244", "59", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1245", "59", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1246", "60", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1247", "60", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1248", "61", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1249", "61", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1250", "62", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1251", "62", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1252", "63", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1253", "63", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1254", "64", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1255", "64", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1256", "65", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1257", "65", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1258", "66", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1259", "66", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1260", "67", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1261", "67", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1262", "68", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("1263", "68", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("1264", "71", "_wp_attached_file", "2015/04/bg.jpg");
INSERT INTO `k2zp_postmeta` VALUES("1265", "71", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:449;s:4:\"file\";s:14:\"2015/04/bg.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"bg-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"bg-1024x393.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"bg-220x150.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:12:\"bg-94x70.jpg\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:14:\"bg-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:14:\"bg-600x449.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:14:\"bg-900x449.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gallery-image\";a:4:{s:4:\"file\";s:15:\"bg-1000x384.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1266", "72", "_wp_attached_file", "2015/04/Concur-app-center.png");
INSERT INTO `k2zp_postmeta` VALUES("1267", "72", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1124;s:6:\"height\";i:449;s:4:\"file\";s:29:\"2015/04/Concur-app-center.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Concur-app-center-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Concur-app-center-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Concur-app-center-1024x409.png\";s:5:\"width\";i:1024;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Concur-app-center-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:27:\"Concur-app-center-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:29:\"Concur-app-center-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:29:\"Concur-app-center-600x449.png\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:29:\"Concur-app-center-900x449.png\";s:5:\"width\";i:900;s:6:\"height\";i:449;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"gallery-image\";a:4:{s:4:\"file\";s:30:\"Concur-app-center-1000x399.png\";s:5:\"width\";i:1000;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1268", "73", "_wp_attached_file", "2015/04/Now-available-in-the-concur-app-center.png");
INSERT INTO `k2zp_postmeta` VALUES("1269", "73", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1052;s:6:\"height\";i:93;s:4:\"file\";s:50:\"2015/04/Now-available-in-the-concur-app-center.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Now-available-in-the-concur-app-center-150x93.png\";s:5:\"width\";i:150;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Now-available-in-the-concur-app-center-300x27.png\";s:5:\"width\";i:300;s:6:\"height\";i:27;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-1024x91.png\";s:5:\"width\";i:1024;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Now-available-in-the-concur-app-center-220x93.png\";s:5:\"width\";i:220;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:48:\"Now-available-in-the-concur-app-center-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:49:\"Now-available-in-the-concur-app-center-250x93.png\";s:5:\"width\";i:250;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:49:\"Now-available-in-the-concur-app-center-600x93.png\";s:5:\"width\";i:600;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:49:\"Now-available-in-the-concur-app-center-900x93.png\";s:5:\"width\";i:900;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"gallery-image\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-1000x88.png\";s:5:\"width\";i:1000;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1270", "74", "_wp_attached_file", "2015/04/T-and-E-Cashback.png");
INSERT INTO `k2zp_postmeta` VALUES("1271", "74", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:87;s:6:\"height\";i:87;s:4:\"file\";s:28:\"2015/04/T-and-E-Cashback.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:26:\"T-and-E-Cashback-87x70.png\";s:5:\"width\";i:87;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1272", "75", "_wp_attached_file", "2015/04/Concur-app.png");
INSERT INTO `k2zp_postmeta` VALUES("1273", "75", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:39;s:6:\"height\";i:36;s:4:\"file\";s:22:\"2015/04/Concur-app.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1274", "8", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1275", "77", "_wp_attached_file", "2015/04/United-cashback.png");
INSERT INTO `k2zp_postmeta` VALUES("1276", "77", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:449;s:4:\"file\";s:27:\"2015/04/United-cashback.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"United-cashback-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"United-cashback-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"United-cashback-1024x393.png\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"United-cashback-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:25:\"United-cashback-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:27:\"United-cashback-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:27:\"United-cashback-600x449.png\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:27:\"United-cashback-900x449.png\";s:5:\"width\";i:900;s:6:\"height\";i:449;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"gallery-image\";a:4:{s:4:\"file\";s:28:\"United-cashback-1000x384.png\";s:5:\"width\";i:1000;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1277", "78", "_wp_attached_file", "2015/04/T-E-Vat-reclaim-cashback-new.jpg");
INSERT INTO `k2zp_postmeta` VALUES("1278", "78", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:449;s:4:\"file\";s:40:\"2015/04/T-E-Vat-reclaim-cashback-new.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"T-E-Vat-reclaim-cashback-new-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"T-E-Vat-reclaim-cashback-new-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"T-E-Vat-reclaim-cashback-new-1024x393.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"T-E-Vat-reclaim-cashback-new-220x150.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:38:\"T-E-Vat-reclaim-cashback-new-94x70.jpg\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:40:\"T-E-Vat-reclaim-cashback-new-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:40:\"T-E-Vat-reclaim-cashback-new-600x449.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:40:\"T-E-Vat-reclaim-cashback-new-900x449.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gallery-image\";a:4:{s:4:\"file\";s:41:\"T-E-Vat-reclaim-cashback-new-1000x384.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1279", "8", "sf_inner_background_color", "#f7f7f7");
INSERT INTO `k2zp_postmeta` VALUES("1280", "91", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1281", "91", "_edit_lock", "1427896501:1");
INSERT INTO `k2zp_postmeta` VALUES("1282", "91", "sf_testimonial_cite", "André Ruesch");
INSERT INTO `k2zp_postmeta` VALUES("1283", "91", "sf_testimonial_cite_subtext", "Vice President Corporate & Retails Banking, Baden, Credit Suisse");
INSERT INTO `k2zp_postmeta` VALUES("1284", "91", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1285", "92", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1286", "92", "_edit_lock", "1427888857:1");
INSERT INTO `k2zp_postmeta` VALUES("1287", "92", "sf_testimonial_cite", "Thomas Goldschmidt");
INSERT INTO `k2zp_postmeta` VALUES("1288", "92", "sf_testimonial_cite_subtext", "Head of Corporate Banking, Svenska Handelsbanken");
INSERT INTO `k2zp_postmeta` VALUES("1289", "92", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1290", "93", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1291", "93", "_edit_lock", "1427888943:1");
INSERT INTO `k2zp_postmeta` VALUES("1292", "93", "sf_testimonial_cite", "Alain Renouf");
INSERT INTO `k2zp_postmeta` VALUES("1293", "93", "sf_testimonial_cite_subtext", "Global Indirect Tax Manager - Worldwide, Delphi France");
INSERT INTO `k2zp_postmeta` VALUES("1294", "93", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1295", "20", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1296", "112", "_wp_attached_file", "2015/04/VAT-Maze.png");
INSERT INTO `k2zp_postmeta` VALUES("1297", "112", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2015/04/VAT-Maze.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"VAT-Maze-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"VAT-Maze-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"VAT-Maze-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:18:\"VAT-Maze-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:20:\"VAT-Maze-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:20:\"VAT-Maze-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1299", "129", "_wp_attached_file", "2015/04/Cashback-map.png");
INSERT INTO `k2zp_postmeta` VALUES("1300", "129", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:987;s:6:\"height\";i:900;s:4:\"file\";s:24:\"2015/04/Cashback-map.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Cashback-map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Cashback-map-300x274.png\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Cashback-map-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:22:\"Cashback-map-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:24:\"Cashback-map-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:24:\"Cashback-map-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:24:\"Cashback-map-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"full-width-image-gallery\";a:4:{s:4:\"file\";s:24:\"Cashback-map-987x720.png\";s:5:\"width\";i:987;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1301", "136", "_wp_attached_file", "2015/04/Our-vat-services-cashback-1.png");
INSERT INTO `k2zp_postmeta` VALUES("1302", "136", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:300;s:4:\"file\";s:39:\"2015/04/Our-vat-services-cashback-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Our-vat-services-cashback-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Our-vat-services-cashback-1-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"Our-vat-services-cashback-1-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:37:\"Our-vat-services-cashback-1-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:39:\"Our-vat-services-cashback-1-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:39:\"Our-vat-services-cashback-1-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1303", "18", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1304", "142", "_wp_attached_file", "2015/04/Clients-role.png");
INSERT INTO `k2zp_postmeta` VALUES("1305", "142", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:24:\"2015/04/Clients-role.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:22:\"Clients-role-90x70.png\";s:5:\"width\";i:90;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1306", "16", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1307", "146", "_wp_attached_file", "2015/04/Sourcing.png");
INSERT INTO `k2zp_postmeta` VALUES("1308", "146", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:20:\"2015/04/Sourcing.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:18:\"Sourcing-90x70.png\";s:5:\"width\";i:90;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1309", "148", "_wp_attached_file", "2015/04/Retriaval.png");
INSERT INTO `k2zp_postmeta` VALUES("1310", "148", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:21:\"2015/04/Retriaval.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:19:\"Retriaval-90x70.png\";s:5:\"width\";i:90;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1311", "149", "_wp_attached_file", "2015/04/Recovery.png");
INSERT INTO `k2zp_postmeta` VALUES("1312", "149", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:20:\"2015/04/Recovery.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:18:\"Recovery-90x70.png\";s:5:\"width\";i:90;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1313", "151", "_wp_attached_file", "2015/04/Refund.png");
INSERT INTO `k2zp_postmeta` VALUES("1314", "151", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:18:\"2015/04/Refund.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:16:\"Refund-90x70.png\";s:5:\"width\";i:90;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1315", "157", "_wp_attached_file", "2015/04/Recovat-logo.png");
INSERT INTO `k2zp_postmeta` VALUES("1316", "157", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:120;s:4:\"file\";s:24:\"2015/04/Recovat-logo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Recovat-logo-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Recovat-logo-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Recovat-logo-220x120.png\";s:5:\"width\";i:220;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:22:\"Recovat-logo-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:24:\"Recovat-logo-250x120.png\";s:5:\"width\";i:250;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1317", "158", "_wp_attached_file", "2015/04/engine.png");
INSERT INTO `k2zp_postmeta` VALUES("1318", "158", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:335;s:6:\"height\";i:143;s:4:\"file\";s:18:\"2015/04/engine.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"engine-150x143.png\";s:5:\"width\";i:150;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"engine-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"engine-220x143.png\";s:5:\"width\";i:220;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:16:\"engine-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:18:\"engine-250x143.png\";s:5:\"width\";i:250;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1319", "163", "_wp_attached_file", "2015/04/process-cashback.png");
INSERT INTO `k2zp_postmeta` VALUES("1320", "163", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:729;s:6:\"height\";i:149;s:4:\"file\";s:28:\"2015/04/process-cashback.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"process-cashback-150x149.png\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"process-cashback-300x61.png\";s:5:\"width\";i:300;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"process-cashback-220x149.png\";s:5:\"width\";i:220;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:26:\"process-cashback-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:28:\"process-cashback-250x149.png\";s:5:\"width\";i:250;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:28:\"process-cashback-600x149.png\";s:5:\"width\";i:600;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1321", "167", "_wp_attached_file", "2015/04/VAT-info.png");
INSERT INTO `k2zp_postmeta` VALUES("1322", "167", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:785;s:6:\"height\";i:416;s:4:\"file\";s:20:\"2015/04/VAT-info.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"VAT-info-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"VAT-info-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"VAT-info-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:18:\"VAT-info-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:20:\"VAT-info-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:20:\"VAT-info-600x416.png\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1323", "14", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1324", "12", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1325", "1", "_wp_trash_meta_status", "publish");
INSERT INTO `k2zp_postmeta` VALUES("1326", "1", "_wp_trash_meta_time", "1427895155");
INSERT INTO `k2zp_postmeta` VALUES("1327", "1", "_wp_trash_meta_comments_status", "a:1:{i:1;s:1:\"1\";}");
INSERT INTO `k2zp_postmeta` VALUES("1328", "180", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1329", "180", "_edit_lock", "1427895478:1");
INSERT INTO `k2zp_postmeta` VALUES("1330", "180", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1331", "180", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1332", "180", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1333", "180", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1334", "180", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1335", "180", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1336", "180", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1337", "180", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1338", "180", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1339", "180", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1340", "180", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1341", "180", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1342", "180", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1343", "180", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1344", "180", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1345", "180", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1346", "180", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1347", "180", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1348", "180", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1349", "180", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1350", "180", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1351", "180", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1352", "180", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1353", "180", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1354", "180", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1355", "180", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1356", "180", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1357", "180", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1358", "180", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1359", "180", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1360", "180", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1361", "180", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1362", "180", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1364", "180", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1365", "180", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1373", "180", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1374", "182", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1375", "182", "_edit_lock", "1427895556:1");
INSERT INTO `k2zp_postmeta` VALUES("1376", "182", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1377", "182", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1378", "182", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1379", "182", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1380", "182", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1381", "182", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1382", "182", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1383", "182", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1384", "182", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1385", "182", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1386", "182", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1387", "182", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1388", "182", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1389", "182", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1390", "182", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1391", "182", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1392", "182", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1393", "182", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1394", "182", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1395", "182", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1396", "182", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1397", "182", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1398", "182", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1399", "182", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1400", "182", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1401", "182", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1402", "182", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1403", "182", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1404", "182", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1405", "182", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1406", "182", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1407", "182", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1408", "182", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1409", "182", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1410", "182", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1411", "182", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1412", "182", "_dp_original", "180");
INSERT INTO `k2zp_postmeta` VALUES("1415", "185", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1416", "185", "_edit_lock", "1427895646:1");
INSERT INTO `k2zp_postmeta` VALUES("1417", "185", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1418", "185", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1419", "185", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1420", "185", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1421", "185", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1422", "185", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1423", "185", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1424", "185", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1425", "185", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1426", "185", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1427", "185", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1428", "185", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1429", "185", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1430", "185", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1431", "185", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1432", "185", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1433", "185", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1434", "185", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1435", "185", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1436", "185", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1437", "185", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1438", "185", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1439", "185", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1440", "185", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1441", "185", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1442", "185", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1443", "185", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1444", "185", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1445", "185", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1446", "185", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1447", "185", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1448", "185", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1449", "185", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1450", "185", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1451", "185", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1452", "185", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1454", "185", "_dp_original", "182");
INSERT INTO `k2zp_postmeta` VALUES("1457", "188", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1458", "188", "_edit_lock", "1427895670:1");
INSERT INTO `k2zp_postmeta` VALUES("1459", "188", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1460", "188", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1461", "188", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1462", "188", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1463", "188", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1464", "188", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1465", "188", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1466", "188", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1467", "188", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1468", "188", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1469", "188", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1470", "188", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1471", "188", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1472", "188", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1473", "188", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1474", "188", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1475", "188", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1476", "188", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1477", "188", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1478", "188", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1479", "188", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1480", "188", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1481", "188", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1482", "188", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1483", "188", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1484", "188", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1485", "188", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1486", "188", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1487", "188", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1488", "188", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1489", "188", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1490", "188", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1491", "188", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1492", "188", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1493", "188", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1494", "188", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1496", "188", "_dp_original", "185");
INSERT INTO `k2zp_postmeta` VALUES("1498", "190", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1499", "190", "_edit_lock", "1427895720:1");
INSERT INTO `k2zp_postmeta` VALUES("1500", "190", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1501", "190", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1502", "190", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1503", "190", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1504", "190", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1505", "190", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1506", "190", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1507", "190", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1508", "190", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1509", "190", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1510", "190", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1511", "190", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1512", "190", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1513", "190", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1514", "190", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1515", "190", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1516", "190", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1517", "190", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1518", "190", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1519", "190", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1520", "190", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1521", "190", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1522", "190", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1523", "190", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1524", "190", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1525", "190", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1526", "190", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1527", "190", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1528", "190", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1529", "190", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1530", "190", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1531", "190", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1532", "190", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1533", "190", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1534", "190", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1535", "190", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1537", "190", "_dp_original", "188");
INSERT INTO `k2zp_postmeta` VALUES("1539", "192", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1540", "192", "_edit_lock", "1427895763:1");
INSERT INTO `k2zp_postmeta` VALUES("1541", "192", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1542", "192", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1543", "192", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1544", "192", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1545", "192", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1546", "192", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1547", "192", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1548", "192", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1549", "192", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1550", "192", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1551", "192", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1552", "192", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1553", "192", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1554", "192", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1555", "192", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1556", "192", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1557", "192", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1558", "192", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1559", "192", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1560", "192", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1561", "192", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1562", "192", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1563", "192", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1564", "192", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1565", "192", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1566", "192", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1567", "192", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1568", "192", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1569", "192", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1570", "192", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1571", "192", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1572", "192", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1573", "192", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1574", "192", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1575", "192", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1576", "192", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1578", "192", "_dp_original", "190");
INSERT INTO `k2zp_postmeta` VALUES("1580", "194", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1581", "194", "_edit_lock", "1427895825:1");
INSERT INTO `k2zp_postmeta` VALUES("1582", "194", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1583", "194", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1584", "194", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1585", "194", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1586", "194", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1587", "194", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1588", "194", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1589", "194", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1590", "194", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1591", "194", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1592", "194", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1593", "194", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1594", "194", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1595", "194", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1596", "194", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1597", "194", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1598", "194", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1599", "194", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1600", "194", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1601", "194", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1602", "194", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1603", "194", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1604", "194", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1605", "194", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1606", "194", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1607", "194", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1608", "194", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1609", "194", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1610", "194", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1611", "194", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1612", "194", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1613", "194", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1614", "194", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1615", "194", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1616", "194", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1617", "194", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1619", "194", "_dp_original", "192");
INSERT INTO `k2zp_postmeta` VALUES("1621", "196", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1622", "196", "_edit_lock", "1427895861:1");
INSERT INTO `k2zp_postmeta` VALUES("1623", "196", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1624", "196", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1625", "196", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1626", "196", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1627", "196", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1628", "196", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1629", "196", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1630", "196", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1631", "196", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1632", "196", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1633", "196", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1634", "196", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1635", "196", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1636", "196", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1637", "196", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1638", "196", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1639", "196", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1640", "196", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1641", "196", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1642", "196", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1643", "196", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1644", "196", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1645", "196", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1646", "196", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1647", "196", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1648", "196", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1649", "196", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1650", "196", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1651", "196", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1652", "196", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1653", "196", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1654", "196", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1655", "196", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1656", "196", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1657", "196", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1658", "196", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1660", "196", "_dp_original", "194");
INSERT INTO `k2zp_postmeta` VALUES("1662", "198", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1663", "198", "_edit_lock", "1427895913:1");
INSERT INTO `k2zp_postmeta` VALUES("1664", "198", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1665", "198", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1666", "198", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1667", "198", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1668", "198", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1669", "198", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1670", "198", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1671", "198", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1672", "198", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1673", "198", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1674", "198", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1675", "198", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1676", "198", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1677", "198", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1678", "198", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1679", "198", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1680", "198", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1681", "198", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1682", "198", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1683", "198", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1684", "198", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1685", "198", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1686", "198", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1687", "198", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1688", "198", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1689", "198", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1690", "198", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1691", "198", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1692", "198", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1693", "198", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1694", "198", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1695", "198", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1696", "198", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1697", "198", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1698", "198", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1699", "198", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1701", "198", "_dp_original", "196");
INSERT INTO `k2zp_postmeta` VALUES("1703", "200", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1704", "200", "_edit_lock", "1427895940:1");
INSERT INTO `k2zp_postmeta` VALUES("1705", "200", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1706", "200", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1707", "200", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1708", "200", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1709", "200", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1710", "200", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1711", "200", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1712", "200", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1713", "200", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1714", "200", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1715", "200", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1716", "200", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1717", "200", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1718", "200", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1719", "200", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1720", "200", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1721", "200", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1722", "200", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1723", "200", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1724", "200", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1725", "200", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1726", "200", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1727", "200", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1728", "200", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1729", "200", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1730", "200", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1731", "200", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1732", "200", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1733", "200", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1734", "200", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1735", "200", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1736", "200", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1737", "200", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1738", "200", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1739", "200", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1740", "200", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1742", "200", "_dp_original", "198");
INSERT INTO `k2zp_postmeta` VALUES("1744", "202", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1745", "202", "_edit_lock", "1427895968:1");
INSERT INTO `k2zp_postmeta` VALUES("1746", "202", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1747", "202", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1748", "202", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1749", "202", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1750", "202", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1751", "202", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1752", "202", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1753", "202", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1754", "202", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1755", "202", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1756", "202", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1757", "202", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1758", "202", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1759", "202", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1760", "202", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1761", "202", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1762", "202", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1763", "202", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1764", "202", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1765", "202", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1766", "202", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1767", "202", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1768", "202", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1769", "202", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1770", "202", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1771", "202", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1772", "202", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1773", "202", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1774", "202", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1775", "202", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1776", "202", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1777", "202", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1778", "202", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1779", "202", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1780", "202", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1781", "202", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1783", "202", "_dp_original", "200");
INSERT INTO `k2zp_postmeta` VALUES("1785", "204", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1786", "204", "_edit_lock", "1427895998:1");
INSERT INTO `k2zp_postmeta` VALUES("1787", "204", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1788", "204", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1789", "204", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1790", "204", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1791", "204", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1792", "204", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1793", "204", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1794", "204", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1795", "204", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1796", "204", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1797", "204", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1798", "204", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1799", "204", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1800", "204", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1801", "204", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1802", "204", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1803", "204", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1804", "204", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1805", "204", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1806", "204", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1807", "204", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1808", "204", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1809", "204", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1810", "204", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1811", "204", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1812", "204", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1813", "204", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1814", "204", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1815", "204", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1816", "204", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1817", "204", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1818", "204", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1819", "204", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1820", "204", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1821", "204", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1822", "204", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1824", "204", "_dp_original", "202");
INSERT INTO `k2zp_postmeta` VALUES("1826", "206", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1827", "206", "_edit_lock", "1427896093:1");
INSERT INTO `k2zp_postmeta` VALUES("1828", "206", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1829", "206", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1830", "206", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1831", "206", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1832", "206", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1833", "206", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1834", "206", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1835", "206", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1836", "206", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1837", "206", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1838", "206", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1839", "206", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1840", "206", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1841", "206", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1842", "206", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1843", "206", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1844", "206", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1845", "206", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1846", "206", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1847", "206", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1848", "206", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1849", "206", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1850", "206", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1851", "206", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1852", "206", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1853", "206", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1854", "206", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1855", "206", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1856", "206", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1857", "206", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1858", "206", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1859", "206", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1860", "206", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1861", "206", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1862", "206", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1863", "206", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1865", "206", "_dp_original", "204");
INSERT INTO `k2zp_postmeta` VALUES("1867", "208", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1868", "208", "_edit_lock", "1427896231:1");
INSERT INTO `k2zp_postmeta` VALUES("1869", "208", "sf_thumbnail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1870", "208", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1871", "208", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1872", "208", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1873", "208", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1874", "208", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1875", "208", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1876", "208", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1877", "208", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1878", "208", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1879", "208", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1880", "208", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1881", "208", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1882", "208", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1883", "208", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1884", "208", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1885", "208", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1886", "208", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1887", "208", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1888", "208", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1889", "208", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1890", "208", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1891", "208", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1892", "208", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1893", "208", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1894", "208", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1895", "208", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1896", "208", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1897", "208", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1898", "208", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1899", "208", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1900", "208", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1901", "208", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1902", "208", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1903", "208", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1904", "208", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1906", "208", "_dp_original", "206");
INSERT INTO `k2zp_postmeta` VALUES("1907", "209", "_wp_attached_file", "2015/04/Now-available-in-the-concur-app-center.jpg");
INSERT INTO `k2zp_postmeta` VALUES("1908", "209", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:449;s:4:\"file\";s:50:\"2015/04/Now-available-in-the-concur-app-center.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Now-available-in-the-concur-app-center-1024x393.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-220x150.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:48:\"Now-available-in-the-concur-app-center-94x70.jpg\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-600x449.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:50:\"Now-available-in-the-concur-app-center-900x449.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gallery-image\";a:4:{s:4:\"file\";s:51:\"Now-available-in-the-concur-app-center-1000x384.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1909", "208", "_thumbnail_id", "209");
INSERT INTO `k2zp_postmeta` VALUES("1910", "210", "_wp_attached_file", "2015/04/App-center-1.png");
INSERT INTO `k2zp_postmeta` VALUES("1911", "210", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:271;s:6:\"height\";i:250;s:4:\"file\";s:24:\"2015/04/App-center-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"App-center-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"App-center-1-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:22:\"App-center-1-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:24:\"App-center-1-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("1915", "212", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1916", "212", "_edit_lock", "1427896274:1");
INSERT INTO `k2zp_postmeta` VALUES("1917", "212", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1918", "212", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1919", "212", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1920", "212", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1921", "212", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1922", "212", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1923", "212", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1924", "212", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1925", "212", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1926", "212", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1927", "212", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1928", "212", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1929", "212", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1930", "212", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1931", "212", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1932", "212", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1933", "212", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1934", "212", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1935", "212", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1936", "212", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1937", "212", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1938", "212", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1939", "212", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1940", "212", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1941", "212", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1942", "212", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1943", "212", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1944", "212", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1945", "212", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1946", "212", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1947", "212", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1948", "212", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1949", "212", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1950", "212", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1951", "212", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1952", "212", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1955", "212", "_dp_original", "208");
INSERT INTO `k2zp_postmeta` VALUES("1957", "214", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1958", "214", "_edit_lock", "1427896299:1");
INSERT INTO `k2zp_postmeta` VALUES("1959", "214", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("1960", "214", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("1961", "214", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("1962", "214", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("1963", "214", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("1964", "214", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1965", "214", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("1966", "214", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("1967", "214", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("1968", "214", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("1969", "214", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("1970", "214", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("1971", "214", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("1972", "214", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("1973", "214", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1974", "214", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("1975", "214", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("1976", "214", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1977", "214", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("1978", "214", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1979", "214", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("1980", "214", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("1981", "214", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("1982", "214", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1983", "214", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("1984", "214", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("1985", "214", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1986", "214", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("1987", "214", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("1988", "214", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1989", "214", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1990", "214", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1991", "214", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("1992", "214", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("1993", "214", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("1994", "214", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("1996", "214", "_dp_original", "212");
INSERT INTO `k2zp_postmeta` VALUES("1998", "216", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("1999", "216", "_edit_lock", "1427896326:1");
INSERT INTO `k2zp_postmeta` VALUES("2000", "216", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("2001", "216", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("2002", "216", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("2003", "216", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("2004", "216", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("2005", "216", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2006", "216", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("2007", "216", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("2008", "216", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("2009", "216", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("2010", "216", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("2011", "216", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("2012", "216", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("2013", "216", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("2014", "216", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2015", "216", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2016", "216", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("2017", "216", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2018", "216", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("2019", "216", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2020", "216", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("2021", "216", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("2022", "216", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("2023", "216", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2024", "216", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2025", "216", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("2026", "216", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2027", "216", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2028", "216", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("2029", "216", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2030", "216", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2031", "216", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2032", "216", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2033", "216", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("2034", "216", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2035", "216", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("2037", "216", "_dp_original", "214");
INSERT INTO `k2zp_postmeta` VALUES("2039", "218", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("2040", "218", "_edit_lock", "1427896350:1");
INSERT INTO `k2zp_postmeta` VALUES("2041", "218", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("2042", "218", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("2043", "218", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("2044", "218", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("2045", "218", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("2046", "218", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2047", "218", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("2048", "218", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("2049", "218", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("2050", "218", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("2051", "218", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("2052", "218", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("2053", "218", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("2054", "218", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("2055", "218", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2056", "218", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2057", "218", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("2058", "218", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2059", "218", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("2060", "218", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2061", "218", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("2062", "218", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("2063", "218", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("2064", "218", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2065", "218", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2066", "218", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("2067", "218", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2068", "218", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2069", "218", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("2070", "218", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2071", "218", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2072", "218", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2073", "218", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2074", "218", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("2075", "218", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2076", "218", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("2078", "218", "_dp_original", "216");
INSERT INTO `k2zp_postmeta` VALUES("2080", "220", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("2081", "220", "_edit_lock", "1427896378:1");
INSERT INTO `k2zp_postmeta` VALUES("2082", "220", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("2083", "220", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("2084", "220", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("2085", "220", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("2086", "220", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("2087", "220", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2088", "220", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("2089", "220", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("2090", "220", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("2091", "220", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("2092", "220", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("2093", "220", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("2094", "220", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("2095", "220", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("2096", "220", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2097", "220", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2098", "220", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("2099", "220", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2100", "220", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("2101", "220", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2102", "220", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("2103", "220", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("2104", "220", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("2105", "220", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2106", "220", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2107", "220", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("2108", "220", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2109", "220", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2110", "220", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("2111", "220", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2112", "220", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2113", "220", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2114", "220", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2115", "220", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("2116", "220", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2117", "220", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("2119", "220", "_dp_original", "218");
INSERT INTO `k2zp_postmeta` VALUES("2121", "222", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("2122", "222", "_edit_lock", "1427896403:1");
INSERT INTO `k2zp_postmeta` VALUES("2123", "222", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("2124", "222", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("2125", "222", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("2126", "222", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("2127", "222", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("2128", "222", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2129", "222", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("2130", "222", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("2131", "222", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("2132", "222", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("2133", "222", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("2134", "222", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("2135", "222", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("2136", "222", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("2137", "222", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2138", "222", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2139", "222", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("2140", "222", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2141", "222", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("2142", "222", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2143", "222", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("2144", "222", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("2145", "222", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("2146", "222", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2147", "222", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2148", "222", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("2149", "222", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2150", "222", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2151", "222", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("2152", "222", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2153", "222", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2154", "222", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2155", "222", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2156", "222", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("2157", "222", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2158", "222", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("2160", "222", "_dp_original", "220");
INSERT INTO `k2zp_postmeta` VALUES("2162", "224", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("2163", "224", "_edit_lock", "1427896499:1");
INSERT INTO `k2zp_postmeta` VALUES("2164", "224", "sf_thumbnail_type", "none");
INSERT INTO `k2zp_postmeta` VALUES("2165", "224", "sf_thumbnail_link_type", "link_to_post");
INSERT INTO `k2zp_postmeta` VALUES("2166", "224", "sf_thumbnail_content_main_detail", "0");
INSERT INTO `k2zp_postmeta` VALUES("2167", "224", "sf_detail_type", "image");
INSERT INTO `k2zp_postmeta` VALUES("2168", "224", "sf_page_title", "1");
INSERT INTO `k2zp_postmeta` VALUES("2169", "224", "sf_page_title_style", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2170", "224", "sf_bg_opacity_title", "0");
INSERT INTO `k2zp_postmeta` VALUES("2171", "224", "sf_page_title_text_style", "light");
INSERT INTO `k2zp_postmeta` VALUES("2172", "224", "sf_page_title_text_align", "left");
INSERT INTO `k2zp_postmeta` VALUES("2173", "224", "sf_page_title_height", "400");
INSERT INTO `k2zp_postmeta` VALUES("2174", "224", "sf_no_breadcrumbs", "0");
INSERT INTO `k2zp_postmeta` VALUES("2175", "224", "sf_background_image_size", "cover");
INSERT INTO `k2zp_postmeta` VALUES("2176", "224", "sf_inner_background_image_size", "auto");
INSERT INTO `k2zp_postmeta` VALUES("2177", "224", "sf_download_button", "0");
INSERT INTO `k2zp_postmeta` VALUES("2178", "224", "sf_page_header_type", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2179", "224", "sf_fw_media_display", "standard");
INSERT INTO `k2zp_postmeta` VALUES("2180", "224", "sf_media_height", "500");
INSERT INTO `k2zp_postmeta` VALUES("2181", "224", "sf_extra_paragraph_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2182", "224", "sf_author_info", "0");
INSERT INTO `k2zp_postmeta` VALUES("2183", "224", "sf_social_sharing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2184", "224", "sf_remove_next_prev", "0");
INSERT INTO `k2zp_postmeta` VALUES("2185", "224", "sf_related_articles", "0");
INSERT INTO `k2zp_postmeta` VALUES("2186", "224", "sf_remove_promo_bar", "0");
INSERT INTO `k2zp_postmeta` VALUES("2187", "224", "sf_no_top_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2188", "224", "sf_no_bottom_spacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2189", "224", "sf_sidebar_config", "no-sidebars");
INSERT INTO `k2zp_postmeta` VALUES("2190", "224", "sf_left_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2191", "224", "sf_right_sidebar", "Sidebar-1");
INSERT INTO `k2zp_postmeta` VALUES("2192", "224", "sf_review_post", "0");
INSERT INTO `k2zp_postmeta` VALUES("2193", "224", "sf_review_cat_1_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2194", "224", "sf_review_cat_2_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2195", "224", "sf_review_cat_3_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2196", "224", "sf_review_cat_4_value", "0");
INSERT INTO `k2zp_postmeta` VALUES("2197", "224", "_spb_js_status", "false");
INSERT INTO `k2zp_postmeta` VALUES("2198", "224", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2199", "224", "_li_love_count", "1");
INSERT INTO `k2zp_postmeta` VALUES("2201", "224", "_dp_original", "222");
INSERT INTO `k2zp_postmeta` VALUES("2203", "10", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2204", "10", "_post_restored_from", "a:3:{s:20:\"restored_revision_id\";i:227;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1427897454;}");
INSERT INTO `k2zp_postmeta` VALUES("2205", "236", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2206", "236", "_menu_item_menu_item_parent", "44");
INSERT INTO `k2zp_postmeta` VALUES("2207", "236", "_menu_item_object_id", "236");
INSERT INTO `k2zp_postmeta` VALUES("2208", "236", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2209", "236", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("2210", "236", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("2211", "236", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("2212", "236", "_menu_item_url", "#");
INSERT INTO `k2zp_postmeta` VALUES("2214", "236", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("2215", "236", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("2216", "236", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("2217", "236", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2218", "236", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2219", "236", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("2220", "236", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2221", "236", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("2222", "236", "_menu_megatitle", "1");
INSERT INTO `k2zp_postmeta` VALUES("2223", "236", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2224", "236", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("2225", "236", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("2226", "236", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("2227", "236", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("2228", "237", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2229", "237", "_menu_item_menu_item_parent", "44");
INSERT INTO `k2zp_postmeta` VALUES("2230", "237", "_menu_item_object_id", "237");
INSERT INTO `k2zp_postmeta` VALUES("2231", "237", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2232", "237", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("2233", "237", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("2234", "237", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("2235", "237", "_menu_item_url", "#");
INSERT INTO `k2zp_postmeta` VALUES("2237", "237", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("2238", "237", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("2239", "237", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("2240", "237", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2241", "237", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2242", "237", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("2243", "237", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2244", "237", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("2245", "237", "_menu_megatitle", "1");
INSERT INTO `k2zp_postmeta` VALUES("2246", "237", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2247", "238", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2248", "238", "_menu_item_menu_item_parent", "44");
INSERT INTO `k2zp_postmeta` VALUES("2249", "238", "_menu_item_object_id", "238");
INSERT INTO `k2zp_postmeta` VALUES("2250", "238", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2251", "238", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("2252", "238", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("2253", "238", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("2254", "238", "_menu_item_url", "#");
INSERT INTO `k2zp_postmeta` VALUES("2256", "238", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("2257", "238", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("2258", "238", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("2259", "238", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2260", "238", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2261", "238", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("2262", "238", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2263", "238", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("2264", "238", "_menu_megatitle", "1");
INSERT INTO `k2zp_postmeta` VALUES("2265", "238", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2266", "239", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2267", "239", "_menu_item_menu_item_parent", "44");
INSERT INTO `k2zp_postmeta` VALUES("2268", "239", "_menu_item_object_id", "239");
INSERT INTO `k2zp_postmeta` VALUES("2269", "239", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2270", "239", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("2271", "239", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("2272", "239", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("2273", "239", "_menu_item_url", "#");
INSERT INTO `k2zp_postmeta` VALUES("2275", "239", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("2276", "239", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("2277", "239", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("2278", "239", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2279", "239", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2280", "239", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("2281", "239", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2282", "239", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("2283", "239", "_menu_megatitle", "1");
INSERT INTO `k2zp_postmeta` VALUES("2284", "239", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2285", "237", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("2286", "237", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("2287", "238", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("2288", "238", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("2289", "239", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("2290", "239", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("2291", "237", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("2292", "237", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("2293", "238", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("2294", "238", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("2295", "239", "_menu_item_htmlcontent", "");
INSERT INTO `k2zp_postmeta` VALUES("2296", "239", "_menu_item_width", "");
INSERT INTO `k2zp_postmeta` VALUES("2297", "240", "_edit_last", "1");
INSERT INTO `k2zp_postmeta` VALUES("2298", "240", "_edit_lock", "1427956751:1");
INSERT INTO `k2zp_postmeta` VALUES("2299", "241", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("2300", "241", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("2301", "241", "_menu_item_object_id", "18");
INSERT INTO `k2zp_postmeta` VALUES("2302", "241", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("2303", "241", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("2304", "241", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("2305", "241", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("2306", "241", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("2308", "241", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("2309", "241", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("2310", "241", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("2311", "241", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2312", "241", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2313", "241", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("2314", "241", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2315", "241", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("2316", "241", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2317", "241", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2318", "242", "_menu_item_type", "post_type");
INSERT INTO `k2zp_postmeta` VALUES("2319", "242", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("2320", "242", "_menu_item_object_id", "10");
INSERT INTO `k2zp_postmeta` VALUES("2321", "242", "_menu_item_object", "page");
INSERT INTO `k2zp_postmeta` VALUES("2322", "242", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("2323", "242", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("2324", "242", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("2325", "242", "_menu_item_url", "");
INSERT INTO `k2zp_postmeta` VALUES("2327", "242", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("2328", "242", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("2329", "242", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("2330", "242", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2331", "242", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2332", "242", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("2333", "242", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2334", "242", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("2335", "242", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2336", "242", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2337", "243", "_menu_item_type", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2338", "243", "_menu_item_menu_item_parent", "0");
INSERT INTO `k2zp_postmeta` VALUES("2339", "243", "_menu_item_object_id", "243");
INSERT INTO `k2zp_postmeta` VALUES("2340", "243", "_menu_item_object", "custom");
INSERT INTO `k2zp_postmeta` VALUES("2341", "243", "_menu_item_target", "");
INSERT INTO `k2zp_postmeta` VALUES("2342", "243", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `k2zp_postmeta` VALUES("2343", "243", "_menu_item_xfn", "");
INSERT INTO `k2zp_postmeta` VALUES("2344", "243", "_menu_item_url", "https://login.cashbackvatreclaim.com/myportal/login.phtml");
INSERT INTO `k2zp_postmeta` VALUES("2346", "243", "_menu_megamenu", "0");
INSERT INTO `k2zp_postmeta` VALUES("2347", "243", "_menu_is_naturalwidth", "0");
INSERT INTO `k2zp_postmeta` VALUES("2348", "243", "_menu_menuitembtn", "0");
INSERT INTO `k2zp_postmeta` VALUES("2349", "243", "_menu_loggedinvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2350", "243", "_menu_loggedoutvis", "0");
INSERT INTO `k2zp_postmeta` VALUES("2351", "243", "_menu_newbadge", "0");
INSERT INTO `k2zp_postmeta` VALUES("2352", "243", "_menu_is_altstyle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2353", "243", "_menu_hideheadings", "0");
INSERT INTO `k2zp_postmeta` VALUES("2354", "243", "_menu_megatitle", "0");
INSERT INTO `k2zp_postmeta` VALUES("2355", "243", "_menu_nocolumnspacing", "0");
INSERT INTO `k2zp_postmeta` VALUES("2356", "241", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("2357", "241", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("2358", "242", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("2359", "242", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("2360", "243", "_menu_item_icon", "");
INSERT INTO `k2zp_postmeta` VALUES("2361", "243", "_menu_megamenucols", "1");
INSERT INTO `k2zp_postmeta` VALUES("2362", "244", "_wp_attached_file", "2015/04/bg-header.png");
INSERT INTO `k2zp_postmeta` VALUES("2363", "244", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:20;s:6:\"height\";i:34;s:4:\"file\";s:21:\"2015/04/bg-header.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2364", "244", "_edit_lock", "1427965150:1");
INSERT INTO `k2zp_postmeta` VALUES("2365", "245", "_wp_attached_file", "2015/04/bg-content.png");
INSERT INTO `k2zp_postmeta` VALUES("2366", "245", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:22;s:6:\"height\";i:37;s:4:\"file\";s:22:\"2015/04/bg-content.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2367", "8", "sf_background_image", "245");
INSERT INTO `k2zp_postmeta` VALUES("2368", "253", "_wp_attached_file", "2015/04/Reclaim-VAT-Cashback.png");
INSERT INTO `k2zp_postmeta` VALUES("2369", "253", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2015/04/Reclaim-VAT-Cashback.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Reclaim-VAT-Cashback-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Reclaim-VAT-Cashback-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Reclaim-VAT-Cashback-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:30:\"Reclaim-VAT-Cashback-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:32:\"Reclaim-VAT-Cashback-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:32:\"Reclaim-VAT-Cashback-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2370", "30", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2371", "260", "_wp_attached_file", "2015/04/TE-VAT-Retrieval.jpg");
INSERT INTO `k2zp_postmeta` VALUES("2372", "260", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2015/04/TE-VAT-Retrieval.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"TE-VAT-Retrieval-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"TE-VAT-Retrieval-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"TE-VAT-Retrieval-220x150.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:26:\"TE-VAT-Retrieval-94x70.jpg\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:28:\"TE-VAT-Retrieval-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:28:\"TE-VAT-Retrieval-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2373", "262", "_wp_attached_file", "2015/04/T-e-system.png");
INSERT INTO `k2zp_postmeta` VALUES("2374", "262", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:795;s:6:\"height\";i:1788;s:4:\"file\";s:22:\"2015/04/T-e-system.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"T-e-system-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"T-e-system-133x300.png\";s:5:\"width\";i:133;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"T-e-system-455x1024.png\";s:5:\"width\";i:455;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"T-e-system-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:20:\"T-e-system-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:22:\"T-e-system-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:22:\"T-e-system-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"thumb-image-twocol\";a:4:{s:4:\"file\";s:22:\"T-e-system-795x675.png\";s:5:\"width\";i:795;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"thumb-image-onecol\";a:4:{s:4:\"file\";s:23:\"T-e-system-795x1200.png\";s:5:\"width\";i:795;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"large-square\";a:4:{s:4:\"file\";s:23:\"T-e-system-795x1200.png\";s:5:\"width\";i:795;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"full-width-image-gallery\";a:4:{s:4:\"file\";s:22:\"T-e-system-795x720.png\";s:5:\"width\";i:795;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2375", "28", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2376", "264", "_wp_attached_file", "2015/04/Concur.png");
INSERT INTO `k2zp_postmeta` VALUES("2377", "264", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:108;s:4:\"file\";s:18:\"2015/04/Concur.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:16:\"Concur-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2378", "266", "_wp_attached_file", "2015/04/KDS.png");
INSERT INTO `k2zp_postmeta` VALUES("2379", "266", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:108;s:4:\"file\";s:15:\"2015/04/KDS.png\";s:5:\"sizes\";a:1:{s:12:\"widget-image\";a:4:{s:4:\"file\";s:13:\"KDS-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2380", "276", "_wp_attached_file", "2015/04/Vat-recovery-aviation.png");
INSERT INTO `k2zp_postmeta` VALUES("2381", "276", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2015/04/Vat-recovery-aviation.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Vat-recovery-aviation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Vat-recovery-aviation-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Vat-recovery-aviation-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:31:\"Vat-recovery-aviation-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:33:\"Vat-recovery-aviation-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:33:\"Vat-recovery-aviation-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2382", "26", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2383", "281", "_wp_attached_file", "2015/04/Vatalytics.png");
INSERT INTO `k2zp_postmeta` VALUES("2384", "281", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:120;s:4:\"file\";s:22:\"2015/04/Vatalytics.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Vatalytics-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Vatalytics-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Vatalytics-220x120.png\";s:5:\"width\";i:220;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:20:\"Vatalytics-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:22:\"Vatalytics-250x120.png\";s:5:\"width\";i:250;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2385", "282", "_wp_attached_file", "2015/04/vatalytics_engine.png");
INSERT INTO `k2zp_postmeta` VALUES("2386", "282", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:721;s:6:\"height\";i:163;s:4:\"file\";s:29:\"2015/04/vatalytics_engine.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"vatalytics_engine-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"vatalytics_engine-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"vatalytics_engine-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:27:\"vatalytics_engine-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:29:\"vatalytics_engine-250x163.png\";s:5:\"width\";i:250;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:29:\"vatalytics_engine-600x163.png\";s:5:\"width\";i:600;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2387", "24", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2388", "284", "_wp_attached_file", "2015/04/Local-VAT-Cashback.png");
INSERT INTO `k2zp_postmeta` VALUES("2389", "284", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2015/04/Local-VAT-Cashback.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Local-VAT-Cashback-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Local-VAT-Cashback-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"Local-VAT-Cashback-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:28:\"Local-VAT-Cashback-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:30:\"Local-VAT-Cashback-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:30:\"Local-VAT-Cashback-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2390", "287", "_wp_attached_file", "2015/04/VAT-Consulting-Cashback.png");
INSERT INTO `k2zp_postmeta` VALUES("2391", "287", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2015/04/VAT-Consulting-Cashback.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"VAT-Consulting-Cashback-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"VAT-Consulting-Cashback-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"VAT-Consulting-Cashback-220x150.png\";s:5:\"width\";i:220;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"widget-image\";a:4:{s:4:\"file\";s:33:\"VAT-Consulting-Cashback-94x70.png\";s:5:\"width\";i:94;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"thumb-square\";a:4:{s:4:\"file\";s:35:\"VAT-Consulting-Cashback-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"thumb-image\";a:4:{s:4:\"file\";s:35:\"VAT-Consulting-Cashback-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `k2zp_postmeta` VALUES("2392", "22", "slide_template", "default");
INSERT INTO `k2zp_postmeta` VALUES("2393", "240", "_wp_trash_meta_status", "draft");
INSERT INTO `k2zp_postmeta` VALUES("2394", "240", "_wp_trash_meta_time", "1427965281");

/* INSERT TABLE DATA: k2zp_posts */
INSERT INTO `k2zp_posts` VALUES("1", "1", "2015-03-30 15:43:09", "2015-03-30 15:43:09", "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!", "Hello world!", "", "trash", "open", "open", "", "hello-world", "", "", "2015-04-01 15:32:35", "2015-04-01 13:32:35", "", "0", "http://www.united.sommar.se/?p=1", "0", "post", "", "1");
INSERT INTO `k2zp_posts` VALUES("2", "1", "2015-03-30 15:43:09", "2015-03-30 15:43:09", "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.", "About", "", "trash", "open", "open", "", "about", "", "", "2015-04-01 08:50:57", "2015-04-01 08:50:57", "", "0", "http://www.united.sommar.se/?page_id=2", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("6", "1", "2015-04-01 08:47:56", "2015-04-01 08:47:56", "", "Admin-login", "", "inherit", "open", "open", "", "admin-login", "", "", "2015-04-01 08:47:56", "2015-04-01 08:47:56", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/Admin-login.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("7", "1", "2015-04-01 08:50:57", "2015-04-01 08:50:57", "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.", "About", "", "inherit", "open", "open", "", "2-revision-v1", "", "", "2015-04-01 08:50:57", "2015-04-01 08:50:57", "", "2", "http://www.united.sommar.se/uncategorized/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("8", "1", "2015-04-01 08:51:30", "2015-04-01 08:51:30", "[spb_row wrap_type=\"content-width\" row_bg_type=\"image\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_image=\"245\" bg_type=\"pattern\" parallax_image_height=\"content-height\" parallax_image_movement=\"scroll\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "publish", "open", "open", "", "united-cashback-20-years-of-vat-recovery", "", "", "2015-04-02 08:52:04", "2015-04-02 06:52:04", "", "0", "http://www.united.sommar.se/?page_id=8", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("9", "1", "2015-04-01 08:51:30", "2015-04-01 08:51:30", "", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 08:51:30", "2015-04-01 08:51:30", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("10", "1", "2015-04-01 08:51:50", "2015-04-01 08:51:50", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>Contact your local office</h3>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Become a Member Firm</h3>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Austria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Management GmbH\r\nVienna, Austria\r\nTel: 43 1803 3307\r\nEmail: <a href=\"mailto:office@cashback.at\">office@cashback.at</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Latvia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Bahrain\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Bahrain\r\nManama , Bahrain\r\nTel. 973 17224567\r\nEmail: <a href=\"mailto:veronicaq@cashbackbahrain.com\">veronicaq@cashbackbahrain.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Lithuania\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Benelux\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Norway\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Norway A/S\r\nOslo, Norway\r\nTel. 47 2207 1895\r\nEmail: <a href=\"mailto:stein@cash-back.no\">stein@cash-back.no</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Bosnia &amp; Herzegovina\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nIMO JUNIOR d.o.o.\r\nUgljara, Bosnia &amp; Herzegovina\r\nTel. 387 31 712 576\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Macedonia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back IMO - Belgrade\r\nBelgrade, Serbia\r\nTel. 381 11 307 66 40\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Bulgaria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Oman\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Croatia\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCB VINCETIĆ d.o.o.\r\nZagreb, , Croatia\r\nTel. 385 1 455 4492\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Poland\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nGrupa CBP Spółka z ograniczona odpowiedzialnością Sp.K.\r\nWarsaw, Poland\r\nTel. 48 22 644 46\r\nEmail: <a href=\"mailto:marcin.piotrowski@cashback.pl\">marcin.piotrowski@cashback.pl</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Cyprus\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nSky Cash Back VAT Reclaim Ltd\r\nNICOSIA, Cyprus\r\nTel. 357 22 67 44 66\r\nEmail: <a href=\"mailto:info@skycashback.com\">info@skycashback.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Portugal\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Czech Republic\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCESSCO Cash Back VAT Reclaim SRO\r\nPraha, Czech Republic\r\nTel. +420 212 248 700\r\nEmail: <a href=\"mailto:praha@cessco.eu\">praha@cessco.eu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Qatar\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"http://localhost/unitedcash/caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Denmark\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Romania\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCESSCO Cash Back VAT Reclaim SRL\r\nBucharest , Romania\r\nTel. 40 21 410 23 40\r\nEmail: <a href=\"mailto: bucuresti@cessco.eu\">bucuresti@cessco.eu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Finland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Saudi Arabia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"France\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Serbia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back IMO - Belgrade\r\nBelgrade, Serbia\r\nTel. 381 11 307 66 40\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Germany\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back VAT Reclaim GmbH\r\nBad Homburg v.d.H, Germany\r\nTel. 49 6172 13 96 710\r\nEmail: <a href=\"mailto:info@cash-back-vat-reclaim.de\">info@cash-back-vat-reclaim.de</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Slovakia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCESSCO Cash Back VAT Reclaim SRO\r\nPraha,Czech Republic\r\nTel: +420 212 248 700\r\nEmail: <a href=\"mailto:praha@cessco.eu\">praha@cessco.eu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Greece\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nSky Cash Back VAT Reclaim Ltd\r\nAthens,Greece\r\nTel. 0030-213-0311137\r\nEmail: <a href=\"mailto:panos@skycashback.com\">panos@skycashback.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"South Africa\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back South Africa\r\nDunkeld West, South Africa\r\nTel. 27 11 277 0000\r\nEmail: <a href=\"mailto:elaine@cashbacksa.co.za\">elaine@cashbacksa.co.za</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Hungary\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Hungary Kft\r\nBudapest, Hungary\r\nTel. 36 1 457 69 92\r\nEmail: <a href=\"mailto:cashback@cashback.hu\">cashback@cashback.hu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Spain\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Iceland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Norway A/S\r\nOslo, Norway\r\nTel. 47 2207 1895\r\nEmail: <a href=\"mailto:stein@cash-back.no\">stein@cash-back.no</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Sweden\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Ireland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Switzerland\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back VAT Reclaim AG\r\nCham, Switzerland\r\nTel. 41 41 747 3000\r\nEmail: <a href=\"mailto:info@cashback.ch\">info@cashback.ch</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Israel\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nIsravat Consulting Ltd\r\nPO Box 365 Modiin\r\n7171201\r\nIsrael\r\nTel +972 8 699 8890\r\nEmail: <a href=\"mailto:info@cashbackis.com\">info@cashbackis.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"United Arab Emirates\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Italy\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"United Kingdom\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Kuwait\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"United States of America\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCB VATAmerica LLC\r\nPrinceton, , USA\r\nTel. 1 609 430 4960\r\nEmail: <a href=\"mailto:info@cbvatamerica.com\">info@cbvatamerica.com</a>\r\n\r\n[/spb_toggle] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact us", "", "publish", "open", "open", "", "contact-us", "", "", "2015-04-01 16:15:18", "2015-04-01 14:15:18", "", "0", "http://www.united.sommar.se/?page_id=10", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("11", "1", "2015-04-01 08:51:50", "2015-04-01 08:51:50", "", "Contact", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 08:51:50", "2015-04-01 08:51:50", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("12", "1", "2015-04-01 08:52:03", "2015-04-01 08:52:03", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_blog blog_type=\"masonry\" gutters=\"yes\" columns=\"4\" fullwidth=\"no\" item_count=\"10\" category=\"All\" offset=\"0\" order_by=\"date\" order=\"DESC\" show_title=\"yes\" show_excerpt=\"yes\" show_details=\"no\" excerpt_length=\"20\" content_output=\"excerpt\" show_read_more=\"yes\" social_integration=\"no\" blog_filter=\"no\" pagination=\"infinite-scroll\" post_type=\"post\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "News", "", "publish", "open", "open", "", "news", "", "", "2015-04-01 15:56:44", "2015-04-01 13:56:44", "", "0", "http://www.united.sommar.se/?page_id=12", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("13", "1", "2015-04-01 08:52:03", "2015-04-01 08:52:03", "", "News", "", "inherit", "open", "open", "", "12-revision-v1", "", "", "2015-04-01 08:52:03", "2015-04-01 08:52:03", "", "12", "http://www.united.sommar.se/uncategorized/12-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("14", "1", "2015-04-01 08:53:39", "2015-04-01 08:53:39", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (EU Based)[/sf_button]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (Non-EU Based)[/sf_button]\r\n\r\n[/spb_text_block] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "publish", "open", "open", "", "vat-info", "", "", "2015-04-02 09:37:55", "2015-04-02 07:37:55", "", "0", "http://www.united.sommar.se/?page_id=14", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("15", "1", "2015-04-01 08:53:39", "2015-04-01 08:53:39", "", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 08:53:39", "2015-04-01 08:53:39", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("16", "1", "2015-04-01 08:53:59", "2015-04-01 08:53:59", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Security</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "publish", "open", "open", "", "the-process", "", "", "2015-04-01 15:09:56", "2015-04-01 13:09:56", "", "0", "http://www.united.sommar.se/?page_id=16", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("17", "1", "2015-04-01 08:53:59", "2015-04-01 08:53:59", "", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 08:53:59", "2015-04-01 08:53:59", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("18", "1", "2015-04-01 08:54:28", "2015-04-01 08:54:28", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-136\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png\" alt=\"Our-vat-services-cashback-1\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back is a consolidation of several professional European and other <strong>VAT recovery</strong> firms formed in 1993.  The result is a wealth of knowledge covering the most diverse VAT issues from all possible branches. We offer a wide range of services to maximise your VAT returns and minimise your VAT administration.\r\n\r\n<strong>RECOVAT</strong>: As a result of the 2010 legislation and EU process changes within foreign VAT Refunding, Cash Back developed RECOVAT; leading edge technology to provide an effective system for recovery of VAT. RECOVAT is a quick, secure and efficient tool which allows invoice images to be downloaded from accounting platforms into the RECOVAT system. It also provides an accurate and smooth process for creating invoice lists and vat applications.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThrough CB VATAmerica we offer a unique <strong>Aviation VAT</strong> and fuel excise tax recovery program to reduce the indirect tax costs of operating aircraft in Europe for general aviation businesses or commercial operators.  CB VATAmerica’s cooperation arrangements with industry leaders utilise current technology to achieve better results, efficiently and effectively.\r\n\r\nCash Back’s <strong>VATALYTICS</strong> is our sophisticated program used to revolutionise former high labour intensive VAT accounting controls, which companies are otherwise forced to employ.  It is a program with an automated search for finding incorrect entries in your local VAT accounts.\r\n\r\nWith our <strong>VAT Consulting</strong> services we can resolve all your VAT questions via your local contact person. Simple and efficient!\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Our VAT services", "", "publish", "open", "open", "", "our-vat-services", "", "", "2015-04-01 14:42:08", "2015-04-01 12:42:08", "", "0", "http://www.united.sommar.se/?page_id=18", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("19", "1", "2015-04-01 08:54:28", "2015-04-01 08:54:28", "", "Our VAT services", "", "inherit", "open", "open", "", "18-revision-v1", "", "", "2015-04-01 08:54:28", "2015-04-01 08:54:28", "", "18", "http://www.united.sommar.se/uncategorized/18-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("20", "1", "2015-04-01 08:54:43", "2015-04-01 08:54:43", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"4\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/2\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: left;\">Presence - VAT experts in every country</h1>\r\nCash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.\r\n\r\nCash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.\r\n\r\nOur team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact United Cash Back for assistance.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-129\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\" alt=\"Cashback-map\" width=\"987\" height=\"900\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "publish", "open", "open", "", "about-us", "", "", "2015-04-01 14:34:19", "2015-04-01 12:34:19", "", "0", "http://www.united.sommar.se/?page_id=20", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("21", "1", "2015-04-01 08:54:43", "2015-04-01 08:54:43", "", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 08:54:43", "2015-04-01 08:54:43", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("22", "1", "2015-04-01 08:56:39", "2015-04-01 08:56:39", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-287\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Consulting-Cashback.png\" alt=\"VAT-Consulting-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Manage your VAT the easy way: VAT Consulting</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThere are a variety of issues relating to VAT where access to specialist knowledge is advantageous. Everything from how to register for VAT in another country, finding your way through local compliance legislation, managing logistics issues in the different European countries or any other VAT issues. Cash Back can help you; we have more than 25 years of experience working with international tax and this vast knowledge bank is the foundation for the services we provide.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"/contact-us\" target=\"_self\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Contact us now[/sf_button]\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThanks to our extensive network of local tax experts we are constantly up to date with local and foreign VAT legislation and benefit from having close relations and regular contacts with local authorities and experts. As a client, you benefit from having a single contact point with ready access to our experts and their knowledge. Cash Back provide you with simple, cost effective solutions to your VAT enquiries.\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"Client satisfaction rate\" box_type=\"boxed-four\" icon=\"fa-info-circle\" target=\"_self\" animation=\"none\" animation_delay=\"0\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_icon_box] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat consulting", "", "publish", "open", "open", "", "vat-consulting", "", "", "2015-04-02 10:34:05", "2015-04-02 08:34:05", "", "18", "http://www.united.sommar.se/?page_id=22", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("23", "1", "2015-04-01 08:56:39", "2015-04-01 08:56:39", "", "Vat consulting", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-04-01 08:56:39", "2015-04-01 08:56:39", "", "22", "http://www.united.sommar.se/uncategorized/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("24", "1", "2015-04-01 08:57:04", "2015-04-01 08:57:04", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-284\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Local-VAT-Cashback.png\" alt=\"Local-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nHave you ever considered how easily errors creep into your tax calculations, declarations and deductions when managing large amounts of supplier invoices? We regularly experience this when helping companies with their local and foreign declarations.\r\n\r\nWelcome to VATALYTICS; an IT based solution which is revolutionising the work required to control and analyse your suppliers’ invoices. Through combining a sophisticated computer technique with our extensive knowledge in the field of VAT we have automated the time consuming job of reviewing the supplier records and the VAT implications of any incorrect accounting practices.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>The VATALYTICS Method</h3>\r\n<div class=\"tt-columns-one-half\">\r\n\r\nVATALYTICS is an automated system that greatly simplifies and streamlines the control of supplier invoices, even if it involves hundreds of thousands a month.  It focuses on finding recoverable VAT, reverse charge VAT and double invoicing.\r\n\r\nThe advantage of this system is that it has a high capacity and detects all the most common types of discrepancies in the invoices, including errors which can lead to reoccurring structural defects.  The VATALYTIC findings are evaluated by local tax specialists – and a full report of the irregularities in the accounting records is presented.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3><strong><img class=\"alignnone  wp-image-281\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vatalytics.png\" alt=\"Vatalytics\" width=\"185\" height=\"74\" /></strong></h3>\r\n<h3><strong>The VATALYTIC benefits:</strong></h3>\r\n<ul>\r\n	<li>It ensures correct VAT accounting and improved control</li>\r\n	<li>Reduces risk of audit controls and penalties</li>\r\n	<li>It identifies the source of the problem to remove repeat errors</li>\r\n	<li>It is a cost effective service using its high tech search with local VAT expertise.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The VATALYTICS Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-282\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/vatalytics_engine.png\" alt=\"vatalytics_engine\" width=\"721\" height=\"163\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"Client satisfaction rate\" box_type=\"boxed-four\" icon=\"fa-info-circle\" target=\"_self\" animation=\"none\" animation_delay=\"0\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_icon_box] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Local VAT recovery", "", "publish", "open", "open", "", "local-vat-recovery", "", "", "2015-04-02 10:34:34", "2015-04-02 08:34:34", "", "18", "http://www.united.sommar.se/?page_id=24", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("25", "1", "2015-04-01 08:57:04", "2015-04-01 08:57:04", "", "Local VAT recovery", "", "inherit", "open", "open", "", "24-revision-v1", "", "", "2015-04-01 08:57:04", "2015-04-01 08:57:04", "", "24", "http://www.united.sommar.se/uncategorized/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("26", "1", "2015-04-01 08:57:28", "2015-04-01 08:57:28", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignright size-full wp-image-276\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vat-recovery-aviation.png\" alt=\"Vat-recovery-aviation\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThere are large sums of VAT charged between country boundaries – even in the air.  Cash Back, through her American partner, can offer extensive expertise to provide a professional and complete worldwide indirect tax aviation program to airlines and other general business aviation operators.\r\n\r\nRecovery of VAT and other significant indirect tax duties on, for example, jet fuel requires very specific tax knowledge and experience.  VATAmerica’s Aviation Program is the only comprehensive and specialised system which can simply and successfully get you through the different legislation and mechanisms for refund in the various countries on, amongst other things, ground handling charges, take-off and landing fees, repairs and fuel.\r\n\r\nThis is regardless of whether you are a corporate flight department, aviation management company, provider of fractional ownership, aircraft manufacturer, passenger or cargo charter carrier, military contractor, air ambulance provider or aerial mapping, ferry and delivery firm.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nSome of the <strong>many advantages</strong> of VATAmerica’s Aviation Tax Recovery Program:\r\n<ul>\r\n	<li>Recovery of fuel excise taxes called energy tax, MOT and Duties by refund and supplier credits according to local legislation</li>\r\n	<li>A close collaboration with the leading suppliers in the industry eases the process of recovering excise taxes, establishing tax exemptions and reducing the administration for all parties.</li>\r\n	<li>CB VAT Exemption Program.  We are well aware of the legislation within the EU which steers the services which should be exempt of VAT.  Our program enrolls you for VAT exemption where appropriate to ensure you are not being charged unnecessary VAT.</li>\r\n	<li>CB VATAmerica has combined their VAT expertise with the latest technology.  The result is a customised solution which makes our cooperation as simple and effective as possible. Some examples of this are our web based client portal and our own developed app which helps companies calculate their VAT and excise charges on European fuel charges.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Secure payment\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back’s payment process is highly automated with a direct interface between Cash Back’s and the bank’s computer systems. Payment data passes electronically between the systems eliminating error and minimizing transfer times. Cash Back Payment Reports enable clients to match refund credits received with each claim made to meet client accounting practices. Cash Back’s payment track record is reflected in our long standing client relations and bank partnerships.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Recovery on aviation", "", "publish", "open", "open", "", "vat-recovery-on-aviation", "", "", "2015-04-02 10:24:23", "2015-04-02 08:24:23", "", "18", "http://www.united.sommar.se/?page_id=26", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("27", "1", "2015-04-01 08:57:28", "2015-04-01 08:57:28", "", "VAT Recovery on aviation", "", "inherit", "open", "open", "", "26-revision-v1", "", "", "2015-04-01 08:57:28", "2015-04-01 08:57:28", "", "26", "http://www.united.sommar.se/uncategorized/26-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("28", "1", "2015-04-01 08:58:26", "2015-04-01 08:58:26", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our worldwide partners</h1>\r\n[/spb_text_block] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"266\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n\r\nKDS is a European technology leader with 20 years’ Travel and Expense management experience.\r\n\r\nThe KDS award winning Software allows clients to gain complete visibility and control over their T&amp;E programs.\r\n\r\n<b>Control:</b><b> </b>KDS provides accurate, timely and powerful reporting, meaning clients can take the right decisions at the right time whilst ensuring financial compliance.\r\n\r\n<b>Functionality:</b> End users love using KDS. The ease of use and graphical “consumer friendly” interfaces, drive user adoption and ensure that processes are followed.\r\n\r\n<b>Speed:</b> KDS is fast, meaning that your staff spends less time on T&amp;E and more time focused on their objectives. KDS users can complete the entire T&amp;E cycle, from trip booking through to expense submission quickly and easily, wherever they are, whenever they want and on whichever device they wish.\r\n\r\nKDS solutions address the complete Travel and Expense (T&amp;E) lifecycle, from policy definition and enforcement to automated expense processing.\r\n\r\n<a href=\"http://localhost/unitedcash/www.kds.com\" target=\"_blank\">www.kds.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "publish", "open", "open", "", "vat-reclaim-on-te-expenses", "", "", "2015-04-02 10:15:44", "2015-04-02 08:15:44", "", "18", "http://www.united.sommar.se/?page_id=28", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("29", "1", "2015-04-01 08:58:26", "2015-04-01 08:58:26", "", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-01 08:58:26", "2015-04-01 08:58:26", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("30", "1", "2015-04-01 08:58:45", "2015-04-01 08:58:45", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nSuccessfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.  Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.  This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\r\n\r\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim", "", "publish", "open", "open", "", "vat-reclaim", "", "", "2015-04-02 10:00:58", "2015-04-02 08:00:58", "", "18", "http://www.united.sommar.se/?page_id=30", "0", "page", "", "0");
INSERT INTO `k2zp_posts` VALUES("31", "1", "2015-04-01 08:58:45", "2015-04-01 08:58:45", "", "VAT Reclaim", "", "inherit", "open", "open", "", "30-revision-v1", "", "", "2015-04-01 08:58:45", "2015-04-01 08:58:45", "", "30", "http://www.united.sommar.se/uncategorized/30-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("32", "1", "2015-04-01 08:59:58", "2015-04-01 08:59:58", "", "ABOUT US", "", "publish", "open", "open", "", "32", "", "", "2015-04-02 09:52:05", "2015-04-02 07:52:05", "", "0", "http://www.united.sommar.se/?p=32", "2", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("33", "1", "2015-04-01 08:59:58", "2015-04-01 08:59:58", "", "OUR VAT SERVICES", "", "publish", "open", "open", "", "33", "", "", "2015-04-02 09:52:05", "2015-04-02 07:52:05", "", "0", "http://www.united.sommar.se/?p=33", "3", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("39", "1", "2015-04-01 08:59:59", "2015-04-01 08:59:59", "", "THE PROCESS", "", "publish", "open", "open", "", "39", "", "", "2015-04-02 09:52:05", "2015-04-02 07:52:05", "", "0", "http://www.united.sommar.se/?p=39", "4", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("40", "1", "2015-04-01 08:59:59", "2015-04-01 08:59:59", "", "VAT INFO", "", "publish", "open", "open", "", "40", "", "", "2015-04-02 09:52:06", "2015-04-02 07:52:06", "", "0", "http://www.united.sommar.se/?p=40", "5", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("41", "1", "2015-04-01 08:59:59", "2015-04-01 08:59:59", "", "NEWS", "", "publish", "open", "open", "", "41", "", "", "2015-04-02 09:52:06", "2015-04-02 07:52:06", "", "0", "http://www.united.sommar.se/?p=41", "6", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("42", "1", "2015-04-01 08:59:59", "2015-04-01 08:59:59", "", "CONTACT", "", "publish", "open", "open", "", "42", "", "", "2015-04-02 09:52:07", "2015-04-02 07:52:07", "", "0", "http://www.united.sommar.se/?p=42", "7", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("43", "1", "2015-04-01 08:59:58", "2015-04-01 08:59:58", "", "HOME", "", "publish", "open", "open", "", "home", "", "", "2015-04-02 09:52:05", "2015-04-02 07:52:05", "", "0", "http://www.united.sommar.se/?p=43", "1", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("44", "1", "2015-04-01 09:05:16", "2015-04-01 09:05:16", "", "OUR NETWORK", "", "publish", "open", "open", "", "our-network", "", "", "2015-04-02 09:52:07", "2015-04-02 07:52:07", "", "0", "http://www.united.sommar.se/?p=44", "8", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("45", "1", "2015-04-01 09:05:16", "2015-04-01 09:05:16", "", "Austria", "", "publish", "open", "open", "", "austria", "", "", "2015-04-02 09:52:07", "2015-04-02 07:52:07", "", "0", "http://www.united.sommar.se/?p=45", "10", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("46", "1", "2015-04-01 09:05:16", "2015-04-01 09:05:16", "", "Bahrain", "", "publish", "open", "open", "", "bahrain", "", "", "2015-04-02 09:52:08", "2015-04-02 07:52:08", "", "0", "http://www.united.sommar.se/?p=46", "11", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("47", "1", "2015-04-01 09:05:16", "2015-04-01 09:05:16", "", "Bosnia", "", "publish", "open", "open", "", "bosnia", "", "", "2015-04-02 09:52:08", "2015-04-02 07:52:08", "", "0", "http://www.united.sommar.se/?p=47", "12", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("48", "1", "2015-04-01 09:05:17", "2015-04-01 09:05:17", "", "Cyprus", "", "publish", "open", "open", "", "cyprus", "", "", "2015-04-02 09:52:08", "2015-04-02 07:52:08", "", "0", "http://www.united.sommar.se/?p=48", "13", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("49", "1", "2015-04-01 09:05:17", "2015-04-01 09:05:17", "", "Czech Republic", "", "publish", "open", "open", "", "czech-republic", "", "", "2015-04-02 09:52:08", "2015-04-02 07:52:08", "", "0", "http://www.united.sommar.se/?p=49", "14", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("50", "1", "2015-04-01 09:05:17", "2015-04-01 09:05:17", "", "Estonia", "", "publish", "open", "open", "", "estonia", "", "", "2015-04-02 09:52:08", "2015-04-02 07:52:08", "", "0", "http://www.united.sommar.se/?p=50", "15", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("51", "1", "2015-04-01 09:05:17", "2015-04-01 09:05:17", "", "Finland", "", "publish", "open", "open", "", "finland", "", "", "2015-04-02 09:52:08", "2015-04-02 07:52:08", "", "0", "http://www.united.sommar.se/?p=51", "17", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("52", "1", "2015-04-01 09:11:48", "2015-04-01 09:11:48", "", "France", "", "publish", "open", "open", "", "france", "", "", "2015-04-02 09:52:09", "2015-04-02 07:52:09", "", "0", "http://www.united.sommar.se/?p=52", "18", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("53", "1", "2015-04-01 09:11:48", "2015-04-01 09:11:48", "", "Germany", "", "publish", "open", "open", "", "germany", "", "", "2015-04-02 09:52:09", "2015-04-02 07:52:09", "", "0", "http://www.united.sommar.se/?p=53", "19", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("54", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Greece", "", "publish", "open", "open", "", "greece", "", "", "2015-04-02 09:52:09", "2015-04-02 07:52:09", "", "0", "http://www.united.sommar.se/?p=54", "20", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("55", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Hungary", "", "publish", "open", "open", "", "hungary", "", "", "2015-04-02 09:52:09", "2015-04-02 07:52:09", "", "0", "http://www.united.sommar.se/?p=55", "21", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("56", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Ireland", "", "publish", "open", "open", "", "ireland", "", "", "2015-04-02 09:52:09", "2015-04-02 07:52:09", "", "0", "http://www.united.sommar.se/?p=56", "22", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("57", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Israel", "", "publish", "open", "open", "", "israel", "", "", "2015-04-02 09:52:09", "2015-04-02 07:52:09", "", "0", "http://www.united.sommar.se/?p=57", "24", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("58", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Luxombourg", "", "publish", "open", "open", "", "luxombourg", "", "", "2015-04-02 09:52:10", "2015-04-02 07:52:10", "", "0", "http://www.united.sommar.se/?p=58", "25", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("59", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Netherlands", "", "publish", "open", "open", "", "netherlands", "", "", "2015-04-02 09:52:10", "2015-04-02 07:52:10", "", "0", "http://www.united.sommar.se/?p=59", "26", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("60", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Norway", "", "publish", "open", "open", "", "norway", "", "", "2015-04-02 09:52:10", "2015-04-02 07:52:10", "", "0", "http://www.united.sommar.se/?p=60", "27", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("61", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Poland", "", "publish", "open", "open", "", "poland", "", "", "2015-04-02 09:52:10", "2015-04-02 07:52:10", "", "0", "http://www.united.sommar.se/?p=61", "28", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("62", "1", "2015-04-01 09:11:49", "2015-04-01 09:11:49", "", "Romania", "", "publish", "open", "open", "", "romania", "", "", "2015-04-02 09:52:10", "2015-04-02 07:52:10", "", "0", "http://www.united.sommar.se/?p=62", "29", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("63", "1", "2015-04-01 09:11:50", "2015-04-01 09:11:50", "", "Serbia", "", "publish", "open", "open", "", "serbia", "", "", "2015-04-02 09:52:11", "2015-04-02 07:52:11", "", "0", "http://www.united.sommar.se/?p=63", "31", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("64", "1", "2015-04-01 09:11:50", "2015-04-01 09:11:50", "", "Slovakia", "", "publish", "open", "open", "", "slovakia", "", "", "2015-04-02 09:52:11", "2015-04-02 07:52:11", "", "0", "http://www.united.sommar.se/?p=64", "32", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("65", "1", "2015-04-01 09:14:14", "2015-04-01 09:14:14", "", "Switzerland", "", "publish", "open", "open", "", "switzerland", "", "", "2015-04-02 09:52:11", "2015-04-02 07:52:11", "", "0", "http://www.united.sommar.se/?p=65", "33", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("66", "1", "2015-04-01 09:14:14", "2015-04-01 09:14:14", "", "United Arab Emirates", "", "publish", "open", "open", "", "united-arab-emirates", "", "", "2015-04-02 09:52:11", "2015-04-02 07:52:11", "", "0", "http://www.united.sommar.se/?p=66", "34", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("67", "1", "2015-04-01 09:14:14", "2015-04-01 09:14:14", "", "United kingdom", "", "publish", "open", "open", "", "united-kingdom", "", "", "2015-04-02 09:52:11", "2015-04-02 07:52:11", "", "0", "http://www.united.sommar.se/?p=67", "35", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("68", "1", "2015-04-01 09:14:14", "2015-04-01 09:14:14", "", "USA", "", "publish", "open", "open", "", "usa", "", "", "2015-04-02 09:52:11", "2015-04-02 07:52:11", "", "0", "http://www.united.sommar.se/?p=68", "36", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("69", "1", "2015-04-01 09:15:17", "2015-04-01 09:15:17", "", "LOGIN", "", "publish", "open", "open", "", "login", "", "", "2015-04-02 09:52:11", "2015-04-02 07:52:11", "", "0", "http://www.united.sommar.se/?p=69", "37", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("70", "1", "2015-04-01 11:23:11", "2015-04-01 09:23:11", "", "20years-anniversary-cashback", "", "inherit", "open", "open", "", "20years-anniversary-cashback", "", "", "2015-04-01 11:23:11", "2015-04-01 09:23:11", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/20years-anniversary-cashback.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("71", "1", "2015-04-01 11:38:33", "2015-04-01 09:38:33", "", "bg", "", "inherit", "open", "open", "", "bg", "", "", "2015-04-01 11:38:33", "2015-04-01 09:38:33", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/bg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `k2zp_posts` VALUES("72", "1", "2015-04-01 11:39:07", "2015-04-01 09:39:07", "", "Concur-app-center", "", "inherit", "open", "open", "", "concur-app-center", "", "", "2015-04-01 11:39:07", "2015-04-01 09:39:07", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/Concur-app-center.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("73", "1", "2015-04-01 11:39:23", "2015-04-01 09:39:23", "", "Now-available-in-the-concur-app-center", "", "inherit", "open", "open", "", "now-available-in-the-concur-app-center", "", "", "2015-04-01 11:39:23", "2015-04-01 09:39:23", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/Now-available-in-the-concur-app-center.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("74", "1", "2015-04-01 11:39:41", "2015-04-01 09:39:41", "", "T-and-E-Cashback", "", "inherit", "open", "open", "", "t-and-e-cashback", "", "", "2015-04-01 11:39:41", "2015-04-01 09:39:41", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/T-and-E-Cashback.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("75", "1", "2015-04-01 11:40:37", "2015-04-01 09:40:37", "", "Concur-app", "", "inherit", "open", "open", "", "concur-app", "", "", "2015-04-01 11:40:37", "2015-04-01 09:40:37", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/Concur-app.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("76", "1", "2015-04-01 11:41:23", "2015-04-01 09:41:23", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 11:41:23", "2015-04-01 09:41:23", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("77", "1", "2015-04-01 11:49:32", "2015-04-01 09:49:32", "", "United-cashback", "", "inherit", "open", "open", "", "united-cashback", "", "", "2015-04-01 11:49:32", "2015-04-01 09:49:32", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/United-cashback.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("78", "1", "2015-04-01 11:50:17", "2015-04-01 09:50:17", "", "T-E-Vat-reclaim-cashback-new", "", "inherit", "open", "open", "", "t-e-vat-reclaim-cashback-new", "", "", "2015-04-01 11:50:17", "2015-04-01 09:50:17", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/T-E-Vat-reclaim-cashback-new.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `k2zp_posts` VALUES("79", "1", "2015-04-01 14:08:42", "2015-04-01 12:08:42", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1 style=\"text-align: center;\">Why choose us</h1>\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1 style=\"text-align: center;\">and...</h1>\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-autosave-v1", "", "", "2015-04-01 14:08:42", "2015-04-01 12:08:42", "", "8", "http://www.united.sommar.se/uncategorized/8-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("80", "1", "2015-04-01 12:01:54", "2015-04-01 10:01:54", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"true\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 12:01:54", "2015-04-01 10:01:54", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("81", "1", "2015-04-01 12:03:17", "2015-04-01 10:03:17", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"true\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 12:03:17", "2015-04-01 10:03:17", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("82", "1", "2015-04-01 12:05:10", "2015-04-01 10:05:10", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"true\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 12:05:10", "2015-04-01 10:05:10", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("83", "1", "2015-04-01 12:06:26", "2015-04-01 10:06:26", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"true\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 12:06:26", "2015-04-01 10:06:26", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("84", "1", "2015-04-01 13:33:39", "2015-04-01 11:33:39", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"true\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:33:39", "2015-04-01 11:33:39", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("85", "1", "2015-04-01 13:34:21", "2015-04-01 11:34:21", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"true\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:34:21", "2015-04-01 11:34:21", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("86", "1", "2015-04-01 13:34:41", "2015-04-01 11:34:41", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:34:41", "2015-04-01 11:34:41", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("87", "1", "2015-04-01 13:34:55", "2015-04-01 11:34:55", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:34:55", "2015-04-01 11:34:55", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("88", "1", "2015-04-01 13:35:38", "2015-04-01 11:35:38", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:35:38", "2015-04-01 11:35:38", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("89", "1", "2015-04-01 13:43:08", "2015-04-01 11:43:08", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:43:08", "2015-04-01 11:43:08", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("90", "1", "2015-04-01 13:45:35", "2015-04-01 11:45:35", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:45:35", "2015-04-01 11:45:35", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("91", "1", "2015-04-01 13:47:03", "2015-04-01 11:47:03", "\".....we are pleased to confirm, that your company, United Cash Back AG (UCB), has maintained a business relationship with our bank since 2005. Furthermore we confirm that to date all transactions made through our accounts have been completed and settled to our entire satisfaction. According to latest balance sheets at our hands, we consider the financial situation as to be in good order and the management is looked upon as to be trustworthy.", "Credit Suisse", "Utdrag", "publish", "closed", "closed", "", "91", "", "", "2015-04-01 15:21:10", "2015-04-01 13:21:10", "", "0", "http://www.united.sommar.se/?post_type=testimonials&#038;p=91", "0", "testimonials", "", "0");
INSERT INTO `k2zp_posts` VALUES("92", "1", "2015-04-01 13:49:35", "2015-04-01 11:49:35", "\".....our business relationship has been ongoing since United Cash Back´s formation in 1993.....Due to the character of the business that UCB is exposed to, it is of utmost importance to operate on a serious and reliable basis. This has proven to be the case for UCB and we have never experienced any difficulties with this customer.....Tax refunds are collected on a special UCB account.....To guarantee the validity and proper authorisation of payments, all instructions are signed by the general manager and a member of the board before the bank executes the payments..... \"", "Svenska Handelsbanken", "", "publish", "closed", "closed", "", "svenska-handelsbanken", "", "", "2015-04-01 13:49:35", "2015-04-01 11:49:35", "", "0", "http://www.united.sommar.se/?post_type=testimonials&#038;p=92", "0", "testimonials", "", "0");
INSERT INTO `k2zp_posts` VALUES("93", "1", "2015-04-01 13:50:38", "2015-04-01 11:50:38", "\"Since 2002, we have with success used the services of TVA Conseil (the Cash Back office in France) for the recovery of the foreign VAT on our travel expenses and accounts payable invoices. Based on our positive experience with the service provided by TVA Conseil we have from 2008 extended our co-operation to include all our subsidiaries in Europe and, to some degree, have developed our relationship to also cover VAT registration and compliance services according to the 6th directive.\"", "Delphi France", "", "publish", "closed", "closed", "", "delphi-france", "", "", "2015-04-01 13:50:38", "2015-04-01 11:50:38", "", "0", "http://www.united.sommar.se/?post_type=testimonials&#038;p=93", "0", "testimonials", "", "0");
INSERT INTO `k2zp_posts` VALUES("94", "1", "2015-04-01 13:54:06", "2015-04-01 11:54:06", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:54:06", "2015-04-01 11:54:06", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("95", "1", "2015-04-01 13:55:04", "2015-04-01 11:55:04", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:55:04", "2015-04-01 11:55:04", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("96", "1", "2015-04-01 13:55:45", "2015-04-01 11:55:45", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"date\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:55:45", "2015-04-01 11:55:45", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("97", "1", "2015-04-01 13:57:22", "2015-04-01 11:57:22", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"date\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:57:22", "2015-04-01 11:57:22", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("98", "1", "2015-04-01 13:58:22", "2015-04-01 11:58:22", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:58:22", "2015-04-01 11:58:22", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("99", "1", "2015-04-01 13:59:00", "2015-04-01 11:59:00", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial title=\"Testimonials\" text_size=\"normal\" item_count=\"6\" order=\"rand\" category=\"All\" pagination=\"no\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 13:59:00", "2015-04-01 11:59:00", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("100", "1", "2015-04-01 14:01:00", "2015-04-01 12:01:00", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p class=\"impact-text\" style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial title=\"Testimonials\" text_size=\"normal\" item_count=\"6\" order=\"rand\" category=\"All\" pagination=\"no\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:01:00", "2015-04-01 12:01:00", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("101", "1", "2015-04-01 14:01:35", "2015-04-01 12:01:35", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial title=\"Testimonials\" text_size=\"normal\" item_count=\"6\" order=\"rand\" category=\"All\" pagination=\"no\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:01:35", "2015-04-01 12:01:35", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("102", "1", "2015-04-01 14:02:18", "2015-04-01 12:02:18", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial title=\"Testimonials\" text_size=\"normal\" item_count=\"6\" order=\"rand\" category=\"All\" pagination=\"no\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:02:18", "2015-04-01 12:02:18", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("103", "1", "2015-04-01 14:03:28", "2015-04-01 12:03:28", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h3 style=\"text-align: center;\">This is why again</h3>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"4\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\"] [spb_testimonial title=\"Testimonials\" text_size=\"normal\" item_count=\"6\" order=\"rand\" category=\"All\" pagination=\"no\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_accordion widget_title=\"Why choose us\" active_section=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_accordion_tab title=\"This is why\" accordion_id=\"this-is-why\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [spb_accordion_tab title=\"This is why again\" accordion_id=\"this-is-why-again\" icon=\"\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.\r\n\r\n[/spb_text_block] [/spb_accordion_tab] [/spb_accordion] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:03:28", "2015-04-01 12:03:28", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("104", "1", "2015-04-01 14:04:45", "2015-04-01 12:04:45", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:04:45", "2015-04-01 12:04:45", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("105", "1", "2015-04-01 14:05:37", "2015-04-01 12:05:37", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:05:37", "2015-04-01 12:05:37", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("106", "1", "2015-04-01 14:10:26", "2015-04-01 12:10:26", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"2\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:10:26", "2015-04-01 12:10:26", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("107", "1", "2015-04-01 14:11:19", "2015-04-01 12:11:19", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_color=\"#ffffff\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"5\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [spb_recent_posts title=\"Latest VAT news\" display_type=\"list\" carousel=\"no\" item_columns=\"5\" item_count=\"2\" category=\"All\" offset=\"0\" posts_order=\"ASC\" excerpt_length=\"20\" fullwidth=\"no\" gutters=\"yes\" button_enabled=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:11:19", "2015-04-01 12:11:19", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("108", "1", "2015-04-01 14:11:49", "2015-04-01 12:11:49", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-01 14:11:49", "2015-04-01 12:11:49", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("109", "1", "2015-04-01 14:30:42", "2015-04-01 12:30:42", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\n\nCash Back have been an active member of the International VAT Association since its foundation.\n\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\n\n• Loss of original invoices during storage or transport\n• Errors or negligence\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1 style=\"text-align: center;\">Service standards</h1>\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1 style=\"text-align: center;\">Service standards</h1>\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\n[/spb_text_block] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1 style=\"text-align: center;\">Service standards</h1>\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-autosave-v1", "", "", "2015-04-01 14:30:42", "2015-04-01 12:30:42", "", "20", "http://www.united.sommar.se/uncategorized/20-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("110", "1", "2015-04-01 14:14:58", "2015-04-01 12:14:58", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThis is a text block. Click the edit button to change this text.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThis is a text block. Click the edit button to change this text.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:14:58", "2015-04-01 12:14:58", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("111", "1", "2015-04-01 14:15:22", "2015-04-01 12:15:22", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThis is a text block. Click the edit button to change this text.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThis is a text block. Click the edit button to change this text.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"4\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:15:22", "2015-04-01 12:15:22", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("112", "1", "2015-04-01 14:16:07", "2015-04-01 12:16:07", "", "VAT-Maze", "", "inherit", "open", "open", "", "vat-maze", "", "", "2015-04-01 14:16:07", "2015-04-01 12:16:07", "", "20", "http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("113", "1", "2015-04-01 14:16:32", "2015-04-01 12:16:32", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:16:32", "2015-04-01 12:16:32", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("114", "1", "2015-04-01 14:17:16", "2015-04-01 12:17:16", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"3/4\" el_position=\"first\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:17:16", "2015-04-01 12:17:16", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("115", "1", "2015-04-01 14:17:53", "2015-04-01 12:17:53", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"3/4\" el_position=\"first\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:17:53", "2015-04-01 12:17:53", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("116", "1", "2015-04-01 14:18:37", "2015-04-01 12:18:37", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_color=\"#ffffff\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"3/4\" el_position=\"first\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:18:37", "2015-04-01 12:18:37", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("117", "1", "2015-04-01 14:19:12", "2015-04-01 12:19:12", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_color=\"#ffffff\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"1\" col_animation=\"none\" col_animation_delay=\"0\" width=\"3/4\" el_position=\"first\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:19:12", "2015-04-01 12:19:12", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("118", "1", "2015-04-01 14:19:33", "2015-04-01 12:19:33", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_color=\"#ffffff\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"4\" col_animation=\"none\" col_animation_delay=\"0\" width=\"3/4\" el_position=\"first\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:19:33", "2015-04-01 12:19:33", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("119", "1", "2015-04-01 14:20:12", "2015-04-01 12:20:12", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"3/4\" el_position=\"first\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:20:12", "2015-04-01 12:20:12", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("120", "1", "2015-04-01 14:20:45", "2015-04-01 12:20:45", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"3/4\" el_position=\"first\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_color=\"#f7f7f7\" col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"2\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:20:45", "2015-04-01 12:20:45", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("121", "1", "2015-04-01 14:21:05", "2015-04-01 12:21:05", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"3/4\" el_position=\"first\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/4\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:21:05", "2015-04-01 12:21:05", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("122", "1", "2015-04-01 14:23:08", "2015-04-01 12:23:08", "[spb_row parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" vertical_center=\"true\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:23:08", "2015-04-01 12:23:08", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("123", "1", "2015-04-01 14:23:22", "2015-04-01 12:23:22", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:23:22", "2015-04-01 12:23:22", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("124", "1", "2015-04-01 14:26:58", "2015-04-01 12:26:58", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block title=\"Let us guide you through the maze\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n\r\n[/spb_text_block] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:26:58", "2015-04-01 12:26:58", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("125", "1", "2015-04-01 14:27:35", "2015-04-01 12:27:35", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\">Let us guide you through the maze</p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:27:35", "2015-04-01 12:27:35", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("126", "1", "2015-04-01 14:28:17", "2015-04-01 12:28:17", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"30px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\">Let us guide you through the maze</p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:28:17", "2015-04-01 12:28:17", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("127", "1", "2015-04-01 14:28:42", "2015-04-01 12:28:42", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:28:42", "2015-04-01 12:28:42", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("128", "1", "2015-04-01 14:29:37", "2015-04-01 12:29:37", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:29:37", "2015-04-01 12:29:37", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("129", "1", "2015-04-01 14:30:48", "2015-04-01 12:30:48", "", "Cashback-map", "", "inherit", "open", "open", "", "cashback-map", "", "", "2015-04-01 14:30:48", "2015-04-01 12:30:48", "", "20", "http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("130", "1", "2015-04-01 14:31:19", "2015-04-01 12:31:19", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: left;\">Presence - VAT experts in every country</h1>\r\nCash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.\r\n\r\nCash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.\r\n\r\nOur team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact United Cash Back for assistance.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-129\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\" alt=\"Cashback-map\" width=\"987\" height=\"900\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:31:19", "2015-04-01 12:31:19", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("131", "1", "2015-04-01 14:31:40", "2015-04-01 12:31:40", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: left;\">Presence - VAT experts in every country</h1>\r\nCash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.\r\n\r\nCash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.\r\n\r\nOur team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact United Cash Back for assistance.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-129\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\" alt=\"Cashback-map\" width=\"987\" height=\"900\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:31:40", "2015-04-01 12:31:40", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("132", "1", "2015-04-01 14:32:44", "2015-04-01 12:32:44", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: left;\">Presence - VAT experts in every country</h1>\r\nCash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.\r\n\r\nCash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.\r\n\r\nOur team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact United Cash Back for assistance.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-129\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\" alt=\"Cashback-map\" width=\"987\" height=\"900\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:32:44", "2015-04-01 12:32:44", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("133", "1", "2015-04-01 14:33:43", "2015-04-01 12:33:43", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [/spb_column] [spb_column width=\"1/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: left;\">Presence - VAT experts in every country</h1>\r\nCash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.\r\n\r\nCash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.\r\n\r\nOur team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact United Cash Back for assistance.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-129\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\" alt=\"Cashback-map\" width=\"987\" height=\"900\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:33:43", "2015-04-01 12:33:43", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("134", "1", "2015-04-01 14:34:19", "2015-04-01 12:34:19", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_text_block title=\"Experience\" animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back has been in the VAT reclaim business since 1988 representing more than 20 years of specialised experience in international VAT. In 1994 United Cash Back was formed to build up and support the network of  Cash Back member firms.Cash Back has a long and valued client list, we benefit from a sound financial track record, we enjoy excellent relations with the tax authorities and we are a respected player in the industry. Our responsible account managers build strong client relationships and provide all the necessary after-sales service.\r\n\r\nCash Back have been an active member of the International VAT Association since its foundation.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\"] [spb_blank_spacer height=\"50px\" responsive_vis=\"hidden-xs\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-112\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Maze.png\" alt=\"VAT-Maze\" width=\"770\" height=\"500\" />\r\n<p style=\"text-align: center;\"><em>Let us guide you through the maze</em></p>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"4\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/2\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: left;\">Presence - VAT experts in every country</h1>\r\nCash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.\r\n\r\nCash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.\r\n\r\nOur team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact United Cash Back for assistance.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-129\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\" alt=\"Cashback-map\" width=\"987\" height=\"900\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "About us", "", "inherit", "open", "open", "", "20-revision-v1", "", "", "2015-04-01 14:34:19", "2015-04-01 12:34:19", "", "20", "http://www.united.sommar.se/uncategorized/20-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("135", "1", "2015-04-01 14:41:13", "2015-04-01 12:41:13", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-136\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png\" alt=\"Our-vat-services-cashback-1\" width=\"770\" height=\"300\" />\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n\nCash Back is a consolidation of several professional European and other <strong>VAT recovery</strong> firms formed in 1993.  The result is a wealth of knowledge covering the most diverse VAT issues from all possible branches. We offer a wide range of services to maximise your VAT returns and minimise your VAT administration.\n\n<strong>RECOVAT</strong>: As a result of the 2010 legislation and EU process changes within foreign VAT Refunding, Cash Back developed RECOVAT; leading edge technology to provide an effective system for recovery of VAT. RECOVAT is a quick, secure and efficient tool which allows invoice images to be downloaded from accounting platforms into the RECOVAT system. It also provides an accurate and smooth process for creating invoice lists and vat applications.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n\nThrough CB VATAmerica we offer a unique <strong>Aviation VAT</strong> and fuel excise tax recovery program to reduce the indirect tax costs of operating aircraft in Europe for general aviation businesses or commercial operators.  CB VATAmerica’s cooperation arrangements with industry leaders utilise current technology to achieve better results, efficiently and effectively.\n\nCash Back’s <strong>VATALYTICS</strong> is our sophisticated program used to revolutionise former high labour intensive VAT accounting controls, which companies are otherwise forced to employ.  It is a program with an automated search for finding incorrect entries in your local VAT accounts.\n\nWith our <strong>VAT Consulting</strong> services we can resolve all your VAT questions via your local contact person. Simple and efficient!\n\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n<ul>\n	<li>87% of our clients have been with Cash Back for 2 or more years</li>\n	<li>40% of our clients have been with Cash Back for 5 or more years</li>\n</ul>\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Our VAT services", "", "inherit", "open", "open", "", "18-autosave-v1", "", "", "2015-04-01 14:41:13", "2015-04-01 12:41:13", "", "18", "http://www.united.sommar.se/uncategorized/18-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("136", "1", "2015-04-01 14:38:41", "2015-04-01 12:38:41", "", "Our-vat-services-cashback-1", "", "inherit", "open", "open", "", "our-vat-services-cashback-1", "", "", "2015-04-01 14:38:41", "2015-04-01 12:38:41", "", "18", "http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("137", "1", "2015-04-01 14:39:12", "2015-04-01 12:39:12", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-136\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png\" alt=\"Our-vat-services-cashback-1\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back is a consolidation of several professional European and other <strong>VAT recovery</strong> firms formed in 1993.  The result is a wealth of knowledge covering the most diverse VAT issues from all possible branches. We offer a wide range of services to maximise your VAT returns and minimise your VAT administration.\r\n\r\n<strong>RECOVAT</strong>: As a result of the 2010 legislation and EU process changes within foreign VAT Refunding, Cash Back developed RECOVAT; leading edge technology to provide an effective system for recovery of VAT. RECOVAT is a quick, secure and efficient tool which allows invoice images to be downloaded from accounting platforms into the RECOVAT system. It also provides an accurate and smooth process for creating invoice lists and vat applications.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThrough CB VATAmerica we offer a unique <strong>Aviation VAT</strong> and fuel excise tax recovery program to reduce the indirect tax costs of operating aircraft in Europe for general aviation businesses or commercial operators.  CB VATAmerica’s cooperation arrangements with industry leaders utilise current technology to achieve better results, efficiently and effectively.\r\n\r\nCash Back’s <strong>VATALYTICS</strong> is our sophisticated program used to revolutionise former high labour intensive VAT accounting controls, which companies are otherwise forced to employ.  It is a program with an automated search for finding incorrect entries in your local VAT accounts.\r\n\r\nWith our <strong>VAT Consulting</strong> services we can resolve all your VAT questions via your local contact person. Simple and efficient!\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Service standards</h1>\r\n<p style=\"text-align: center;\">The Good Working Practice Manual specifies Cash Back’s internal processes and performance standards.</p>\r\n<p style=\"text-align: center;\">The Cash Back Online system tracks all claims and refunds and provides a mechanism for recording and monitoring the service standards.  Clients can check the status of their claims and VAT payments through own login.</p>\r\n<p style=\"text-align: center;\">Trust accounts, indemnity policies as well as insurances for storage and transportation of documents provide security.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"4\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/2\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: left;\">Presence - VAT experts in every country</h1>\r\nCash Back has a standard global approach represented through our member firms in Europe, the US and the Middle East and every client has access to our international network of VAT experts via their own, local Cash Back office.\r\n\r\nCash Back’s network consists of more than 30 offices headed by lawyers, accountants and business professionals with substantial experience in VAT refund and other tax recovery mechanisms within their countries.\r\n\r\nOur team of experienced consultants can assist you to manage your VAT affairs and queries; click on your country for details of your Cash Back office or contact United Cash Back for assistance.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-129\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Cashback-map.png\" alt=\"Cashback-map\" width=\"987\" height=\"900\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Our VAT services", "", "inherit", "open", "open", "", "18-revision-v1", "", "", "2015-04-01 14:39:12", "2015-04-01 12:39:12", "", "18", "http://www.united.sommar.se/uncategorized/18-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("138", "1", "2015-04-01 14:40:09", "2015-04-01 12:40:09", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-136\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png\" alt=\"Our-vat-services-cashback-1\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back is a consolidation of several professional European and other <strong>VAT recovery</strong> firms formed in 1993.  The result is a wealth of knowledge covering the most diverse VAT issues from all possible branches. We offer a wide range of services to maximise your VAT returns and minimise your VAT administration.\r\n\r\n<strong>RECOVAT</strong>: As a result of the 2010 legislation and EU process changes within foreign VAT Refunding, Cash Back developed RECOVAT; leading edge technology to provide an effective system for recovery of VAT. RECOVAT is a quick, secure and efficient tool which allows invoice images to be downloaded from accounting platforms into the RECOVAT system. It also provides an accurate and smooth process for creating invoice lists and vat applications.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThrough CB VATAmerica we offer a unique <strong>Aviation VAT</strong> and fuel excise tax recovery program to reduce the indirect tax costs of operating aircraft in Europe for general aviation businesses or commercial operators.  CB VATAmerica’s cooperation arrangements with industry leaders utilise current technology to achieve better results, efficiently and effectively.\r\n\r\nCash Back’s <strong>VATALYTICS</strong> is our sophisticated program used to revolutionise former high labour intensive VAT accounting controls, which companies are otherwise forced to employ.  It is a program with an automated search for finding incorrect entries in your local VAT accounts.\r\n\r\nWith our <strong>VAT Consulting</strong> services we can resolve all your VAT questions via your local contact person. Simple and efficient!\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Insurance\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nYour claims are secure with Cash Back. We have a group insurance and personal indemnity policy covering any:\r\n\r\n• Loss of original invoices during storage or transport\r\n• Errors or negligence\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Our VAT services", "", "inherit", "open", "open", "", "18-revision-v1", "", "", "2015-04-01 14:40:09", "2015-04-01 12:40:09", "", "18", "http://www.united.sommar.se/uncategorized/18-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("139", "1", "2015-04-01 14:41:42", "2015-04-01 12:41:42", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-136\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png\" alt=\"Our-vat-services-cashback-1\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back is a consolidation of several professional European and other <strong>VAT recovery</strong> firms formed in 1993.  The result is a wealth of knowledge covering the most diverse VAT issues from all possible branches. We offer a wide range of services to maximise your VAT returns and minimise your VAT administration.\r\n\r\n<strong>RECOVAT</strong>: As a result of the 2010 legislation and EU process changes within foreign VAT Refunding, Cash Back developed RECOVAT; leading edge technology to provide an effective system for recovery of VAT. RECOVAT is a quick, secure and efficient tool which allows invoice images to be downloaded from accounting platforms into the RECOVAT system. It also provides an accurate and smooth process for creating invoice lists and vat applications.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThrough CB VATAmerica we offer a unique <strong>Aviation VAT</strong> and fuel excise tax recovery program to reduce the indirect tax costs of operating aircraft in Europe for general aviation businesses or commercial operators.  CB VATAmerica’s cooperation arrangements with industry leaders utilise current technology to achieve better results, efficiently and effectively.\r\n\r\nCash Back’s <strong>VATALYTICS</strong> is our sophisticated program used to revolutionise former high labour intensive VAT accounting controls, which companies are otherwise forced to employ.  It is a program with an automated search for finding incorrect entries in your local VAT accounts.\r\n\r\nWith our <strong>VAT Consulting</strong> services we can resolve all your VAT questions via your local contact person. Simple and efficient!\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n<ul>\r\n	<li>87% of our clients have been with Cash Back for 2 or more years</li>\r\n	<li>40% of our clients have been with Cash Back for 5 or more years</li>\r\n</ul>\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Our VAT services", "", "inherit", "open", "open", "", "18-revision-v1", "", "", "2015-04-01 14:41:42", "2015-04-01 12:41:42", "", "18", "http://www.united.sommar.se/uncategorized/18-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("140", "1", "2015-04-01 14:42:08", "2015-04-01 12:42:08", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-136\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Our-vat-services-cashback-1.png\" alt=\"Our-vat-services-cashback-1\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back is a consolidation of several professional European and other <strong>VAT recovery</strong> firms formed in 1993.  The result is a wealth of knowledge covering the most diverse VAT issues from all possible branches. We offer a wide range of services to maximise your VAT returns and minimise your VAT administration.\r\n\r\n<strong>RECOVAT</strong>: As a result of the 2010 legislation and EU process changes within foreign VAT Refunding, Cash Back developed RECOVAT; leading edge technology to provide an effective system for recovery of VAT. RECOVAT is a quick, secure and efficient tool which allows invoice images to be downloaded from accounting platforms into the RECOVAT system. It also provides an accurate and smooth process for creating invoice lists and vat applications.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThrough CB VATAmerica we offer a unique <strong>Aviation VAT</strong> and fuel excise tax recovery program to reduce the indirect tax costs of operating aircraft in Europe for general aviation businesses or commercial operators.  CB VATAmerica’s cooperation arrangements with industry leaders utilise current technology to achieve better results, efficiently and effectively.\r\n\r\nCash Back’s <strong>VATALYTICS</strong> is our sophisticated program used to revolutionise former high labour intensive VAT accounting controls, which companies are otherwise forced to employ.  It is a program with an automated search for finding incorrect entries in your local VAT accounts.\r\n\r\nWith our <strong>VAT Consulting</strong> services we can resolve all your VAT questions via your local contact person. Simple and efficient!\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Our VAT services", "", "inherit", "open", "open", "", "18-revision-v1", "", "", "2015-04-01 14:42:08", "2015-04-01 12:42:08", "", "18", "http://www.united.sommar.se/uncategorized/18-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("141", "1", "2015-04-01 15:07:01", "2015-04-01 13:07:01", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>The client</h1>\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\n\n• All contact is through your local Cash Back partner\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\n• Full transparency is given through your online login and claim reports\n\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>Cash Back´s role:</h1>\nCash Back break down the foreign VAT refund process into 4 steps:\n\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n\n• Travel Expense files or systems\n• Accounts Payable files or systems\n• Accounting platforms\n• Corporate Credit Card data\n• Foreign supplier records\n\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n\n• Onsite retrieval service relieves your staff of this clerical task\n• Development of an identification system to ensure this process is rationalised as much as possible\n\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n\n• Pre-filled documents save time, these can be made available online\n\n- Power of Attorney\n- Application forms\n- Questionnaires\n- Certificate of VAT status\n\n• Cash Back specialists prepare the claims and submit to foreign tax authority\n• Invoice correction when missing company name or needing other formal corrections\n• Recovery of wrongly charged VAT via credit note process\n• Resubmission for claims needing supplementary information\n\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n\n• Refunds are paid into United Cash Back’s client trust account\n• Monies are promptly transferred to client\n• A detailed statement of the amount credited and fee incurred is sent\n• Original invoices are returned (non EU)\n\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\n• 87% of our clients have been with Cash Back for 2 or more years\n• 40% of our clients have been with Cash Back for 5 or more years\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\n\n[one_half]\n<h2>The RECOVAT Method</h2>\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\n\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\n\n[/one_half]\n[one_half_last]\n\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\n\n&nbsp;\n<h3></h3>\n<h3></h3>\n<h3>All you need to do is:</h3>\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\n\n[/one_half_last]\n\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-autosave-v1", "", "", "2015-04-01 15:07:01", "2015-04-01 13:07:01", "", "16", "http://www.united.sommar.se/uncategorized/16-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("142", "1", "2015-04-01 14:46:17", "2015-04-01 12:46:17", "", "Clients-role", "", "inherit", "open", "open", "", "clients-role", "", "", "2015-04-01 14:46:17", "2015-04-01 12:46:17", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/Clients-role.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("143", "1", "2015-04-01 14:46:45", "2015-04-01 12:46:45", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<ul>\r\n	<li>All contact is through your local Cash Back partner</li>\r\n	<li>Send in, or let our local Cash Back office retrieve all necessary documents and receipts</li>\r\n	<li>No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad</li>\r\n	<li>Cash Back notify when your claim has been refunded to your account and return any original invoices</li>\r\n	<li>Full transparency is given through your online login and claim reports</li>\r\n</ul>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:46:45", "2015-04-01 12:46:45", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("144", "1", "2015-04-01 14:48:13", "2015-04-01 12:48:13", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:48:13", "2015-04-01 12:48:13", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("145", "1", "2015-04-01 14:48:56", "2015-04-01 12:48:56", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:48:56", "2015-04-01 12:48:56", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("146", "1", "2015-04-01 14:50:27", "2015-04-01 12:50:27", "", "Sourcing", "", "inherit", "open", "open", "", "sourcing", "", "", "2015-04-01 14:50:27", "2015-04-01 12:50:27", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/Sourcing.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("147", "1", "2015-04-01 14:51:10", "2015-04-01 12:51:10", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:51:10", "2015-04-01 12:51:10", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("148", "1", "2015-04-01 14:52:13", "2015-04-01 12:52:13", "", "Retriaval", "", "inherit", "open", "open", "", "retriaval", "", "", "2015-04-01 14:52:13", "2015-04-01 12:52:13", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/Retriaval.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("149", "1", "2015-04-01 14:53:15", "2015-04-01 12:53:15", "", "Recovery", "", "inherit", "open", "open", "", "recovery", "", "", "2015-04-01 14:53:15", "2015-04-01 12:53:15", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/Recovery.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("150", "1", "2015-04-01 14:53:22", "2015-04-01 12:53:22", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:53:22", "2015-04-01 12:53:22", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("151", "1", "2015-04-01 14:54:17", "2015-04-01 12:54:17", "", "Refund", "", "inherit", "open", "open", "", "refund", "", "", "2015-04-01 14:54:17", "2015-04-01 12:54:17", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/Refund.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("152", "1", "2015-04-01 14:54:30", "2015-04-01 12:54:30", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:54:30", "2015-04-01 12:54:30", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("153", "1", "2015-04-01 14:55:21", "2015-04-01 12:55:21", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/2\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/2\" el_position=\"last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:55:21", "2015-04-01 12:55:21", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("154", "1", "2015-04-01 14:56:43", "2015-04-01 12:56:43", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first last\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:56:43", "2015-04-01 12:56:43", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("155", "1", "2015-04-01 14:57:49", "2015-04-01 12:57:49", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:57:49", "2015-04-01 12:57:49", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("156", "1", "2015-04-01 14:58:44", "2015-04-01 12:58:44", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 14:58:44", "2015-04-01 12:58:44", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("157", "1", "2015-04-01 15:01:55", "2015-04-01 13:01:55", "", "Recovat-logo", "", "inherit", "open", "open", "", "recovat-logo", "", "", "2015-04-01 15:01:55", "2015-04-01 13:01:55", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("158", "1", "2015-04-01 15:02:39", "2015-04-01 13:02:39", "", "engine", "", "inherit", "open", "open", "", "engine", "", "", "2015-04-01 15:02:39", "2015-04-01 13:02:39", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("159", "1", "2015-04-01 15:02:48", "2015-04-01 13:02:48", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 15:02:48", "2015-04-01 13:02:48", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("160", "1", "2015-04-01 15:04:40", "2015-04-01 13:04:40", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 15:04:40", "2015-04-01 13:04:40", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("161", "1", "2015-04-01 15:05:12", "2015-04-01 13:05:12", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 15:05:12", "2015-04-01 13:05:12", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("162", "1", "2015-04-01 15:05:56", "2015-04-01 13:05:56", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 15:05:56", "2015-04-01 13:05:56", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("163", "1", "2015-04-01 15:07:31", "2015-04-01 13:07:31", "", "process-cashback", "", "inherit", "open", "open", "", "process-cashback", "", "", "2015-04-01 15:07:31", "2015-04-01 13:07:31", "", "16", "http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("164", "1", "2015-04-01 15:07:42", "2015-04-01 13:07:42", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 15:07:42", "2015-04-01 13:07:42", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("165", "1", "2015-04-01 15:08:15", "2015-04-01 13:08:15", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 15:08:15", "2015-04-01 13:08:15", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("166", "1", "2015-04-01 15:09:56", "2015-04-01 13:09:56", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The client</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"It\'s a simple process\" box_type=\"left-icon-alt\" icon=\"fa-rotate-right\" image=\"142\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• All contact is through your local Cash Back partner\r\n• Send in, or let our local Cash Back office retrieve all necessary documents and receipts\r\n• No foreign language or vat knowledge is required; Cash Back handle all contact with the authorities abroad\r\n• Cash Back notify when your claim has been refunded to your account and return any original invoices\r\n• Full transparency is given through your online login and claim reports\r\n\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Cash Back´s role:</h1>\r\nCash Back break down the foreign VAT refund process into 4 steps:\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"1. Sourcing of foreign invoices using for example\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"146\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Travel Expense files or systems\r\n• Accounts Payable files or systems\r\n• Accounting platforms\r\n• Corporate Credit Card data\r\n• Foreign supplier records\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"2. Retrieval of refundable invoices\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"148\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Onsite retrieval service relieves your staff of this clerical task\r\n• Development of an identification system to ensure this process is rationalised as much as possible\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"3. Recovery process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"149\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Pre-filled documents save time, these can be made available online\r\n\r\n- Power of Attorney\r\n- Application forms\r\n- Questionnaires\r\n- Certificate of VAT status\r\n\r\n• Cash Back specialists prepare the claims and submit to foreign tax authority\r\n• Invoice correction when missing company name or needing other formal corrections\r\n• Recovery of wrongly charged VAT via credit note process\r\n• Resubmission for claims needing supplementary information\r\n\r\n[/spb_icon_box] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"4. Refund process\" box_type=\"left-icon\" icon=\"fa-rotate-right\" image=\"151\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• Refunds are paid into United Cash Back’s client trust account\r\n• Monies are promptly transferred to client\r\n• A detailed statement of the amount credited and fee incurred is sent\r\n• Original invoices are returned (non EU)\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Security</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Recovat the automatic way to reclaim foreign VAT</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nThe RECOVAT engine has been designed to efficiently manage large volumes of travel expenses.\r\n\r\nAfter receiving scanned images or scanning at the RECOVAT centre, all relevant information on the travel receipts and invoices is captured using OCR technology. Thereafter Cash Back specialists quality control the information before the data is exported into the required electronic format or paper application forms.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "The process", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2015-04-01 15:09:56", "2015-04-01 13:09:56", "", "16", "http://www.united.sommar.se/uncategorized/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("167", "1", "2015-04-01 15:15:52", "2015-04-01 13:15:52", "", "VAT-info", "", "inherit", "open", "open", "", "vat-info-2", "", "", "2015-04-01 15:15:52", "2015-04-01 13:15:52", "", "14", "http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("168", "1", "2015-04-01 15:23:31", "2015-04-01 13:23:31", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n<h3>8th and 13th VAT Directive Chart</h3>\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n<h3>Excise Tax VAT Chart</h3>\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\n<h3>VAT Chart Aviation</h3>\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\n\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\nThis is a text block. Click the edit button to change this text.\n\n[/spb_text_block] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\n• 87% of our clients have been with Cash Back for 2 or more years\n• 40% of our clients have been with Cash Back for 5 or more years\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>Our VAT services</h1>\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-autosave-v1", "", "", "2015-04-01 15:23:31", "2015-04-01 13:23:31", "", "14", "http://www.united.sommar.se/uncategorized/14-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("169", "1", "2015-04-01 15:18:26", "2015-04-01 13:18:26", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:18:26", "2015-04-01 13:18:26", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("170", "1", "2015-04-01 15:19:12", "2015-04-01 13:19:12", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:19:12", "2015-04-01 13:19:12", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("171", "1", "2015-04-01 15:19:29", "2015-04-01 13:19:29", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:19:29", "2015-04-01 13:19:29", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("172", "1", "2015-04-01 15:20:14", "2015-04-01 13:20:14", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:20:14", "2015-04-01 13:20:14", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("173", "1", "2015-04-01 15:22:04", "2015-04-01 13:22:04", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_button button_size=\"standard\" button_colour=\"accent\" button_type=\"standard\" button_text=\"Button Text\" button_target=\"_self\" button_dropshadow=\"no\" animation=\"none\" animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:22:04", "2015-04-01 13:22:04", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("174", "1", "2015-04-01 15:22:26", "2015-04-01 13:22:26", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_button button_size=\"standard\" button_colour=\"accent\" button_type=\"standard\" button_text=\"Button Text\" button_target=\"_self\" button_dropshadow=\"no\" animation=\"none\" animation_delay=\"0\" width=\"1/3\" el_position=\"first\"] [spb_button button_size=\"standard\" button_colour=\"accent\" button_type=\"standard\" button_text=\"Button Text\" button_target=\"_self\" button_dropshadow=\"no\" animation=\"none\" animation_delay=\"0\" width=\"1/3\"] [spb_button button_size=\"standard\" button_colour=\"accent\" button_type=\"standard\" button_text=\"Button Text\" button_target=\"_self\" button_dropshadow=\"no\" animation=\"none\" animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:22:26", "2015-04-01 13:22:26", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("175", "1", "2015-04-01 15:25:25", "2015-04-01 13:25:25", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button] [sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button] [sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button]\r\n\r\n[/spb_text_block] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:25:25", "2015-04-01 13:25:25", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("176", "1", "2015-04-01 15:26:12", "2015-04-01 13:26:12", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (EU Based)[/sf_button]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (Non-EU Based)[/sf_button]\r\n\r\n[/spb_text_block] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-01 15:26:12", "2015-04-01 13:26:12", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("177", "1", "2015-04-01 15:29:41", "2015-04-01 13:29:41", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\n\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "News", "", "inherit", "open", "open", "", "12-autosave-v1", "", "", "2015-04-01 15:29:41", "2015-04-01 13:29:41", "", "12", "http://www.united.sommar.se/uncategorized/12-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("178", "1", "2015-04-01 15:31:23", "2015-04-01 13:31:23", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_blog blog_type=\"masonry\" gutters=\"yes\" columns=\"4\" fullwidth=\"no\" item_count=\"10\" category=\"All\" offset=\"0\" order_by=\"date\" order=\"ASC\" show_title=\"yes\" show_excerpt=\"yes\" show_details=\"no\" excerpt_length=\"20\" content_output=\"excerpt\" show_read_more=\"yes\" social_integration=\"no\" blog_filter=\"no\" pagination=\"infinite-scroll\" post_type=\"post\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "News", "", "inherit", "open", "open", "", "12-revision-v1", "", "", "2015-04-01 15:31:23", "2015-04-01 13:31:23", "", "12", "http://www.united.sommar.se/uncategorized/12-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("179", "1", "2015-04-01 15:32:35", "2015-04-01 13:32:35", "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!", "Hello world!", "", "inherit", "open", "open", "", "1-revision-v1", "", "", "2015-04-01 15:32:35", "2015-04-01 13:32:35", "", "1", "http://www.united.sommar.se/uncategorized/1-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("180", "1", "2013-07-09 15:35:18", "2013-07-09 13:35:18", "<div><b>Claimants from non-EU countries</b> must submit their VAT refund claims re VAT year 2012 by <b>30 September 2013</b> re the following EU refund countries:</div>\r\n<div>\r\n<ul>\r\n	<li>Belgium</li>\r\n	<li>Denmark</li>\r\n	<li>Estonia</li>\r\n	<li>Greece</li>\r\n	<li>Hungary</li>\r\n	<li>Italy</li>\r\n	<li>Poland</li>\r\n	<li>Portugal</li>\r\n	<li>Romania</li>\r\n	<li>Spain</li>\r\n</ul>\r\n</div>\r\n<div><b>Claimants from EU countries </b>must submit their VAT refund claims re VAT year 2012 by <b>30 September 2013</b> re <b>all </b>EU refund countries.</div>", "September 2013 deadline info", "", "publish", "closed", "open", "", "september-2013-deadline-info", "", "", "2015-04-01 15:38:23", "2015-04-01 13:38:23", "", "0", "http://www.united.sommar.se/?p=180", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("181", "1", "2015-04-01 15:35:48", "2015-04-01 13:35:48", "<div><b>Claimants from non-EU countries</b> must submit their VAT refund claims re VAT year 2012 by <b>30 September 2013</b> re the following EU refund countries:</div>\r\n<div>\r\n<ul>\r\n	<li>Belgium</li>\r\n	<li>Denmark</li>\r\n	<li>Estonia</li>\r\n	<li>Greece</li>\r\n	<li>Hungary</li>\r\n	<li>Italy</li>\r\n	<li>Poland</li>\r\n	<li>Portugal</li>\r\n	<li>Romania</li>\r\n	<li>Spain</li>\r\n</ul>\r\n</div>\r\n<div><b>Claimants from EU countries </b>must submit their VAT refund claims re VAT year 2012 by <b>30 September 2013</b> re <b>all </b>EU refund countries.</div>", "September 2013 deadline info", "", "inherit", "open", "open", "", "180-revision-v1", "", "", "2015-04-01 15:35:48", "2015-04-01 13:35:48", "", "180", "http://www.united.sommar.se/uncategorized/180-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("182", "1", "2013-07-09 15:40:21", "2013-07-09 13:40:21", "<div><b>Croatia</b>:</div>\r\n<div>Information regarding applicable deadline for VAT claims to Croatia following their EU membership from 1 July 2013 will be published as soon as this has officially been decided.</div>\r\n<div><b> </b></div>\r\n<div><b>Norway</b></div>\r\n<div><b>Simplification in the VAT Act regarding VAT Representation</b></div>\r\n<div>Proposed changes to the VAT representation rules passed the Norwegian Parliament on 17 June 2013 and entered into force as of 1 July 2013.</div>\r\n<div><b> </b></div>\r\n<div>The Ministry of Finance has relieved the VAT representative of joint liability where Norway has a mutual administrative assistance agreement with the country were the foreign business is established. Norway currently has such an agreement with Belgium, the Czech Republic, Denmark, Finland, France, Iceland, Italy, Malta, the Netherlands, Poland, Portugal, Slovenia, Spain, Sweden and the UK. According to the accepted proposal, businesses from these countries can reduce their costs because a bank guarantee will not be required in most cases.</div>\r\n<div>For businesses from countries with which Norway does not have a mutual administrative assistance agreement, the old rules will still apply.</div>\r\n<div>The new rules came into force on 1 July 2013.</div>\r\n<div><b> </b></div>\r\n<div><b>Greece, Italy and Spain</b>\r\nThe EU Commission has received and acknowledged several formal complaints regarding slow paying refunds to local and foreign companies.</div>\r\n&nbsp;", "News by country – Croatia, Norway & Greece", "", "publish", "closed", "open", "", "news-by-country-croatia-norway-greece", "", "", "2015-04-01 15:40:58", "2015-04-01 13:40:58", "", "0", "http://www.united.sommar.se/?p=182", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("183", "1", "2015-04-01 15:40:46", "2015-04-01 13:40:46", "<div><b>Croatia</b>:</div>\r\n<div>Information regarding applicable deadline for VAT claims to Croatia following their EU membership from 1 July 2013 will be published as soon as this has officially been decided.</div>\r\n<div><b> </b></div>\r\n<div><b>Norway</b></div>\r\n<div><b>Simplification in the VAT Act regarding VAT Representation</b></div>\r\n<div>Proposed changes to the VAT representation rules passed the Norwegian Parliament on 17 June 2013 and entered into force as of 1 July 2013.</div>\r\n<div><b> </b></div>\r\n<div>The Ministry of Finance has relieved the VAT representative of joint liability where Norway has a mutual administrative assistance agreement with the country were the foreign business is established. Norway currently has such an agreement with Belgium, the Czech Republic, Denmark, Finland, France, Iceland, Italy, Malta, the Netherlands, Poland, Portugal, Slovenia, Spain, Sweden and the UK. According to the accepted proposal, businesses from these countries can reduce their costs because a bank guarantee will not be required in most cases.</div>\r\n<div>For businesses from countries with which Norway does not have a mutual administrative assistance agreement, the old rules will still apply.</div>\r\n<div>The new rules came into force on 1 July 2013.</div>\r\n<div><b> </b></div>\r\n<div><b>Greece, Italy and Spain</b>\r\nThe EU Commission has received and acknowledged several formal complaints regarding slow paying refunds to local and foreign companies.</div>\r\n&nbsp;", "News by country – Croatia, Norway & Greece", "", "inherit", "open", "open", "", "182-revision-v1", "", "", "2015-04-01 15:40:46", "2015-04-01 13:40:46", "", "182", "http://www.united.sommar.se/uncategorized/182-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("184", "1", "2015-04-01 15:41:24", "2015-04-01 13:41:24", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_blog blog_type=\"masonry\" gutters=\"yes\" columns=\"4\" fullwidth=\"no\" item_count=\"10\" category=\"All\" offset=\"0\" order_by=\"date\" order=\"DESC\" show_title=\"yes\" show_excerpt=\"yes\" show_details=\"no\" excerpt_length=\"20\" content_output=\"excerpt\" show_read_more=\"yes\" social_integration=\"no\" blog_filter=\"no\" pagination=\"infinite-scroll\" post_type=\"post\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "News", "", "inherit", "open", "open", "", "12-revision-v1", "", "", "2015-04-01 15:41:24", "2015-04-01 13:41:24", "", "12", "http://www.united.sommar.se/uncategorized/12-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("185", "1", "2013-08-26 15:41:40", "2013-08-26 13:41:40", "<ul>\r\n	<li><b>Greece</b> has agreed with the Euro Group and IMF that it may reduce the VAT rate on restaurant and café services from 23% to 13% from 1 August 2013.</li>\r\n	<li><b>Italy </b>has<b> </b>postponed the increase of the standard VAT rate from 21% to 22% until 1 October 2013.</li>\r\n	<li><b>Montenegro</b><b> </b><b>o</b>n 19 June 2013, the parliament approved the increase of the standard VAT rate commencing on I July 2013 from 17% to 19%.</li>\r\n	<li><b>Portugal</b><b> </b>is considering a change of VAT rate in supplies of catering in restaurants and cafes. The proposal is to reclassify such supplies at the reduced rate of 13% (down from 23%). No firm date has been set and this will be subject to Parliamentary approval.</li>\r\n	<li><b>Slovenia</b><b> </b>From 1 July 2013 the standard rate increased to 22% (from 20%) and the reduced rate increased to 9.5% (from 8.5%)</li>\r\n</ul>\r\n&nbsp;", "Changes in VAT Rates:", "", "publish", "closed", "open", "", "the-eucj-case-of-maria-kozak-v-dyrektor-izby-skarbowej-w-lublinie", "", "", "2015-04-01 15:42:36", "2015-04-01 13:42:36", "", "0", "http://www.united.sommar.se/?p=185", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("186", "1", "2015-04-01 15:42:14", "2015-04-01 13:42:14", "<div>\r\n<div><b>(C-557/11, published on 31 October 2012)</b></div>\r\n<div><b> </b></div>\r\n<div>This ruling can open new opportunities to claim back VAT.</div>\r\n<div><b> </b></div>\r\n<div><b>Ruling of the EUCJ :</b></div>\r\n<div>EU: The ECJ ( European Union Court of Justice ) confirmed that the normal VAT rules on place of supply and VAT liability apply to \'in-house supplies\' made under the Tour Operators Margin Scheme (TOMS). This applies even where such supplies are made in association with \'bought in\' third party TOMS supplies. The \'single composite supply\' analysis available in other areas of VAT cannot apply in these circumstances</div>\r\n<div>(Maria Kozak: C-557/11).</div>\r\n<div><b> </b></div>\r\n<div><b>Summary of the decision</b></div>\r\n<div>The ECJ case of <i>Maria Kozak v Dyrektor Izby Skarbowej w Lublinie </i>(C-557/11, published on 31 October 2012) highlights the complexity of a special VAT scheme for tour operators.</div>\r\n<div></div>\r\n<div>The “Tour Operator Margin Scheme” (TOMS) is compulsory, preventing recovery of VAT on relevant purchases, but charging VAT only on the margin between purchases and sales. Importantly, the scheme is not restricted to travel agents or tourist businesses, but includes all businesses which make qualifying supplies of the following services:</div>\r\n<div>• accommodation</div>\r\n<div>• passenger transport</div>\r\n<div>• hire of a means of transport</div>\r\n<div>• trips or excursions</div>\r\n<div>• services of tour guides</div>\r\n<div>• use of special lounges at airports</div>\r\n<div></div>\r\n<div>The decision may therefore be of relevance to passenger transport businesses which also arrange guided tours, theatre trips, over-night accommodation, meals, and so on.</div>\r\n</div>", "The EUCJ case of Maria Kozak v Dyrektor Izby Skarbowej w Lublinie", "", "inherit", "open", "open", "", "185-revision-v1", "", "", "2015-04-01 15:42:14", "2015-04-01 13:42:14", "", "185", "http://www.united.sommar.se/uncategorized/185-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("187", "1", "2015-04-01 15:42:36", "2015-04-01 13:42:36", "<ul>\r\n	<li><b>Greece</b> has agreed with the Euro Group and IMF that it may reduce the VAT rate on restaurant and café services from 23% to 13% from 1 August 2013.</li>\r\n	<li><b>Italy </b>has<b> </b>postponed the increase of the standard VAT rate from 21% to 22% until 1 October 2013.</li>\r\n	<li><b>Montenegro</b><b> </b><b>o</b>n 19 June 2013, the parliament approved the increase of the standard VAT rate commencing on I July 2013 from 17% to 19%.</li>\r\n	<li><b>Portugal</b><b> </b>is considering a change of VAT rate in supplies of catering in restaurants and cafes. The proposal is to reclassify such supplies at the reduced rate of 13% (down from 23%). No firm date has been set and this will be subject to Parliamentary approval.</li>\r\n	<li><b>Slovenia</b><b> </b>From 1 July 2013 the standard rate increased to 22% (from 20%) and the reduced rate increased to 9.5% (from 8.5%)</li>\r\n</ul>\r\n&nbsp;", "Changes in VAT Rates:", "", "inherit", "open", "open", "", "185-revision-v1", "", "", "2015-04-01 15:42:36", "2015-04-01 13:42:36", "", "185", "http://www.united.sommar.se/uncategorized/185-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("188", "1", "2013-07-09 15:43:09", "2013-07-09 13:43:09", "<ul>\r\n	<li>\r\n<div><b>(C-557/11, published on 31 October 2012)</b></div>\r\n<div><b> </b></div>\r\n<div>This ruling can open new opportunities to claim back VAT.</div>\r\n<div><b> </b></div>\r\n<div><b>Ruling of the EUCJ :</b></div>\r\n<div>EU: The ECJ ( European Union Court of Justice ) confirmed that the normal VAT rules on place of supply and VAT liability apply to \'in-house supplies\' made under the Tour Operators Margin Scheme (TOMS). This applies even where such supplies are made in association with \'bought in\' third party TOMS supplies. The \'single composite supply\' analysis available in other areas of VAT cannot apply in these circumstances</div>\r\n<div>(Maria Kozak: C-557/11).</div>\r\n<div><b> </b></div>\r\n<div><b>Summary of the decision</b></div>\r\n<div>The ECJ case of <i>Maria Kozak v Dyrektor Izby Skarbowej w Lublinie </i>(C-557/11, published on 31 October 2012) highlights the complexity of a special VAT scheme for tour operators.</div>\r\n<div></div>\r\n<div>The “Tour Operator Margin Scheme” (TOMS) is compulsory, preventing recovery of VAT on relevant purchases, but charging VAT only on the margin between purchases and sales. Importantly, the scheme is not restricted to travel agents or tourist businesses, but includes all businesses which make qualifying supplies of the following services:</div>\r\n<div>• accommodation</div>\r\n<div>• passenger transport</div>\r\n<div>• hire of a means of transport</div>\r\n<div>• trips or excursions</div>\r\n<div>• services of tour guides</div>\r\n<div>• use of special lounges at airports</div>\r\n<div></div>\r\n<div>The decision may therefore be of relevance to passenger transport businesses which also arrange guided tours, theatre trips, over-night accommodation, meals, and so on.</div></li>\r\n</ul>", "The EUCJ case of Maria Kozak v Dyrektor Izby Skarbowej w Lublinie", "", "publish", "closed", "open", "", "the-eucj-case-of-maria-kozak-v-dyrektor-izby-skarbowej-w-lublinie-2", "", "", "2015-04-01 15:43:26", "2015-04-01 13:43:26", "", "0", "http://www.united.sommar.se/?p=188", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("189", "1", "2015-04-01 15:43:26", "2015-04-01 13:43:26", "<ul>\r\n	<li>\r\n<div><b>(C-557/11, published on 31 October 2012)</b></div>\r\n<div><b> </b></div>\r\n<div>This ruling can open new opportunities to claim back VAT.</div>\r\n<div><b> </b></div>\r\n<div><b>Ruling of the EUCJ :</b></div>\r\n<div>EU: The ECJ ( European Union Court of Justice ) confirmed that the normal VAT rules on place of supply and VAT liability apply to \'in-house supplies\' made under the Tour Operators Margin Scheme (TOMS). This applies even where such supplies are made in association with \'bought in\' third party TOMS supplies. The \'single composite supply\' analysis available in other areas of VAT cannot apply in these circumstances</div>\r\n<div>(Maria Kozak: C-557/11).</div>\r\n<div><b> </b></div>\r\n<div><b>Summary of the decision</b></div>\r\n<div>The ECJ case of <i>Maria Kozak v Dyrektor Izby Skarbowej w Lublinie </i>(C-557/11, published on 31 October 2012) highlights the complexity of a special VAT scheme for tour operators.</div>\r\n<div></div>\r\n<div>The “Tour Operator Margin Scheme” (TOMS) is compulsory, preventing recovery of VAT on relevant purchases, but charging VAT only on the margin between purchases and sales. Importantly, the scheme is not restricted to travel agents or tourist businesses, but includes all businesses which make qualifying supplies of the following services:</div>\r\n<div>• accommodation</div>\r\n<div>• passenger transport</div>\r\n<div>• hire of a means of transport</div>\r\n<div>• trips or excursions</div>\r\n<div>• services of tour guides</div>\r\n<div>• use of special lounges at airports</div>\r\n<div></div>\r\n<div>The decision may therefore be of relevance to passenger transport businesses which also arrange guided tours, theatre trips, over-night accommodation, meals, and so on.</div></li>\r\n</ul>", "The EUCJ case of Maria Kozak v Dyrektor Izby Skarbowej w Lublinie", "", "inherit", "open", "open", "", "188-revision-v1", "", "", "2015-04-01 15:43:26", "2015-04-01 13:43:26", "", "188", "http://www.united.sommar.se/uncategorized/188-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("190", "1", "2013-08-26 15:43:34", "2013-08-26 13:43:34", "<ul>\r\n	<li>In case of local reverse charge mechanism, or if a service is rendered in another country where the customer is liable for the payment of the VAT;</li>\r\n	<li>In case of intra-community supply of goods;</li>\r\n	<li>In case of local supply, if the VAT amount charged to the customer reaches HUF 2 million.</li>\r\n</ul>", "Hungary; the Tax Authorities have specified the cases where the customer’s VAT number must be indicated on the invoice.", "", "publish", "closed", "open", "", "hungary-the-tax-authorities-have-specified-the-cases-where-the-customers-vat-number-must-be-indicated-on-the-invoice", "", "", "2015-04-01 15:44:15", "2015-04-01 13:44:15", "", "0", "http://www.united.sommar.se/?p=190", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("191", "1", "2015-04-01 15:44:15", "2015-04-01 13:44:15", "<ul>\r\n	<li>In case of local reverse charge mechanism, or if a service is rendered in another country where the customer is liable for the payment of the VAT;</li>\r\n	<li>In case of intra-community supply of goods;</li>\r\n	<li>In case of local supply, if the VAT amount charged to the customer reaches HUF 2 million.</li>\r\n</ul>", "Hungary; the Tax Authorities have specified the cases where the customer’s VAT number must be indicated on the invoice.", "", "inherit", "open", "open", "", "190-revision-v1", "", "", "2015-04-01 15:44:15", "2015-04-01 13:44:15", "", "190", "http://www.united.sommar.se/uncategorized/190-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("192", "1", "2013-10-29 15:44:24", "2013-10-29 14:44:24", "Amendment to Implementing Regulation (EU) 282/2011 – place of service / immovable property\r\n\r\nOn 8 October 2013, the Council of Justice and Home Affairs (JHA) approved the draft regulation to amend Implementing Regulation (EU) 282/2011 in terms of the place of supply of service and the definition of “immovable property.”\r\n\r\nThis change partly has to do with the rules for determining the place of telecommunications, broadcasting and electronic services in a B2C relationship, which will come into effect on 1 January 2015. From that date on, the place of supply of such services will be the place where the consumer is established. It means for businesses offering such services they can meet all their VAT obligations in the whole European Union by filing a single VAT return in the EU Member State where they are established (one-stop-shop).\r\n\r\nThe place of sale of tickets for events has also been clarified as the place where the event is held, irrelevant of how the tickets are distributed. These changes will have effect from 1 January 2015. The regulation also clarifies what “immovable property” must be understood to mean. These clauses will take effect on 1 January 2017.", "Amendment to Implementing Regulation (EU) 282/2011 – place of service / immovable property", "", "publish", "closed", "open", "", "amendment-to-implementing-regulation-eu-2822011-place-of-service-immovable-property", "", "", "2015-04-01 15:44:48", "2015-04-01 13:44:48", "", "0", "http://www.united.sommar.se/?p=192", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("193", "1", "2015-04-01 15:44:48", "2015-04-01 13:44:48", "Amendment to Implementing Regulation (EU) 282/2011 – place of service / immovable property\r\n\r\nOn 8 October 2013, the Council of Justice and Home Affairs (JHA) approved the draft regulation to amend Implementing Regulation (EU) 282/2011 in terms of the place of supply of service and the definition of “immovable property.”\r\n\r\nThis change partly has to do with the rules for determining the place of telecommunications, broadcasting and electronic services in a B2C relationship, which will come into effect on 1 January 2015. From that date on, the place of supply of such services will be the place where the consumer is established. It means for businesses offering such services they can meet all their VAT obligations in the whole European Union by filing a single VAT return in the EU Member State where they are established (one-stop-shop).\r\n\r\nThe place of sale of tickets for events has also been clarified as the place where the event is held, irrelevant of how the tickets are distributed. These changes will have effect from 1 January 2015. The regulation also clarifies what “immovable property” must be understood to mean. These clauses will take effect on 1 January 2017.", "Amendment to Implementing Regulation (EU) 282/2011 – place of service / immovable property", "", "inherit", "open", "open", "", "192-revision-v1", "", "", "2015-04-01 15:44:48", "2015-04-01 13:44:48", "", "192", "http://www.united.sommar.se/uncategorized/192-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("194", "1", "2013-10-29 15:45:06", "2013-10-29 14:45:06", "<strong>ECJ Cases C-193/11, Commission v. Poland, C-236/11, Commission v. Italy, C-269/11, Commission v. Czech Republic, C-293/11, Commission v. Greece, C-296/11, Commission v. France, C-309/11, Commission v. Finland, C-450/11, Commission v. Portugal</strong>\r\n\r\nOn 26 September 2013, the European Court of Justice made its judgement in cases C-193/11, Commission v. Poland, C-236/11, Commission v. Italy, C-269/11, Commission v. Czech Republic, C-293/11, Commission v. Greece, C-296/11, Commission v. France, C-309/11, Commission v. Finland, C-450/11, Commission v. Portugal, concerning the special scheme for travel agents. It had to be determined whether these EU Member States had transposed articles 306-310 of the VAT Directive correctly in allowing travel agencies to apply the special scheme to transactions regardless of whether the “customer” is actually the “traveller” or not.\r\n\r\nThe Court ruled that although there are differences between the language versions of the VAT Directive, the conditions of articles 306-310 must be interpreted on the basis of the customer approach (i.e. the sale of travel to all types of customer, in contrast to the traveller only approach, i.e. that the special scheme for travel agents only applies for the sale of travel to travellers). By allowing travel agencies to apply the special scheme for travel agents in cases where travel services are sold to persons other than travellers, the EU Member States named have not infringed the VAT Directive.", "Special scheme for travel agents", "", "publish", "closed", "open", "", "special-scheme-for-travel-agents", "", "", "2015-04-01 15:45:32", "2015-04-01 13:45:32", "", "0", "http://www.united.sommar.se/?p=194", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("195", "1", "2015-04-01 15:45:32", "2015-04-01 13:45:32", "<strong>ECJ Cases C-193/11, Commission v. Poland, C-236/11, Commission v. Italy, C-269/11, Commission v. Czech Republic, C-293/11, Commission v. Greece, C-296/11, Commission v. France, C-309/11, Commission v. Finland, C-450/11, Commission v. Portugal</strong>\r\n\r\nOn 26 September 2013, the European Court of Justice made its judgement in cases C-193/11, Commission v. Poland, C-236/11, Commission v. Italy, C-269/11, Commission v. Czech Republic, C-293/11, Commission v. Greece, C-296/11, Commission v. France, C-309/11, Commission v. Finland, C-450/11, Commission v. Portugal, concerning the special scheme for travel agents. It had to be determined whether these EU Member States had transposed articles 306-310 of the VAT Directive correctly in allowing travel agencies to apply the special scheme to transactions regardless of whether the “customer” is actually the “traveller” or not.\r\n\r\nThe Court ruled that although there are differences between the language versions of the VAT Directive, the conditions of articles 306-310 must be interpreted on the basis of the customer approach (i.e. the sale of travel to all types of customer, in contrast to the traveller only approach, i.e. that the special scheme for travel agents only applies for the sale of travel to travellers). By allowing travel agencies to apply the special scheme for travel agents in cases where travel services are sold to persons other than travellers, the EU Member States named have not infringed the VAT Directive.", "Special scheme for travel agents", "", "inherit", "open", "open", "", "194-revision-v1", "", "", "2015-04-01 15:45:32", "2015-04-01 13:45:32", "", "194", "http://www.united.sommar.se/uncategorized/194-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("196", "1", "2014-01-28 15:46:07", "2014-01-28 14:46:07", "As of the 1st of January 2014, the Romanian tax legislation was amended to be more compliant with the European tax provisions. For foreign claimants changes include the removal of the obligation to provide proof of payment to exercise his refund right for VAT refund.\r\n\r\nAs a member of the European Union, Romania is obliged to implement in its domestic tax legislation the provisions of the Council Directive 2008/9/EC. According to the provisions of Article 5 of the Directive Romania shall refund to any taxable person not established in Romania any VAT charged in respect of goods or services supplied to him by other taxable persons meeting certain conditions. Romania previously chose to limit this VAT refund right only after checks that the VAT amounts were actually paid to the Romanian suppliers. Hence the European Commission informed Romania in 2012 (EU Pilot 3927/2012/TAXU) of its incorrect implementation and threatened to start infringement procedures. To avoid infringement proceedings, the Romanian Government issued the Emergency Ordinance no. 102/14.11.2013 which finally removes this limitation. These 2 changes should make the process of applying for VAT refund and the processing time at the ROTA much better.", "Romania", "", "publish", "closed", "open", "", "romania", "", "", "2015-04-01 15:46:36", "2015-04-01 13:46:36", "", "0", "http://www.united.sommar.se/?p=196", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("197", "1", "2015-04-01 15:46:36", "2015-04-01 13:46:36", "As of the 1st of January 2014, the Romanian tax legislation was amended to be more compliant with the European tax provisions. For foreign claimants changes include the removal of the obligation to provide proof of payment to exercise his refund right for VAT refund.\r\n\r\nAs a member of the European Union, Romania is obliged to implement in its domestic tax legislation the provisions of the Council Directive 2008/9/EC. According to the provisions of Article 5 of the Directive Romania shall refund to any taxable person not established in Romania any VAT charged in respect of goods or services supplied to him by other taxable persons meeting certain conditions. Romania previously chose to limit this VAT refund right only after checks that the VAT amounts were actually paid to the Romanian suppliers. Hence the European Commission informed Romania in 2012 (EU Pilot 3927/2012/TAXU) of its incorrect implementation and threatened to start infringement procedures. To avoid infringement proceedings, the Romanian Government issued the Emergency Ordinance no. 102/14.11.2013 which finally removes this limitation. These 2 changes should make the process of applying for VAT refund and the processing time at the ROTA much better.", "Romania", "", "inherit", "open", "open", "", "196-revision-v1", "", "", "2015-04-01 15:46:36", "2015-04-01 13:46:36", "", "196", "http://www.united.sommar.se/uncategorized/196-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("198", "1", "2014-01-28 15:46:45", "2014-01-28 14:46:45", "It is currently possible to deduct 50% of input VAT incurred on hotel accommodations relating to business travel. As a part of the growth plan for the economy, Denmark will increase hotel VAT refunds to 75% from 1 January 2014. This increase will save business travellers who file VAT refunds an additional 5% of hotel costs.", "Denmark:  Hotel VAT refunds up from 50% to 75% from 1 January 2014", "", "publish", "closed", "open", "", "denmark-hotel-vat-refunds-up-from-50-to-75-from-1-january-2014", "", "", "2015-04-01 15:47:09", "2015-04-01 13:47:09", "", "0", "http://www.united.sommar.se/?p=198", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("199", "1", "2015-04-01 15:47:09", "2015-04-01 13:47:09", "It is currently possible to deduct 50% of input VAT incurred on hotel accommodations relating to business travel. As a part of the growth plan for the economy, Denmark will increase hotel VAT refunds to 75% from 1 January 2014. This increase will save business travellers who file VAT refunds an additional 5% of hotel costs.", "Denmark:  Hotel VAT refunds up from 50% to 75% from 1 January 2014", "", "inherit", "open", "open", "", "198-revision-v1", "", "", "2015-04-01 15:47:09", "2015-04-01 13:47:09", "", "198", "http://www.united.sommar.se/uncategorized/198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("200", "1", "2014-05-05 15:47:36", "2014-05-05 13:47:36", "As at 1 April 2014 UK Taxable Turnover thresholds have increased:\r\n\r\nTaxable turnover threshold determining when a person established in the UK:\r\n• must register has increased from £79,000 to £81,000\r\n• may de-register is increased from £77,000 to £79,000\r\nAlso registration and deregistration threshold for relevant acquisitions from other EU Member States has increased from £79,000 to £81,000", "UK Taxable Turnover thresholds", "", "publish", "closed", "open", "", "uk-taxable-turnover-thresholds", "", "", "2015-04-01 15:47:55", "2015-04-01 13:47:55", "", "0", "http://www.united.sommar.se/?p=200", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("201", "1", "2015-04-01 15:47:55", "2015-04-01 13:47:55", "As at 1 April 2014 UK Taxable Turnover thresholds have increased:\r\n\r\nTaxable turnover threshold determining when a person established in the UK:\r\n• must register has increased from £79,000 to £81,000\r\n• may de-register is increased from £77,000 to £79,000\r\nAlso registration and deregistration threshold for relevant acquisitions from other EU Member States has increased from £79,000 to £81,000", "UK Taxable Turnover thresholds", "", "inherit", "open", "open", "", "200-revision-v1", "", "", "2015-04-01 15:47:55", "2015-04-01 13:47:55", "", "200", "http://www.united.sommar.se/uncategorized/200-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("202", "1", "2014-05-05 15:48:04", "2014-05-05 13:48:04", "From 1 January 2015, telecommunications, broadcasting and electronic services supplied to non-business customers will always be taxed in the country where the customer belongs. This is the case whether the supplier is based within the EU or outside the EU.", "New place of supply rules for telecommunications, broadcasting and e-services from 1 January 2015", "", "publish", "closed", "open", "", "new-place-of-supply-rules-for-telecommunications-broadcasting-and-e-services-from-1-january-2015", "", "", "2015-04-01 15:48:25", "2015-04-01 13:48:25", "", "0", "http://www.united.sommar.se/?p=202", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("203", "1", "2015-04-01 15:48:25", "2015-04-01 13:48:25", "From 1 January 2015, telecommunications, broadcasting and electronic services supplied to non-business customers will always be taxed in the country where the customer belongs. This is the case whether the supplier is based within the EU or outside the EU.", "New place of supply rules for telecommunications, broadcasting and e-services from 1 January 2015", "", "inherit", "open", "open", "", "202-revision-v1", "", "", "2015-04-01 15:48:25", "2015-04-01 13:48:25", "", "202", "http://www.united.sommar.se/uncategorized/202-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("204", "1", "2014-05-05 15:48:32", "2014-05-05 13:48:32", "The reduced VAT rate of 9% has been extended indefinitely and applies on certain supplies such as food and drink, hotel lettings, including guesthouses, admissions to cinemas, theatres, certain musical performances, museums and art gallery exhibitions.", "Ireland", "", "publish", "closed", "open", "", "ireland", "", "", "2015-04-01 15:48:52", "2015-04-01 13:48:52", "", "0", "http://www.united.sommar.se/?p=204", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("205", "1", "2015-04-01 15:48:52", "2015-04-01 13:48:52", "The reduced VAT rate of 9% has been extended indefinitely and applies on certain supplies such as food and drink, hotel lettings, including guesthouses, admissions to cinemas, theatres, certain musical performances, museums and art gallery exhibitions.", "Ireland", "", "inherit", "open", "open", "", "204-revision-v1", "", "", "2015-04-01 15:48:52", "2015-04-01 13:48:52", "", "204", "http://www.united.sommar.se/uncategorized/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("206", "1", "2014-05-05 15:49:01", "2014-05-05 13:49:01", "Since 1 January 2014 the late submission of a VAT return or the late payment of VAT is classified as a criminal offence in the Netherlands.\r\nThe intention is that all businesses that are registered for VAT in Netherlands will file and submit their returns on time and correctly.", "The Netherlands", "", "publish", "closed", "open", "", "the-netherlands", "", "", "2015-04-01 15:49:24", "2015-04-01 13:49:24", "", "0", "http://www.united.sommar.se/?p=206", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("207", "1", "2015-04-01 15:49:24", "2015-04-01 13:49:24", "Since 1 January 2014 the late submission of a VAT return or the late payment of VAT is classified as a criminal offence in the Netherlands.\r\nThe intention is that all businesses that are registered for VAT in Netherlands will file and submit their returns on time and correctly.", "The Netherlands", "", "inherit", "open", "open", "", "206-revision-v1", "", "", "2015-04-01 15:49:24", "2015-04-01 13:49:24", "", "206", "http://www.united.sommar.se/uncategorized/206-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("208", "1", "2014-09-01 15:51:59", "2014-09-01 13:51:59", "<img class=\"alignnone size-full wp-image-209\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Now-available-in-the-concur-app-center.jpg\" alt=\"Now-available-in-the-concur-app-center\" width=\"1170\" height=\"449\" />\r\n\r\n<img class=\"alignnone size-full wp-image-210 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/App-center-1.png\" alt=\"App-center-1\" width=\"271\" height=\"250\" />Cash Back, (the Smart Way to Reclaim Foreign VAT on Travel Expenses), today announced the integration of its Travel and Expense (T&amp;E) Value Added Tax (VAT) RETRIEVER with Concur® (NASDAQ: CNQR), the leading provider of spend management solutions and services. Now available in the Concur App Center, the T&amp;E VAT Retriever will provide Concur clients with effortless, rapid recovery of their foreign VAT.\r\n\r\nCash Back’s T&amp;E VAT RETRIEVER will automatically and routinely extract receipts from Concur to identify all refundable VAT and prepare the company claims for the tax authorities. This integration results in earlier receipt submission, as well as expediting the process and enabling larger refunds.\r\n\r\n“Cash Back has always been in the forefront of technology when processing the thousands of VAT claims we submit each year to the tax authorities on behalf of clients all over the world. Therefore it was a natural step for us to select Concur, a leading international provider of travel and expense solutions,” said Jane Holmberg, CEO of Cash Back. “This partnership lets technology drive the process from the moment someone is handed a receipt to it being submitted correctly at the Tax Authorities.”\r\n\r\n“We are focused on creating an ecosystem of partners that deliver connected, effortless and\r\ntransparent solutions for our clients,” said Jigish Avalani, SVP and GM of Platform and Developer\r\nServices for Concur. “Our partnership with Cash Back is an excellent addition to our ecosystem,\r\nenabling a difficult process such as VAT reclaims to be an expedited, seamless process – minimizing time spent and maximising savings.”\r\n\r\n[buttons type=\"default\" size=\"small\" rounded=\"no\" style=\"flat\" link=\"http://localhost/unitedcash/wp-content/uploads/2014/09/cashback_concur_pressrelease_v2.pdf\" target=\"blank\"]Download press release[/buttons] [buttons type=\"default\" size=\"small\" rounded=\"no\" style=\"flat\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"blank\"]Visit Concur App Center[/buttons]\r\n\r\n<iframe src=\"//www.youtube.com/embed/c30OQfd6xLU\" width=\"730\" height=\"411\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>", "Cash Back integrates with Concur for effortless VAT Reclaim", "", "publish", "closed", "open", "", "cash-back-integrates-with-concur-for-effortless-vat-reclaim", "", "", "2015-04-01 15:52:47", "2015-04-01 13:52:47", "", "0", "http://www.united.sommar.se/?p=208", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("209", "1", "2015-04-01 15:51:31", "2015-04-01 13:51:31", "", "Now-available-in-the-concur-app-center", "", "inherit", "open", "open", "", "now-available-in-the-concur-app-center-2", "", "", "2015-04-01 15:51:31", "2015-04-01 13:51:31", "", "208", "http://www.united.sommar.se/wp-content/uploads/2015/04/Now-available-in-the-concur-app-center.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `k2zp_posts` VALUES("210", "1", "2015-04-01 15:51:52", "2015-04-01 13:51:52", "", "App-center-1", "", "inherit", "open", "open", "", "app-center-1", "", "", "2015-04-01 15:51:52", "2015-04-01 13:51:52", "", "208", "http://www.united.sommar.se/wp-content/uploads/2015/04/App-center-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("211", "1", "2015-04-01 15:51:59", "2015-04-01 13:51:59", "<img class=\"alignnone size-full wp-image-209\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Now-available-in-the-concur-app-center.jpg\" alt=\"Now-available-in-the-concur-app-center\" width=\"1170\" height=\"449\" />\r\n\r\n<img class=\"alignnone size-full wp-image-210 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/App-center-1.png\" alt=\"App-center-1\" width=\"271\" height=\"250\" />Cash Back, (the Smart Way to Reclaim Foreign VAT on Travel Expenses), today announced the integration of its Travel and Expense (T&amp;E) Value Added Tax (VAT) RETRIEVER with Concur® (NASDAQ: CNQR), the leading provider of spend management solutions and services. Now available in the Concur App Center, the T&amp;E VAT Retriever will provide Concur clients with effortless, rapid recovery of their foreign VAT.\r\n\r\nCash Back’s T&amp;E VAT RETRIEVER will automatically and routinely extract receipts from Concur to identify all refundable VAT and prepare the company claims for the tax authorities. This integration results in earlier receipt submission, as well as expediting the process and enabling larger refunds.\r\n\r\n“Cash Back has always been in the forefront of technology when processing the thousands of VAT claims we submit each year to the tax authorities on behalf of clients all over the world. Therefore it was a natural step for us to select Concur, a leading international provider of travel and expense solutions,” said Jane Holmberg, CEO of Cash Back. “This partnership lets technology drive the process from the moment someone is handed a receipt to it being submitted correctly at the Tax Authorities.”\r\n\r\n“We are focused on creating an ecosystem of partners that deliver connected, effortless and\r\ntransparent solutions for our clients,” said Jigish Avalani, SVP and GM of Platform and Developer\r\nServices for Concur. “Our partnership with Cash Back is an excellent addition to our ecosystem,\r\nenabling a difficult process such as VAT reclaims to be an expedited, seamless process – minimizing time spent and maximising savings.”\r\n\r\n[buttons type=\"default\" size=\"small\" rounded=\"no\" style=\"flat\" link=\"http://localhost/unitedcash/wp-content/uploads/2014/09/cashback_concur_pressrelease_v2.pdf\" target=\"blank\"]Download press release[/buttons] [buttons type=\"default\" size=\"small\" rounded=\"no\" style=\"flat\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"blank\"]Visit Concur App Center[/buttons]\r\n\r\n<iframe src=\"//www.youtube.com/embed/c30OQfd6xLU\" width=\"730\" height=\"411\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>", "Cash Back integrates with Concur for effortless VAT Reclaim", "", "inherit", "open", "open", "", "208-revision-v1", "", "", "2015-04-01 15:51:59", "2015-04-01 13:51:59", "", "208", "http://www.united.sommar.se/uncategorized/208-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("212", "1", "2014-09-01 15:52:55", "2014-09-01 13:52:55", "The 2011 temporary VAT increase of 20% will remain indefinitely.", "Slovakia", "", "publish", "closed", "open", "", "slovakia", "", "", "2015-04-01 15:53:19", "2015-04-01 13:53:19", "", "0", "http://www.united.sommar.se/?p=212", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("213", "1", "2015-04-01 15:53:19", "2015-04-01 13:53:19", "The 2011 temporary VAT increase of 20% will remain indefinitely.", "Slovakia", "", "inherit", "open", "open", "", "212-revision-v1", "", "", "2015-04-01 15:53:19", "2015-04-01 13:53:19", "", "212", "http://www.united.sommar.se/uncategorized/212-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("214", "1", "2014-09-01 15:53:37", "2014-09-01 13:53:37", "As of 1 January 2015, the standard VAT rate will increase to 23.25%.", "Portugal", "", "publish", "closed", "open", "", "portugal", "", "", "2015-04-01 15:53:52", "2015-04-01 13:53:52", "", "0", "http://www.united.sommar.se/?p=214", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("215", "1", "2015-04-01 15:53:52", "2015-04-01 13:53:52", "As of 1 January 2015, the standard VAT rate will increase to 23.25%.", "Portugal", "", "inherit", "open", "open", "", "214-revision-v1", "", "", "2015-04-01 15:53:52", "2015-04-01 13:53:52", "", "214", "http://www.united.sommar.se/uncategorized/214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("216", "1", "2014-09-01 15:54:03", "2014-09-01 13:54:03", "The European Commission recently presented their draft Directive for a standard EU VAT return in October 2013, their goal for it to be implemented by January 2017.\r\n\r\nOn the 20th of June 2014, all EU member states reached political consensus on the proposed implementation of a standard EU VAT return for all of the 28 EU member states.\r\n\r\nThe Directive was put forward as the European Commission believe that a standardised VAT return will help reduce the amount of VAT that is undeclared, or incorrectly declared, and will thereby decrease the VAT gap.\r\n\r\nThe proposed VAT return will include 5 compulsory information boxes for taxpayers to complete, with an additional 26 boxes for member states to choose from. The returns are to be submitted on a monthly basis for business above €2 billion and a quarterly basis for those below €2 billion.", "A standard EU VAT return", "", "publish", "closed", "open", "", "a-standard-eu-vat-return", "", "", "2015-04-01 15:54:23", "2015-04-01 13:54:23", "", "0", "http://www.united.sommar.se/?p=216", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("217", "1", "2015-04-01 15:54:23", "2015-04-01 13:54:23", "The European Commission recently presented their draft Directive for a standard EU VAT return in October 2013, their goal for it to be implemented by January 2017.\r\n\r\nOn the 20th of June 2014, all EU member states reached political consensus on the proposed implementation of a standard EU VAT return for all of the 28 EU member states.\r\n\r\nThe Directive was put forward as the European Commission believe that a standardised VAT return will help reduce the amount of VAT that is undeclared, or incorrectly declared, and will thereby decrease the VAT gap.\r\n\r\nThe proposed VAT return will include 5 compulsory information boxes for taxpayers to complete, with an additional 26 boxes for member states to choose from. The returns are to be submitted on a monthly basis for business above €2 billion and a quarterly basis for those below €2 billion.", "A standard EU VAT return", "", "inherit", "open", "open", "", "216-revision-v1", "", "", "2015-04-01 15:54:23", "2015-04-01 13:54:23", "", "216", "http://www.united.sommar.se/uncategorized/216-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("218", "1", "2014-11-26 15:54:30", "2014-11-26 14:54:30", "From 1 January 2015, companies will be able to recover 100% of the input VAT incurred on hotel accommodation. The current recovery rate is 75%.", "Denmark", "", "publish", "closed", "open", "", "denmark", "", "", "2015-04-01 15:54:47", "2015-04-01 13:54:47", "", "0", "http://www.united.sommar.se/?p=218", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("219", "1", "2015-04-01 15:54:47", "2015-04-01 13:54:47", "From 1 January 2015, companies will be able to recover 100% of the input VAT incurred on hotel accommodation. The current recovery rate is 75%.", "Denmark", "", "inherit", "open", "open", "", "218-revision-v1", "", "", "2015-04-01 15:54:47", "2015-04-01 13:54:47", "", "218", "http://www.united.sommar.se/uncategorized/218-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("220", "1", "2014-11-26 15:54:54", "2014-11-26 14:54:54", "The European Commission is to refer Germany to the European Court of Justice considering that Germany’s national legislation in respect of VAT refunds is discriminatory against non-EU operators.\r\n\r\nUnder German VAT legislation, taxable persons established outside the EU must personally sign the application form to be VAT refunded, whilst EU established entities can authorise a third person to sign or submit their refund form to recover VAT. There is no provision under EU legislation which requires VAT refund forms to be personally signed. According to the EU Commission, requiring a personal signature from non-EU operators can make it excessively difficult for non EU established persons/entities to obtain a VAT refund.", "Germany", "", "publish", "closed", "open", "", "germany", "", "", "2015-04-01 15:55:11", "2015-04-01 13:55:11", "", "0", "http://www.united.sommar.se/?p=220", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("221", "1", "2015-04-01 15:55:11", "2015-04-01 13:55:11", "The European Commission is to refer Germany to the European Court of Justice considering that Germany’s national legislation in respect of VAT refunds is discriminatory against non-EU operators.\r\n\r\nUnder German VAT legislation, taxable persons established outside the EU must personally sign the application form to be VAT refunded, whilst EU established entities can authorise a third person to sign or submit their refund form to recover VAT. There is no provision under EU legislation which requires VAT refund forms to be personally signed. According to the EU Commission, requiring a personal signature from non-EU operators can make it excessively difficult for non EU established persons/entities to obtain a VAT refund.", "Germany", "", "inherit", "open", "open", "", "220-revision-v1", "", "", "2015-04-01 15:55:11", "2015-04-01 13:55:11", "", "220", "http://www.united.sommar.se/uncategorized/220-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("222", "1", "2014-11-26 15:55:22", "2014-11-26 14:55:22", "The annual VAT registration threshold when companies must register for Norwegian VAT is to increase from Kroner 50,000 to 150,000.", "Norway", "", "publish", "closed", "open", "", "norway", "", "", "2015-04-01 15:55:39", "2015-04-01 13:55:39", "", "0", "http://www.united.sommar.se/?p=222", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("223", "1", "2015-04-01 15:55:39", "2015-04-01 13:55:39", "The annual VAT registration threshold when companies must register for Norwegian VAT is to increase from Kroner 50,000 to 150,000.", "Norway", "", "inherit", "open", "open", "", "222-revision-v1", "", "", "2015-04-01 15:55:39", "2015-04-01 13:55:39", "", "222", "http://www.united.sommar.se/uncategorized/222-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("224", "1", "2014-11-26 15:55:47", "2014-11-26 14:55:47", "Lithuania will introduce the euro on 1 January 2015.", "Lithuania", "", "publish", "closed", "open", "", "lithuania", "", "", "2015-04-01 15:56:07", "2015-04-01 13:56:07", "", "0", "http://www.united.sommar.se/?p=224", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("225", "1", "2015-04-01 15:56:07", "2015-04-01 13:56:07", "Lithuania will introduce the euro on 1 January 2015.", "Lithuania", "", "inherit", "open", "open", "", "224-revision-v1", "", "", "2015-04-01 15:56:07", "2015-04-01 13:56:07", "", "224", "http://www.united.sommar.se/uncategorized/224-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("226", "1", "2015-04-01 15:56:44", "2015-04-01 13:56:44", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_blog blog_type=\"masonry\" gutters=\"yes\" columns=\"4\" fullwidth=\"no\" item_count=\"10\" category=\"All\" offset=\"0\" order_by=\"date\" order=\"DESC\" show_title=\"yes\" show_excerpt=\"yes\" show_details=\"no\" excerpt_length=\"20\" content_output=\"excerpt\" show_read_more=\"yes\" social_integration=\"no\" blog_filter=\"no\" pagination=\"infinite-scroll\" post_type=\"post\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "News", "", "inherit", "open", "open", "", "12-revision-v1", "", "", "2015-04-01 15:56:44", "2015-04-01 13:56:44", "", "12", "http://www.united.sommar.se/uncategorized/12-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("227", "1", "2015-04-01 16:14:12", "2015-04-01 14:14:12", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n<h3>Contact your local office</h3>\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n<h3>Become a Member Firm</h3>\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h2>United Cash Back AG</h2>\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Austria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Management GmbH\nVienna, Austria\nTel: 43 1803 3307\nEmail: <a href=\"mailto:office@cashback.at\">office@cashback.at</a>\n\n[/spb_toggle] [spb_toggle title=\"Latvia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back Finland Oy Ab\nHelsinki, Finland\nTel. 358 947 78040\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\n\n[/spb_toggle] [spb_toggle title=\"Bahrain\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Bahrain\nManama , Bahrain\nTel. 973 17224567\nEmail: <a href=\"mailto:veronicaq@cashbackbahrain.com\">veronicaq@cashbackbahrain.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Lithuania\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back Finland Oy Ab\nHelsinki, Finland\nTel. 358 947 78040\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\n\n[/spb_toggle] [spb_toggle title=\"Benelux\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nTVA Conseil Sas\nSaint Nom la Bretèche, France\nTel. 33 1 34 62 51 14\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Norway\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back Norway A/S\nOslo, Norway\nTel. 47 2207 1895\nEmail: <a href=\"mailto:stein@cash-back.no\">stein@cash-back.no</a>\n\n[/spb_toggle] [spb_toggle title=\"Bosnia &amp; Herzegovina\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nIMO JUNIOR d.o.o.\nUgljara, Bosnia &amp; Herzegovina\nTel. 387 31 712 576\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\n\n[/spb_toggle] [spb_toggle title=\"Macedonia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back IMO - Belgrade\nBelgrade, Serbia\nTel. 381 11 307 66 40\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\n\n[/spb_toggle] [spb_toggle title=\"Bulgaria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nUnited Cash Back AG\nCham, Switzerland\nRepresentative office in Askim, Sweden\nTel. 46 31 774 2660\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Oman\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back UAE\nDubai, United Arab Emirates\nTel. 971 4 3166436\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Croatia\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCB VINCETIĆ d.o.o.\nZagreb, , Croatia\nTel. 385 1 455 4492\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\n\n[/spb_toggle] [spb_toggle title=\"Poland\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nGrupa CBP Spółka z ograniczona odpowiedzialnością Sp.K.\nWarsaw, Poland\nTel. 48 22 644 46\nEmail: <a href=\"mailto:marcin.piotrowski@cashback.pl\">marcin.piotrowski@cashback.pl</a>\n\n[/spb_toggle] [spb_toggle title=\"Cyprus\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nSky Cash Back VAT Reclaim Ltd\nNICOSIA, Cyprus\nTel. 357 22 67 44 66\nEmail: <a href=\"mailto:info@skycashback.com\">info@skycashback.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Portugal\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nUnited Cash Back AG\nCham, Switzerland\nRepresentative office in Askim, Sweden\nTel. 46 31 774 2660\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Czech Republic\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCESSCO Cash Back VAT Reclaim SRO\nPraha, Czech Republic\nTel. +420 212 248 700\nEmail: <a href=\"mailto:praha@cessco.eu\">praha@cessco.eu</a>\n\n[/spb_toggle] [spb_toggle title=\"Qatar\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back UAE\nDubai, United Arab Emirates\nTel. 971 4 3166436\nEmail: <a href=\"http://localhost/unitedcash/caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Denmark\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Finland Oy Ab\nHelsinki, Finland\nTel. 358 947 78040\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\n\n[/spb_toggle] [spb_toggle title=\"Romania\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCESSCO Cash Back VAT Reclaim SRL\nBucharest , Romania\nTel. 40 21 410 23 40\nEmail: <a href=\"mailto: bucuresti@cessco.eu\">bucuresti@cessco.eu</a>\n\n[/spb_toggle] [spb_toggle title=\"Finland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Finland Oy Ab\nHelsinki, Finland\nTel. 358 947 78040\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\n\n[/spb_toggle] [spb_toggle title=\"Saudi Arabia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back UAE\nDubai, United Arab Emirates\nTel. 971 4 3166436\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\n\n[/spb_toggle] [spb_toggle title=\"France\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nTVA Conseil Sas\nSaint Nom la Bretèche, France\nTel. 33 1 34 62 51 14\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Serbia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back IMO - Belgrade\nBelgrade, Serbia\nTel. 381 11 307 66 40\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\n\n[/spb_toggle] [spb_toggle title=\"Germany\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back VAT Reclaim GmbH\nBad Homburg v.d.H, Germany\nTel. 49 6172 13 96 710\nEmail: <a href=\"mailto:info@cash-back-vat-reclaim.de\">info@cash-back-vat-reclaim.de</a>\n\n[/spb_toggle] [spb_toggle title=\"Slovakia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCESSCO Cash Back VAT Reclaim SRO\nPraha,Czech Republic\nTel: +420 212 248 700\nEmail: <a href=\"mailto:praha@cessco.eu\">praha@cessco.eu</a>\n\n[/spb_toggle] [spb_toggle title=\"Greece\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nSky Cash Back VAT Reclaim Ltd\nAthens,Greece\nTel. 0030-213-0311137\nEmail: <a href=\"mailto:panos@skycashback.com\">panos@skycashback.com</a>\n\n[/spb_toggle] [spb_toggle title=\"South Africa\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back South Africa\nDunkeld West, South Africa\nTel. 27 11 277 0000\nEmail: <a href=\"mailto:elaine@cashbacksa.co.za\">elaine@cashbacksa.co.za</a>\n\n[/spb_toggle] [spb_toggle title=\"Hungary\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Hungary Kft\nBudapest, Hungary\nTel. 36 1 457 69 92\nEmail: <a href=\"mailto:cashback@cashback.hu\">cashback@cashback.hu</a>\n\n[/spb_toggle] [spb_toggle title=\"Spain\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nUnited Cash Back AG\nCham, Switzerland\nRepresentative office in Askim, Sweden\nTel. 46 31 774 2660\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Iceland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Norway A/S\nOslo, Norway\nTel. 47 2207 1895\nEmail: <a href=\"mailto:stein@cash-back.no\">stein@cash-back.no</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Ireland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nTVA Conseil Sas\nSaint Nom la Bretèche, France\nTel. 33 1 34 62 51 14\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Israel\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nIsravat Consulting Ltd\nPO Box 365 Modiin\n7171201\nIsrael\nTel +972 8 699 8890\nEmail: <a href=\"mailto:info@cashbackis.com\">info@cashbackis.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Italy\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nUnited Cash Back AG\nCham, Switzerland\nRepresentative office in Askim, Sweden\nTel. 46 31 774 2660\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Kuwait\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back UAE\nDubai, United Arab Emirates\nTel. 971 4 3166436\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\n• 87% of our clients have been with Cash Back for 2 or more years\n• 40% of our clients have been with Cash Back for 5 or more years\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact us", "", "inherit", "open", "open", "", "10-autosave-v1", "", "", "2015-04-01 16:14:12", "2015-04-01 14:14:12", "", "10", "http://www.united.sommar.se/uncategorized/10-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("228", "1", "2015-04-01 15:58:33", "2015-04-01 13:58:33", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h1>Contact your local office</h1>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h1>Become a Member Firm</h1>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button][sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (EU Based)[/sf_button][sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (Non-EU Based)[/sf_button]\r\n\r\n[/spb_text_block] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 15:58:33", "2015-04-01 13:58:33", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("229", "1", "2015-04-01 15:59:16", "2015-04-01 13:59:16", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h1>Contact your local office</h1>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h1>Become a Member Firm</h1>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 15:59:16", "2015-04-01 13:59:16", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("230", "1", "2015-04-01 15:59:38", "2015-04-01 13:59:38", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h1>Contact your local office</h1>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h1>Become a Member Firm</h1>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 15:59:38", "2015-04-01 13:59:38", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("231", "1", "2015-04-01 16:00:23", "2015-04-01 14:00:23", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h1>Contact your local office</h1>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h1>Become a Member Firm</h1>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 16:00:23", "2015-04-01 14:00:23", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("232", "1", "2015-04-01 16:01:06", "2015-04-01 14:01:06", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h1>Contact your local office</h1>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h1>Become a Member Firm</h1>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Austria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Management GmbH\r\nVienna, Austria\r\nTel: 43 1803 3307\r\nEmail: <a href=\"mailto:office@cashback.at\">office@cashback.at</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 16:01:06", "2015-04-01 14:01:06", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("233", "1", "2015-04-01 16:02:01", "2015-04-01 14:02:01", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>Contact your local office</h3>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Become a Member Firm</h3>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Austria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Management GmbH\r\nVienna, Austria\r\nTel: 43 1803 3307\r\nEmail: <a href=\"mailto:office@cashback.at\">office@cashback.at</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThe toggle content goes here, click the edit button to change this text.\r\n\r\n[/spb_toggle] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact us", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 16:02:01", "2015-04-01 14:02:01", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("234", "1", "2015-04-01 16:10:53", "2015-04-01 14:10:53", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n<h3>Contact your local office</h3>\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n<h3>Become a Member Firm</h3>\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h2>United Cash Back AG</h2>\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Austria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Management GmbH\nVienna, Austria\nTel: 43 1803 3307\nEmail: <a href=\"mailto:office@cashback.at\">office@cashback.at</a>\n\n[/spb_toggle] [spb_toggle title=\"Kuwait\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nCash Back UAE\nDubai, United Arab Emirates\nTel. 971 4 3166436\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Bahrain\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Bahrain\nManama , Bahrain\nTel. 973 17224567\nEmail: <a href=\"mailto:veronicaq@cashbackbahrain.com\">veronicaq@cashbackbahrain.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Benelux\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nTVA Conseil Sas\nSaint Nom la Bretèche, France\nTel. 33 1 34 62 51 14\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Bosnia &amp; Herzegovina\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nIMO JUNIOR d.o.o.\nUgljara, Bosnia &amp; Herzegovina\nTel. 387 31 712 576\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Bulgaria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nUnited Cash Back AG\nCham, Switzerland\nRepresentative office in Askim, Sweden\nTel. 46 31 774 2660\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Croatia\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCB VINCETIĆ d.o.o.\nZagreb, , Croatia\nTel. 385 1 455 4492\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Cyprus\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nSky Cash Back VAT Reclaim Ltd\nNICOSIA, Cyprus\nTel. 357 22 67 44 66\nEmail: <a href=\"mailto:info@skycashback.com\">info@skycashback.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Czech Republic\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCESSCO Cash Back VAT Reclaim SRO\nPraha, Czech Republic\nTel. +420 212 248 700\nEmail: <a href=\"mailto:praha@cessco.eu\">praha@cessco.eu</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Denmark\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Finland Oy Ab\nHelsinki, Finland\nTel. 358 947 78040\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Finland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Finland Oy Ab\nHelsinki, Finland\nTel. 358 947 78040\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"France\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nTVA Conseil Sas\nSaint Nom la Bretèche, France\nTel. 33 1 34 62 51 14\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Germany\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back VAT Reclaim GmbH\nBad Homburg v.d.H, Germany\nTel. 49 6172 13 96 710\nEmail: <a href=\"mailto:info@cash-back-vat-reclaim.de\">info@cash-back-vat-reclaim.de</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Greece\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nSky Cash Back VAT Reclaim Ltd\nAthens,Greece\nTel. 0030-213-0311137\nEmail: <a href=\"mailto:panos@skycashback.com\">panos@skycashback.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Hungary\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Hungary Kft\nBudapest, Hungary\nTel. 36 1 457 69 92\nEmail: <a href=\"mailto:cashback@cashback.hu\">cashback@cashback.hu</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Iceland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back Norway A/S\nOslo, Norway\nTel. 47 2207 1895\nEmail: <a href=\"mailto:stein@cash-back.no\">stein@cash-back.no</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Ireland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nTVA Conseil Sas\nSaint Nom la Bretèche, France\nTel. 33 1 34 62 51 14\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Israel\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nIsravat Consulting Ltd\nPO Box 365 Modiin\n7171201\nIsrael\nTel +972 8 699 8890\nEmail: <a href=\"mailto:info@cashbackis.com\">info@cashbackis.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Italy\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nUnited Cash Back AG\nCham, Switzerland\nRepresentative office in Askim, Sweden\nTel. 46 31 774 2660\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [spb_toggle title=\"Kuwait\" open=\"false\" width=\"1/2\" el_position=\"first\"]\n\nCash Back UAE\nDubai, United Arab Emirates\nTel. 971 4 3166436\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\n\n[/spb_toggle] [spb_toggle title=\"Toggle title\" open=\"false\" width=\"1/2\" el_position=\"last\"]\n\nThe toggle content goes here, click the edit button to change this text.\n\n[/spb_toggle] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\n• 87% of our clients have been with Cash Back for 2 or more years\n• 40% of our clients have been with Cash Back for 5 or more years\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact us", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 16:10:53", "2015-04-01 14:10:53", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("235", "1", "2015-04-01 16:15:18", "2015-04-01 14:15:18", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>Contact your local office</h3>\r\nTo contact your local Cash Back office please select your country below, alternatively contact United Cash back for assistance.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Become a Member Firm</h3>\r\nIf you are interested in representing Cash Back in your territory then please contact United Cash Back AG for further information.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h2>United Cash Back AG</h2>\r\nGewerbestrasse 11, CH 6330 CHAM, Switzerland. Tel: 41 41 740 31 56. Fax: 41 41 740 31 58. Email: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Austria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Management GmbH\r\nVienna, Austria\r\nTel: 43 1803 3307\r\nEmail: <a href=\"mailto:office@cashback.at\">office@cashback.at</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Latvia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Bahrain\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Bahrain\r\nManama , Bahrain\r\nTel. 973 17224567\r\nEmail: <a href=\"mailto:veronicaq@cashbackbahrain.com\">veronicaq@cashbackbahrain.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Lithuania\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Benelux\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Norway\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Norway A/S\r\nOslo, Norway\r\nTel. 47 2207 1895\r\nEmail: <a href=\"mailto:stein@cash-back.no\">stein@cash-back.no</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Bosnia &amp; Herzegovina\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nIMO JUNIOR d.o.o.\r\nUgljara, Bosnia &amp; Herzegovina\r\nTel. 387 31 712 576\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Macedonia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back IMO - Belgrade\r\nBelgrade, Serbia\r\nTel. 381 11 307 66 40\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Bulgaria\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Oman\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Croatia\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCB VINCETIĆ d.o.o.\r\nZagreb, , Croatia\r\nTel. 385 1 455 4492\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Poland\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nGrupa CBP Spółka z ograniczona odpowiedzialnością Sp.K.\r\nWarsaw, Poland\r\nTel. 48 22 644 46\r\nEmail: <a href=\"mailto:marcin.piotrowski@cashback.pl\">marcin.piotrowski@cashback.pl</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Cyprus\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nSky Cash Back VAT Reclaim Ltd\r\nNICOSIA, Cyprus\r\nTel. 357 22 67 44 66\r\nEmail: <a href=\"mailto:info@skycashback.com\">info@skycashback.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Portugal\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Czech Republic\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCESSCO Cash Back VAT Reclaim SRO\r\nPraha, Czech Republic\r\nTel. +420 212 248 700\r\nEmail: <a href=\"mailto:praha@cessco.eu\">praha@cessco.eu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Qatar\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"http://localhost/unitedcash/caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Denmark\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Romania\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCESSCO Cash Back VAT Reclaim SRL\r\nBucharest , Romania\r\nTel. 40 21 410 23 40\r\nEmail: <a href=\"mailto: bucuresti@cessco.eu\">bucuresti@cessco.eu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Finland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Saudi Arabia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"France\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Serbia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back IMO - Belgrade\r\nBelgrade, Serbia\r\nTel. 381 11 307 66 40\r\nEmail: <a href=\"mailto:cashbackbelgrade@eunet.rs\">cashbackbelgrade@eunet.rs</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Germany\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back VAT Reclaim GmbH\r\nBad Homburg v.d.H, Germany\r\nTel. 49 6172 13 96 710\r\nEmail: <a href=\"mailto:info@cash-back-vat-reclaim.de\">info@cash-back-vat-reclaim.de</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Slovakia\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCESSCO Cash Back VAT Reclaim SRO\r\nPraha,Czech Republic\r\nTel: +420 212 248 700\r\nEmail: <a href=\"mailto:praha@cessco.eu\">praha@cessco.eu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Greece\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nSky Cash Back VAT Reclaim Ltd\r\nAthens,Greece\r\nTel. 0030-213-0311137\r\nEmail: <a href=\"mailto:panos@skycashback.com\">panos@skycashback.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"South Africa\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back South Africa\r\nDunkeld West, South Africa\r\nTel. 27 11 277 0000\r\nEmail: <a href=\"mailto:elaine@cashbacksa.co.za\">elaine@cashbacksa.co.za</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Hungary\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Hungary Kft\r\nBudapest, Hungary\r\nTel. 36 1 457 69 92\r\nEmail: <a href=\"mailto:cashback@cashback.hu\">cashback@cashback.hu</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Spain\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Iceland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back Norway A/S\r\nOslo, Norway\r\nTel. 47 2207 1895\r\nEmail: <a href=\"mailto:stein@cash-back.no\">stein@cash-back.no</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Sweden\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back Finland Oy Ab\r\nHelsinki, Finland\r\nTel. 358 947 78040\r\nEmail: <a href=\"mailto:cashback@cashback.fi\">cashback@cashback.fi</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Ireland\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Switzerland\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back VAT Reclaim AG\r\nCham, Switzerland\r\nTel. 41 41 747 3000\r\nEmail: <a href=\"mailto:info@cashback.ch\">info@cashback.ch</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Israel\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nIsravat Consulting Ltd\r\nPO Box 365 Modiin\r\n7171201\r\nIsrael\r\nTel +972 8 699 8890\r\nEmail: <a href=\"mailto:info@cashbackis.com\">info@cashbackis.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"United Arab Emirates\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Italy\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nUnited Cash Back AG\r\nCham, Switzerland\r\nRepresentative office in Askim, Sweden\r\nTel. 46 31 774 2660\r\nEmail: <a href=\"mailto:cb@cashbackvatreclaim.com\">cb@cashbackvatreclaim.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"United Kingdom\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nTVA Conseil Sas\r\nSaint Nom la Bretèche, France\r\nTel. 33 1 34 62 51 14\r\nEmail: <a href=\"mailto:fredrik.skioldebrand@tvaconseil.com\">fredrik.skioldebrand@tvaconseil.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"Kuwait\" open=\"false\" width=\"1/2\" el_position=\"first\"]\r\n\r\nCash Back UAE\r\nDubai, United Arab Emirates\r\nTel. 971 4 3166436\r\nEmail: <a href=\"mailto:caroline.harrott@dnata.com\">caroline.harrott@dnata.com</a>\r\n\r\n[/spb_toggle] [spb_toggle title=\"United States of America\" open=\"false\" width=\"1/2\" el_position=\"last\"]\r\n\r\nCB VATAmerica LLC\r\nPrinceton, , USA\r\nTel. 1 609 430 4960\r\nEmail: <a href=\"mailto:info@cbvatamerica.com\">info@cbvatamerica.com</a>\r\n\r\n[/spb_toggle] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Contact us", "", "inherit", "open", "open", "", "10-revision-v1", "", "", "2015-04-01 16:15:18", "2015-04-01 14:15:18", "", "10", "http://www.united.sommar.se/uncategorized/10-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("236", "1", "2015-04-02 08:26:06", "2015-04-02 06:26:06", "", "Heading 1", "", "publish", "open", "open", "", "heading-1", "", "", "2015-04-02 09:52:07", "2015-04-02 07:52:07", "", "0", "http://www.united.sommar.se/?p=236", "9", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("237", "1", "2015-04-02 08:35:22", "2015-04-02 06:35:22", "", "Heading 2", "", "publish", "open", "open", "", "heading-2", "", "", "2015-04-02 09:52:08", "2015-04-02 07:52:08", "", "0", "http://www.united.sommar.se/?p=237", "16", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("238", "1", "2015-04-02 08:35:23", "2015-04-02 06:35:23", "", "Heading 3", "", "publish", "open", "open", "", "heading-3", "", "", "2015-04-02 09:52:09", "2015-04-02 07:52:09", "", "0", "http://www.united.sommar.se/?p=238", "23", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("239", "1", "2015-04-02 08:35:24", "2015-04-02 06:35:24", "", "Heading 4", "", "publish", "open", "open", "", "heading-4", "", "", "2015-04-02 09:52:10", "2015-04-02 07:52:10", "", "0", "http://www.united.sommar.se/?p=239", "30", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("240", "1", "2015-04-02 08:39:11", "2015-04-02 06:39:11", "<h4><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://login.cashbackvatreclaim.com/myportal/login.phtml\" target=\"_blank\">LOGIN</a></span></h4>", "", "", "trash", "open", "open", "", "240", "", "", "2015-04-02 11:01:22", "2015-04-02 09:01:22", "", "0", "http://www.united.sommar.se/?p=240", "0", "post", "", "0");
INSERT INTO `k2zp_posts` VALUES("241", "1", "2015-04-02 08:42:31", "2015-04-02 06:42:31", " ", "", "", "publish", "open", "open", "", "241", "", "", "2015-04-02 10:45:25", "2015-04-02 08:45:25", "", "0", "http://www.united.sommar.se/?p=241", "1", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("242", "1", "2015-04-02 08:42:31", "2015-04-02 06:42:31", " ", "", "", "publish", "open", "open", "", "242", "", "", "2015-04-02 10:45:26", "2015-04-02 08:45:26", "", "0", "http://www.united.sommar.se/?p=242", "2", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("243", "1", "2015-04-02 08:42:32", "2015-04-02 06:42:32", "", "Login", "", "publish", "open", "open", "", "login-2", "", "", "2015-04-02 10:45:26", "2015-04-02 08:45:26", "", "0", "http://www.united.sommar.se/?p=243", "3", "nav_menu_item", "", "0");
INSERT INTO `k2zp_posts` VALUES("244", "1", "2015-04-02 08:44:45", "2015-04-02 06:44:45", "", "bg-header", "", "inherit", "open", "open", "", "bg-header", "", "", "2015-04-02 08:44:45", "2015-04-02 06:44:45", "", "0", "http://www.united.sommar.se/wp-content/uploads/2015/04/bg-header.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("245", "1", "2015-04-02 08:47:40", "2015-04-02 06:47:40", "", "bg-content", "", "inherit", "open", "open", "", "bg-content", "", "", "2015-04-02 08:47:40", "2015-04-02 06:47:40", "", "8", "http://www.united.sommar.se/wp-content/uploads/2015/04/bg-content.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("246", "1", "2015-04-02 08:48:27", "2015-04-02 06:48:27", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"image\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_image=\"245\" bg_type=\"pattern\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-02 08:48:27", "2015-04-02 06:48:27", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("247", "1", "2015-04-02 08:48:52", "2015-04-02 06:48:52", "[spb_row wrap_type=\"content-width\" row_bg_type=\"image\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_image=\"245\" bg_type=\"pattern\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-02 08:48:52", "2015-04-02 06:48:52", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("248", "1", "2015-04-02 08:49:13", "2015-04-02 06:49:13", "[spb_row wrap_type=\"content-width\" row_bg_type=\"image\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_image=\"245\" bg_type=\"pattern\" parallax_image_height=\"content-height\" parallax_image_movement=\"scroll\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-02 08:49:13", "2015-04-02 06:49:13", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("249", "1", "2015-04-02 08:49:46", "2015-04-02 06:49:46", "[spb_row wrap_type=\"content-width\" row_bg_type=\"image\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_image=\"245\" bg_type=\"pattern\" parallax_image_height=\"content-height\" parallax_image_movement=\"scroll\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-02 08:49:46", "2015-04-02 06:49:46", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("250", "1", "2015-04-02 08:51:46", "2015-04-02 06:51:46", "[spb_row wrap_type=\"content-width\" row_bg_type=\"image\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_image=\"245\" bg_type=\"pattern\" parallax_image_height=\"content-height\" parallax_image_movement=\"scroll\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" row_el_class=\"pb0, pt0, mb0, mt0\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-02 08:51:46", "2015-04-02 06:51:46", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("251", "1", "2015-04-02 08:52:04", "2015-04-02 06:52:04", "[spb_row wrap_type=\"content-width\" row_bg_type=\"image\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_image=\"245\" bg_type=\"pattern\" parallax_image_height=\"content-height\" parallax_image_movement=\"scroll\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_slider revslider_shortcode=\"start\" fullwidth=\"no\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#ffffff\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"first\"] [/spb_column] [spb_column width=\"2/3\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">Why choose us</h1>\r\n<p style=\"text-align: center;\">Cash Back has been in the VAT business since 1988. Our unique international network of experienced local VAT specialists makes complex foreign VAT refund simple. We use modern technology combined with our VAT expertise to achieve better results, efficiently and effectively.</p>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 style=\"text-align: center;\">and...</h1>\r\n<p style=\"text-align: center;\">Cash Back is represented in over 30 countries and has more than 25 years of VAT experience. We offer a range of corporate VAT services. Contact your local office to maximise VAT recovery with minimum effort.</p>\r\n[/spb_text_block] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" col_responsive_vis=\"hidden-xs\" width=\"1/6\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"full-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_testimonial_slider title=\"Testimonials\" text_size=\"standard\" item_count=\"6\" order=\"rand\" category=\"All\" autoplay=\"yes\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row]", "United Cashback - 20 years of VAT Recovery", "", "inherit", "open", "open", "", "8-revision-v1", "", "", "2015-04-02 08:52:04", "2015-04-02 06:52:04", "", "8", "http://www.united.sommar.se/uncategorized/8-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("252", "1", "2015-04-02 09:37:55", "2015-04-02 07:37:55", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-167\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-info.png\" alt=\"VAT-info\" width=\"785\" height=\"416\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nTo get through the maze of different VAT rates and refundable services in the various countries where VAT or other taxes can be recovered, please see the summarized VAT charts.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (EU Based)[/sf_button]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (Non-EU Based)[/sf_button]\r\n\r\n[/spb_text_block] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat info", "", "inherit", "open", "open", "", "14-revision-v1", "", "", "2015-04-02 09:37:55", "2015-04-02 07:37:55", "", "14", "http://www.united.sommar.se/uncategorized/14-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("253", "1", "2015-04-02 09:54:37", "2015-04-02 07:54:37", "", "Reclaim-VAT-Cashback", "", "inherit", "open", "open", "", "reclaim-vat-cashback", "", "", "2015-04-02 09:54:37", "2015-04-02 07:54:37", "", "30", "http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("254", "1", "2015-04-02 10:00:03", "2015-04-02 08:00:03", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\nSuccessfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.  Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.  This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n<h3>8th and 13th VAT Directive Chart</h3>\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n<h3>Excise Tax VAT Chart</h3>\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\n<h3>VAT Chart Aviation</h3>\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\n\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"1/1\" el_position=\"first last\"]\n\n[one_half]\n<h2>The RECOVAT Method</h2>\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\n\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\n\n[/one_half]\n[one_half_last]\n\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\n\n&nbsp;\n<h3></h3>\n<h3></h3>\n<h3>All you need to do is:</h3>\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\n\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\n\n[/one_half_last]\n\n[/spb_boxed_content] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\n• 87% of our clients have been with Cash Back for 2 or more years\n• 40% of our clients have been with Cash Back for 5 or more years\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>The RECOVAT Process in detail</h1>\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\n\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>Our VAT services</h1>\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim", "", "inherit", "open", "open", "", "30-autosave-v1", "", "", "2015-04-02 10:00:03", "2015-04-02 08:00:03", "", "30", "http://www.united.sommar.se/uncategorized/30-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("255", "1", "2015-04-02 09:55:23", "2015-04-02 07:55:23", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nSuccessfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.  Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.  This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]VAT Chart[/sf_button][sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (EU Based)[/sf_button][sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"#\" target=\"_self\" icon=\"fa-clipboard\" dropshadow=\"no\" extraclass=\"\"]AviationVAT Chart (Non-EU Based)[/sf_button]\r\n\r\n[/spb_text_block] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim", "", "inherit", "open", "open", "", "30-revision-v1", "", "", "2015-04-02 09:55:23", "2015-04-02 07:55:23", "", "30", "http://www.united.sommar.se/uncategorized/30-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("256", "1", "2015-04-02 09:56:50", "2015-04-02 07:56:50", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nSuccessfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.  Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.  This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim", "", "inherit", "open", "open", "", "30-revision-v1", "", "", "2015-04-02 09:56:50", "2015-04-02 07:56:50", "", "30", "http://www.united.sommar.se/uncategorized/30-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("257", "1", "2015-04-02 09:57:55", "2015-04-02 07:57:55", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nSuccessfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.  Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.  This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\r\n\r\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim", "", "inherit", "open", "open", "", "30-revision-v1", "", "", "2015-04-02 09:57:55", "2015-04-02 07:57:55", "", "30", "http://www.united.sommar.se/uncategorized/30-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("258", "1", "2015-04-02 09:58:58", "2015-04-02 07:58:58", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nSuccessfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.  Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.  This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"2/3\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\r\n\r\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [/spb_column] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [/spb_column] [spb_column width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim", "", "inherit", "open", "open", "", "30-revision-v1", "", "", "2015-04-02 09:58:58", "2015-04-02 07:58:58", "", "30", "http://www.united.sommar.se/uncategorized/30-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("259", "1", "2015-04-02 10:00:28", "2015-04-02 08:00:28", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nSuccessfully recovering foreign VAT demands good local relations with the tax authorities as well as local VAT knowledge particularly due to constant changes in VAT legislation and tax authority processes.  Cash Back’s cooperation with VAT experts throughout Europe provides us with the close contact and VAT sense needed to maximise your VAT returns.  This together with our RECOVAT program creates a unique way for you to recover your foreign VAT releasing precious time previously allocated to this.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>8th and 13th VAT Directive Chart</h3>\r\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Excise Tax VAT Chart</h3>\r\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\r\n<h3>VAT Chart Aviation</h3>\r\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\r\n\r\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim", "", "inherit", "open", "open", "", "30-revision-v1", "", "", "2015-04-02 10:00:28", "2015-04-02 08:00:28", "", "30", "http://www.united.sommar.se/uncategorized/30-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("260", "1", "2015-04-02 10:03:47", "2015-04-02 08:03:47", "", "TE-VAT-Retrieval", "", "inherit", "open", "open", "", "te-vat-retrieval", "", "", "2015-04-02 10:03:47", "2015-04-02 08:03:47", "", "28", "http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `k2zp_posts` VALUES("261", "1", "2015-04-02 10:09:51", "2015-04-02 08:09:51", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\n<div class=\"tt-column\">\n\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\n\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\n\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\n<h3>T&amp;E-VAT Retriever\n- technology and know-how</h3>\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\n\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\n\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\n\n</div>\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\n\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\n• 87% of our clients have been with Cash Back for 2 or more years\n• 40% of our clients have been with Cash Back for 5 or more years\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>Our VAT services</h1>\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"first last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-autosave-v1", "", "", "2015-04-02 10:09:51", "2015-04-02 08:09:51", "", "28", "http://www.united.sommar.se/uncategorized/28-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("262", "1", "2015-04-02 10:04:56", "2015-04-02 08:04:56", "", "T-e-system", "", "inherit", "open", "open", "", "t-e-system", "", "", "2015-04-02 10:04:56", "2015-04-02 08:04:56", "", "28", "http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("263", "1", "2015-04-02 10:05:13", "2015-04-02 08:05:13", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\r\n\r\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:05:13", "2015-04-02 08:05:13", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("264", "1", "2015-04-02 10:06:55", "2015-04-02 08:06:55", "", "Concur", "", "inherit", "open", "open", "", "concur", "", "", "2015-04-02 10:06:55", "2015-04-02 08:06:55", "", "28", "http://www.united.sommar.se/wp-content/uploads/2015/04/Concur.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("265", "1", "2015-04-02 10:07:16", "2015-04-02 08:07:16", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"whitestroke\" padding_vertical=\"2\" padding_horizontal=\"2\" width=\"1/2\" el_position=\"first\"]\r\n<h3>Concur – Expense management made easy<img class=\"alignright size-full wp-image-264\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Concur.png\" alt=\"Concur\" width=\"100\" height=\"108\" /></h3>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[/spb_boxed_content] [spb_boxed_content type=\"whitestroke\" padding_vertical=\"2\" padding_horizontal=\"2\" width=\"1/2\" el_position=\"last\"]\r\n<h3>Concur – Expense management made easy<img class=\"alignright size-full wp-image-264\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Concur.png\" alt=\"Concur\" width=\"100\" height=\"108\" /></h3>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:07:16", "2015-04-02 08:07:16", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("266", "1", "2015-04-02 10:07:55", "2015-04-02 08:07:55", "", "KDS", "", "inherit", "open", "open", "", "kds", "", "", "2015-04-02 10:07:55", "2015-04-02 08:07:55", "", "28", "http://www.united.sommar.se/wp-content/uploads/2015/04/KDS.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("267", "1", "2015-04-02 10:08:04", "2015-04-02 08:08:04", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"whitestroke\" padding_vertical=\"2\" padding_horizontal=\"2\" width=\"1/2\" el_position=\"first\"]\r\n<h3>Concur – Expense management made easy</h3>\r\n<img class=\"alignright size-full wp-image-264\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Concur.png\" alt=\"Concur\" width=\"100\" height=\"108\" />Concur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[/spb_boxed_content] [spb_boxed_content type=\"whitestroke\" padding_vertical=\"2\" padding_horizontal=\"2\" width=\"1/2\" el_position=\"last\"]\r\n\r\nKDS is a European technology leader with 20 years’ Travel and Expense management experience.\r\n\r\nThe KDS award winning Software allows clients to gain complete visibility and control over their T&amp;E programs.\r\n\r\n<b><img class=\"alignright size-full wp-image-266\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/KDS.png\" alt=\"KDS\" width=\"100\" height=\"108\" />Control:</b><b> </b>KDS provides accurate, timely and powerful reporting, meaning clients can take the right decisions at the right time whilst ensuring financial compliance.\r\n\r\n<b>Functionality:</b> End users love using KDS. The ease of use and graphical “consumer friendly” interfaces, drive user adoption and ensure that processes are followed.\r\n\r\n<b>Speed:</b> KDS is fast, meaning that your staff spends less time on T&amp;E and more time focused on their objectives. KDS users can complete the entire T&amp;E cycle, from trip booking through to expense submission quickly and easily, wherever they are, whenever they want and on whichever device they wish.\r\n\r\nKDS solutions address the complete Travel and Expense (T&amp;E) lifecycle, from policy definition and enforcement to automated expense processing.\r\n\r\n<a href=\"http://localhost/unitedcash/www.kds.com\" target=\"_blank\">www.kds.com</a>\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:08:04", "2015-04-02 08:08:04", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("268", "1", "2015-04-02 10:08:47", "2015-04-02 08:08:47", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"whitestroke\" padding_vertical=\"2\" padding_horizontal=\"2\" width=\"1/2\" el_position=\"first\"]\r\n<h3><img class=\"alignright size-full wp-image-264\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Concur.png\" alt=\"Concur\" width=\"100\" height=\"108\" />Concur – Expense management made easy</h3>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[/spb_boxed_content] [spb_boxed_content type=\"whitestroke\" padding_vertical=\"2\" padding_horizontal=\"2\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignright size-full wp-image-266\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/KDS.png\" alt=\"KDS\" width=\"100\" height=\"108\" />KDS is a European technology leader with 20 years’ Travel and Expense management experience.\r\n\r\nThe KDS award winning Software allows clients to gain complete visibility and control over their T&amp;E programs.\r\n\r\n<b>Control:</b><b> </b>KDS provides accurate, timely and powerful reporting, meaning clients can take the right decisions at the right time whilst ensuring financial compliance.\r\n\r\n<b>Functionality:</b> End users love using KDS. The ease of use and graphical “consumer friendly” interfaces, drive user adoption and ensure that processes are followed.\r\n\r\n<b>Speed:</b> KDS is fast, meaning that your staff spends less time on T&amp;E and more time focused on their objectives. KDS users can complete the entire T&amp;E cycle, from trip booking through to expense submission quickly and easily, wherever they are, whenever they want and on whichever device they wish.\r\n\r\nKDS solutions address the complete Travel and Expense (T&amp;E) lifecycle, from policy definition and enforcement to automated expense processing.\r\n\r\n<a href=\"http://localhost/unitedcash/www.kds.com\" target=\"_blank\">www.kds.com</a>\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:08:47", "2015-04-02 08:08:47", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("269", "1", "2015-04-02 10:11:18", "2015-04-02 08:11:18", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"Concur\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:11:18", "2015-04-02 08:11:18", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("270", "1", "2015-04-02 10:12:08", "2015-04-02 08:12:08", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"Concur\" box_type=\"boxed-four\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-four\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:12:08", "2015-04-02 08:12:08", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("271", "1", "2015-04-02 10:12:45", "2015-04-02 08:12:45", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:12:45", "2015-04-02 08:12:45", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("272", "1", "2015-04-02 10:13:36", "2015-04-02 08:13:36", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our worldwide partners</h1>\r\n[/spb_text_block] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"266\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n\r\nKDS is a European technology leader with 20 years’ Travel and Expense management experience.\r\n\r\nThe KDS award winning Software allows clients to gain complete visibility and control over their T&amp;E programs.\r\n\r\n<b>Control:</b><b> </b>KDS provides accurate, timely and powerful reporting, meaning clients can take the right decisions at the right time whilst ensuring financial compliance.\r\n\r\n<b>Functionality:</b> End users love using KDS. The ease of use and graphical “consumer friendly” interfaces, drive user adoption and ensure that processes are followed.\r\n\r\n<b>Speed:</b> KDS is fast, meaning that your staff spends less time on T&amp;E and more time focused on their objectives. KDS users can complete the entire T&amp;E cycle, from trip booking through to expense submission quickly and easily, wherever they are, whenever they want and on whichever device they wish.\r\n\r\nKDS solutions address the complete Travel and Expense (T&amp;E) lifecycle, from policy definition and enforcement to automated expense processing.\r\n\r\n<a href=\"http://localhost/unitedcash/www.kds.com\" target=\"_blank\">www.kds.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:13:36", "2015-04-02 08:13:36", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("273", "1", "2015-04-02 10:14:11", "2015-04-02 08:14:11", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our worldwide partners</h1>\r\n[/spb_text_block] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"266\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n\r\nKDS is a European technology leader with 20 years’ Travel and Expense management experience.\r\n\r\nThe KDS award winning Software allows clients to gain complete visibility and control over their T&amp;E programs.\r\n\r\n<b>Control:</b><b> </b>KDS provides accurate, timely and powerful reporting, meaning clients can take the right decisions at the right time whilst ensuring financial compliance.\r\n\r\n<b>Functionality:</b> End users love using KDS. The ease of use and graphical “consumer friendly” interfaces, drive user adoption and ensure that processes are followed.\r\n\r\n<b>Speed:</b> KDS is fast, meaning that your staff spends less time on T&amp;E and more time focused on their objectives. KDS users can complete the entire T&amp;E cycle, from trip booking through to expense submission quickly and easily, wherever they are, whenever they want and on whichever device they wish.\r\n\r\nKDS solutions address the complete Travel and Expense (T&amp;E) lifecycle, from policy definition and enforcement to automated expense processing.\r\n\r\n<a href=\"http://localhost/unitedcash/www.kds.com\" target=\"_blank\">www.kds.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:14:11", "2015-04-02 08:14:11", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("274", "1", "2015-04-02 10:14:41", "2015-04-02 08:14:41", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our worldwide partners</h1>\r\n[/spb_text_block] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"266\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n\r\nKDS is a European technology leader with 20 years’ Travel and Expense management experience.\r\n\r\nThe KDS award winning Software allows clients to gain complete visibility and control over their T&amp;E programs.\r\n\r\n<b>Control:</b><b> </b>KDS provides accurate, timely and powerful reporting, meaning clients can take the right decisions at the right time whilst ensuring financial compliance.\r\n\r\n<b>Functionality:</b> End users love using KDS. The ease of use and graphical “consumer friendly” interfaces, drive user adoption and ensure that processes are followed.\r\n\r\n<b>Speed:</b> KDS is fast, meaning that your staff spends less time on T&amp;E and more time focused on their objectives. KDS users can complete the entire T&amp;E cycle, from trip booking through to expense submission quickly and easily, wherever they are, whenever they want and on whichever device they wish.\r\n\r\nKDS solutions address the complete Travel and Expense (T&amp;E) lifecycle, from policy definition and enforcement to automated expense processing.\r\n\r\n<a href=\"http://localhost/unitedcash/www.kds.com\" target=\"_blank\">www.kds.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:14:41", "2015-04-02 08:14:41", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("275", "1", "2015-04-02 10:15:44", "2015-04-02 08:15:44", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-260\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/TE-VAT-Retrieval.jpg\" alt=\"TE-VAT-Retrieval\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3 class=\"tt-element-title\">T&amp;E Data plus Cashback VAT knowledge equals easy money</h3>\r\n<div class=\"tt-column\">\r\n\r\n<strong>Have you ever considered how much easier it could be to recover the VAT on your company expenses when using a  travel management system with a VAT reclaim option? We have!  That’s why we are able to offer you a revolutionary solution to easily get back your VAT.</strong>\r\n\r\nWhen using a Travel Management system your expense receipts and invoices are already scanned and stored in the system. By simply giving Cash Back access to your travel expenses we can transfer these documents into our systems enabling our tax experts to claim back your VAT from the different tax authorities.\r\n\r\nWe have developed the T&amp;E VAT Retriever to simplify the process of recovering VAT on all your electronically stored receipts and to minimise your work input.\r\n<h3>T&amp;E-VAT Retriever\r\n- technology and know-how</h3>\r\nWith the 2010 changes in EU VAT legislation Cash Back developed the Cash Back T&amp;E VAT Retriever to make it quick, simple and more efficient for you to recover your VAT. This tool integrated with your Travel Management system provides an automated solution to get back VAT on your expense receipts without any additional work for you or your staff.\r\n\r\nBy combining this advanced data technology with our VAT expertise we have modernised much of the work involved in retrieving documents stored in any system and recovering VAT.\r\n\r\nThe big advantage for your company is that you avoid all the time consuming, administrative work involved when finding and pulling out every receipt from your expense files or completing forms and or liaising with tax authorities.  All this is taken care of by Cash Back with the additional benefit of systematically receiving more VAT back quicker.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-262\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/T-e-system.png\" alt=\"T-e-system\" width=\"795\" height=\"1788\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our worldwide partners</h1>\r\n[/spb_text_block] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"264\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"first\"]\r\n<h4>Concur – Expense management made easy</h4>\r\nConcur is a leading provider of\r\nintegrated travel and expense\r\nmanagement solutions and their services are trusted by over 20,000 clients around the globe with over 25 million users.\r\n\r\nConcur’s easy-to-use Web based and mobile solutions help employees ensure that corporate travel is booked within policy and reconcile expenses after travel. By delivering electronic receipts – from airlines, hotels and car rental companies – directly into expense reports, Concur virtually eliminates the need to track and manage paper receipts helping companies control costs and save time. Concur and Cash Back make a perfect and logical partnership providing additional added value to your T&amp;E management processes.\r\n<h3>Available in App Center</h3>\r\nThe T&amp;E VAT Retriever is now available in the Concur App Center.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"https://www.concur.com/en-us/app-center/listing/nBxRYxx0pgZrtM$pGOiUpQS$soiZA/T&amp;E-VAT-RETRIEVER-by-Cash-Back\" target=\"_blank\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Visit Concur App Center[/sf_button]\r\n\r\n<a href=\"https://www.concur.com/\" target=\"_blank\">www.concur.com</a>\r\n\r\n[/spb_icon_box] [spb_icon_box title=\"Concur\" box_type=\"boxed-one\" icon=\"fa-rotate-right\" image=\"266\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/2\" el_position=\"last\"]\r\n\r\nKDS is a European technology leader with 20 years’ Travel and Expense management experience.\r\n\r\nThe KDS award winning Software allows clients to gain complete visibility and control over their T&amp;E programs.\r\n\r\n<b>Control:</b><b> </b>KDS provides accurate, timely and powerful reporting, meaning clients can take the right decisions at the right time whilst ensuring financial compliance.\r\n\r\n<b>Functionality:</b> End users love using KDS. The ease of use and graphical “consumer friendly” interfaces, drive user adoption and ensure that processes are followed.\r\n\r\n<b>Speed:</b> KDS is fast, meaning that your staff spends less time on T&amp;E and more time focused on their objectives. KDS users can complete the entire T&amp;E cycle, from trip booking through to expense submission quickly and easily, wherever they are, whenever they want and on whichever device they wish.\r\n\r\nKDS solutions address the complete Travel and Expense (T&amp;E) lifecycle, from policy definition and enforcement to automated expense processing.\r\n\r\n<a href=\"http://localhost/unitedcash/www.kds.com\" target=\"_blank\">www.kds.com</a>\r\n\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Reclaim on T&E expenses", "", "inherit", "open", "open", "", "28-revision-v1", "", "", "2015-04-02 10:15:44", "2015-04-02 08:15:44", "", "28", "http://www.united.sommar.se/uncategorized/28-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("276", "1", "2015-04-02 10:16:32", "2015-04-02 08:16:32", "", "Vat-recovery-aviation", "", "inherit", "open", "open", "", "vat-recovery-aviation", "", "", "2015-04-02 10:16:32", "2015-04-02 08:16:32", "", "26", "http://www.united.sommar.se/wp-content/uploads/2015/04/Vat-recovery-aviation.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("277", "1", "2015-04-02 10:17:20", "2015-04-02 08:17:20", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignright size-full wp-image-276\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vat-recovery-aviation.png\" alt=\"Vat-recovery-aviation\" width=\"770\" height=\"300\" />\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n<h3>8th and 13th VAT Directive Chart</h3>\nTo get a map of the type of services which are refundable, and the VAT rates which apply in the different countries, <a href=\"http://localhost/wp-content/uploads/2015/02/VAT-chart-2015-02_homepage_rev.pdf\" target=\"_blank\">click here for our VAT Chart</a>. The list of services on the chart is by no means finite there can be additional refundable VAT on other service expenses as well. Please contact your local Cash Back office to check re any other services where you have been charged with VAT.\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n<h3>Excise Tax VAT Chart</h3>\nTo get a guide regarding where, who, how much and when excise tax can be recovered please contact your local Cash Back office.\n<h3>VAT Chart Aviation</h3>\nTo get an overview of the type of services which are refundable, and the VAT rates which apply in the different countries for corporate and commercial aviation companies, click on our AviationVAT Chart.\n\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"1/1\" el_position=\"first last\"]\n\n[one_half]\n<h2>The RECOVAT Method</h2>\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\n\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\n\n[/one_half]\n[one_half_last]\n\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\n\n&nbsp;\n<h3></h3>\n<h3></h3>\n<h3>All you need to do is:</h3>\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\n\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\n\n[/one_half_last]\n\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>The RECOVAT Process in detail</h1>\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\n\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Secure payment\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back’s payment process is highly automated with a direct interface between Cash Back’s and the bank’s computer systems. Payment data passes electronically between the systems eliminating error and minimizing transfer times. Cash Back Payment Reports enable clients to match refund credits received with each claim made to meet client accounting practices. Cash Back’s payment track record is reflected in our long standing client relations and bank partnerships.\n\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\n\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\n\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\n\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>Our VAT services</h1>\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Recovery on aviation", "", "inherit", "open", "open", "", "26-autosave-v1", "", "", "2015-04-02 10:17:20", "2015-04-02 08:17:20", "", "26", "http://www.united.sommar.se/uncategorized/26-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("278", "1", "2015-04-02 10:18:13", "2015-04-02 08:18:13", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignright size-full wp-image-276\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vat-recovery-aviation.png\" alt=\"Vat-recovery-aviation\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThere are large sums of VAT charged between country boundaries – even in the air.  Cash Back, through her American partner, can offer extensive expertise to provide a professional and complete worldwide indirect tax aviation program to airlines and other general business aviation operators.\r\n\r\nRecovery of VAT and other significant indirect tax duties on, for example, jet fuel requires very specific tax knowledge and experience.  VATAmerica’s Aviation Program is the only comprehensive and specialised system which can simply and successfully get you through the different legislation and mechanisms for refund in the various countries on, amongst other things, ground handling charges, take-off and landing fees, repairs and fuel.\r\n\r\nThis is regardless of whether you are a corporate flight department, aviation management company, provider of fractional ownership, aircraft manufacturer, passenger or cargo charter carrier, military contractor, air ambulance provider or aerial mapping, ferry and delivery firm.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nSome of the <strong>many advantages</strong> of VATAmerica’s Aviation Tax Recovery Program:\r\n<ul>\r\n	<li>Recovery of fuel excise taxes called energy tax, MOT and Duties by refund and supplier credits according to local legislation</li>\r\n	<li>A close collaboration with the leading suppliers in the industry eases the process of recovering excise taxes, establishing tax exemptions and reducing the administration for all parties.</li>\r\n	<li>CB VAT Exemption Program.  We are well aware of the legislation within the EU which steers the services which should be exempt of VAT.  Our program enrolls you for VAT exemption where appropriate to ensure you are not being charged unnecessary VAT.</li>\r\n	<li>CB VATAmerica has combined their VAT expertise with the latest technology.  The result is a customised solution which makes our cooperation as simple and effective as possible. Some examples of this are our web based client portal and our own developed app which helps companies calculate their VAT and excise charges on European fuel charges.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\r\n\r\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Secure payment\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back’s payment process is highly automated with a direct interface between Cash Back’s and the bank’s computer systems. Payment data passes electronically between the systems eliminating error and minimizing transfer times. Cash Back Payment Reports enable clients to match refund credits received with each claim made to meet client accounting practices. Cash Back’s payment track record is reflected in our long standing client relations and bank partnerships.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Recovery on aviation", "", "inherit", "open", "open", "", "26-revision-v1", "", "", "2015-04-02 10:18:13", "2015-04-02 08:18:13", "", "26", "http://www.united.sommar.se/uncategorized/26-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("279", "1", "2015-04-02 10:24:04", "2015-04-02 08:24:04", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignright size-full wp-image-276\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vat-recovery-aviation.png\" alt=\"Vat-recovery-aviation\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThere are large sums of VAT charged between country boundaries – even in the air.  Cash Back, through her American partner, can offer extensive expertise to provide a professional and complete worldwide indirect tax aviation program to airlines and other general business aviation operators.\r\n\r\nRecovery of VAT and other significant indirect tax duties on, for example, jet fuel requires very specific tax knowledge and experience.  VATAmerica’s Aviation Program is the only comprehensive and specialised system which can simply and successfully get you through the different legislation and mechanisms for refund in the various countries on, amongst other things, ground handling charges, take-off and landing fees, repairs and fuel.\r\n\r\nThis is regardless of whether you are a corporate flight department, aviation management company, provider of fractional ownership, aircraft manufacturer, passenger or cargo charter carrier, military contractor, air ambulance provider or aerial mapping, ferry and delivery firm.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nSome of the <strong>many advantages</strong> of VATAmerica’s Aviation Tax Recovery Program:\r\n<ul>\r\n	<li>Recovery of fuel excise taxes called energy tax, MOT and Duties by refund and supplier credits according to local legislation</li>\r\n	<li>A close collaboration with the leading suppliers in the industry eases the process of recovering excise taxes, establishing tax exemptions and reducing the administration for all parties.</li>\r\n	<li>CB VAT Exemption Program.  We are well aware of the legislation within the EU which steers the services which should be exempt of VAT.  Our program enrolls you for VAT exemption where appropriate to ensure you are not being charged unnecessary VAT.</li>\r\n	<li>CB VATAmerica has combined their VAT expertise with the latest technology.  The result is a customised solution which makes our cooperation as simple and effective as possible. Some examples of this are our web based client portal and our own developed app which helps companies calculate their VAT and excise charges on European fuel charges.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Secure payment\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back’s payment process is highly automated with a direct interface between Cash Back’s and the bank’s computer systems. Payment data passes electronically between the systems eliminating error and minimizing transfer times. Cash Back Payment Reports enable clients to match refund credits received with each claim made to meet client accounting practices. Cash Back’s payment track record is reflected in our long standing client relations and bank partnerships.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "VAT Recovery on aviation", "", "inherit", "open", "open", "", "26-revision-v1", "", "", "2015-04-02 10:24:04", "2015-04-02 08:24:04", "", "26", "http://www.united.sommar.se/uncategorized/26-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("280", "1", "2015-04-02 10:28:14", "2015-04-02 08:28:14", "<p>[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]</p>\n<p><img class=\"alignnone size-full wp-image-284\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Local-VAT-Cashback.png\" alt=\"Local-VAT-Cashback\" width=\"770\" height=\"300\" /></p>\n<p>[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]</p>\n<p>Have you ever considered how easily errors creep into your tax calculations, declarations and deductions when managing large amounts of supplier invoices? We regularly experience this when helping companies with their local and foreign declarations.</p>\n<p>Welcome to VATALYTICS; an IT based solution which is revolutionising the work required to control and analyse your suppliers’ invoices. Through combining a sophisticated computer technique with our extensive knowledge in the field of VAT we have automated the time consuming job of reviewing the supplier records and the VAT implications of any incorrect accounting practices.</p>\n<p>[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]</p>\n<h3>The VATALYTICS Method</h3>\n<div class=\"tt-columns-one-half\">\n<p>VATALYTICS is an automated system that greatly simplifies and streamlines the control of supplier invoices, even if it involves hundreds of thousands a month.  It focuses on finding recoverable VAT, reverse charge VAT and double invoicing.</p>\n<p>The advantage of this system is that it has a high capacity and detects all the most common types of discrepancies in the invoices, including errors which can lead to reoccurring structural defects.  The VATALYTIC findings are evaluated by local tax specialists – and a full report of the irregularities in the accounting records is presented.</p>\n</div>\n<p>[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]</p>\n<h3><strong><img class=\"alignnone  wp-image-281\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vatalytics.png\" alt=\"Vatalytics\" width=\"185\" height=\"74\" /></strong></h3>\n<h3><strong>The VATALYTIC benefits:</strong></h3>\n<ul>\n<li>It ensures correct VAT accounting and improved control</li>\n<li>Reduces risk of audit controls and penalties</li>\n<li>It identifies the source of the problem to remove repeat errors</li>\n<li>It is a cost effective service using its high tech search with local VAT expertise.</li>\n</ul>\n<p>[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]</p>\n<h1>The VATALYTICS Process in detail</h1>\n<p>[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]</p>\n<p><img class=\"alignnone size-full wp-image-282\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/vatalytics_engine.png\" alt=\"vatalytics_engine\" width=\"721\" height=\"163\" /></p>\n<p>[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction\" open=\"true\" width=\"1/1\" el_position=\"first last\"]</p>\n<p>• 87% of our clients have been with Cash Back for 2 or more years<br />\n• 40% of our clients have been with Cash Back for 5 or more years</p>\n<p>[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]</p>\n<h1>Our VAT services</h1>\n<p>[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]</p>\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n<p>[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]</p>\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n<p>[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]</p>\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n<p>[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]</p>\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n<p>[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]</p>\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n<p>[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]</p>\n", "Local VAT recovery", "", "inherit", "open", "open", "", "24-autosave-v1", "", "", "2015-04-02 10:28:14", "2015-04-02 08:28:14", "", "24", "http://www.united.sommar.se/uncategorized/24-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("281", "1", "2015-04-02 10:25:58", "2015-04-02 08:25:58", "", "Vatalytics", "", "inherit", "open", "open", "", "vatalytics", "", "", "2015-04-02 10:25:58", "2015-04-02 08:25:58", "", "24", "http://www.united.sommar.se/wp-content/uploads/2015/04/Vatalytics.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("282", "1", "2015-04-02 10:26:41", "2015-04-02 08:26:41", "", "vatalytics_engine", "", "inherit", "open", "open", "", "vatalytics_engine", "", "", "2015-04-02 10:26:41", "2015-04-02 08:26:41", "", "24", "http://www.united.sommar.se/wp-content/uploads/2015/04/vatalytics_engine.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("283", "1", "2015-04-02 10:26:48", "2015-04-02 08:26:48", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-253\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Reclaim-VAT-Cashback.png\" alt=\"Reclaim-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nHave you ever considered how easily errors creep into your tax calculations, declarations and deductions when managing large amounts of supplier invoices? We regularly experience this when helping companies with their local and foreign declarations.\r\n\r\nWelcome to VATALYTICS; an IT based solution which is revolutionising the work required to control and analyse your suppliers’ invoices. Through combining a sophisticated computer technique with our extensive knowledge in the field of VAT we have automated the time consuming job of reviewing the supplier records and the VAT implications of any incorrect accounting practices.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>The VATALYTICS Method</h3>\r\n<div class=\"tt-columns-one-half\">\r\n\r\nVATALYTICS is an automated system that greatly simplifies and streamlines the control of supplier invoices, even if it involves hundreds of thousands a month.  It focuses on finding recoverable VAT, reverse charge VAT and double invoicing.\r\n\r\nThe advantage of this system is that it has a high capacity and detects all the most common types of discrepancies in the invoices, including errors which can lead to reoccurring structural defects.  The VATALYTIC findings are evaluated by local tax specialists – and a full report of the irregularities in the accounting records is presented.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3><strong><img class=\"alignnone size-full wp-image-281\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vatalytics.png\" alt=\"Vatalytics\" width=\"300\" height=\"120\" /></strong></h3>\r\n<h3><strong>The VATALYTIC benefits:</strong></h3>\r\n<ul>\r\n	<li>It ensures correct VAT accounting and improved control</li>\r\n	<li>Reduces risk of audit controls and penalties</li>\r\n	<li>It identifies the source of the problem to remove repeat errors</li>\r\n	<li>It is a cost effective service using its high tech search with local VAT expertise.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The VATALYTICS Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-282\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/vatalytics_engine.png\" alt=\"vatalytics_engine\" width=\"721\" height=\"163\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Local VAT recovery", "", "inherit", "open", "open", "", "24-revision-v1", "", "", "2015-04-02 10:26:48", "2015-04-02 08:26:48", "", "24", "http://www.united.sommar.se/uncategorized/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("284", "1", "2015-04-02 10:27:06", "2015-04-02 08:27:06", "", "Local-VAT-Cashback", "", "inherit", "open", "open", "", "local-vat-cashback", "", "", "2015-04-02 10:27:06", "2015-04-02 08:27:06", "", "24", "http://www.united.sommar.se/wp-content/uploads/2015/04/Local-VAT-Cashback.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("285", "1", "2015-04-02 10:27:14", "2015-04-02 08:27:14", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-284\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Local-VAT-Cashback.png\" alt=\"Local-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nHave you ever considered how easily errors creep into your tax calculations, declarations and deductions when managing large amounts of supplier invoices? We regularly experience this when helping companies with their local and foreign declarations.\r\n\r\nWelcome to VATALYTICS; an IT based solution which is revolutionising the work required to control and analyse your suppliers’ invoices. Through combining a sophisticated computer technique with our extensive knowledge in the field of VAT we have automated the time consuming job of reviewing the supplier records and the VAT implications of any incorrect accounting practices.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>The VATALYTICS Method</h3>\r\n<div class=\"tt-columns-one-half\">\r\n\r\nVATALYTICS is an automated system that greatly simplifies and streamlines the control of supplier invoices, even if it involves hundreds of thousands a month.  It focuses on finding recoverable VAT, reverse charge VAT and double invoicing.\r\n\r\nThe advantage of this system is that it has a high capacity and detects all the most common types of discrepancies in the invoices, including errors which can lead to reoccurring structural defects.  The VATALYTIC findings are evaluated by local tax specialists – and a full report of the irregularities in the accounting records is presented.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3><strong><img class=\"alignnone size-full wp-image-281\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vatalytics.png\" alt=\"Vatalytics\" width=\"300\" height=\"120\" /></strong></h3>\r\n<h3><strong>The VATALYTIC benefits:</strong></h3>\r\n<ul>\r\n	<li>It ensures correct VAT accounting and improved control</li>\r\n	<li>Reduces risk of audit controls and penalties</li>\r\n	<li>It identifies the source of the problem to remove repeat errors</li>\r\n	<li>It is a cost effective service using its high tech search with local VAT expertise.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The VATALYTICS Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-282\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/vatalytics_engine.png\" alt=\"vatalytics_engine\" width=\"721\" height=\"163\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Local VAT recovery", "", "inherit", "open", "open", "", "24-revision-v1", "", "", "2015-04-02 10:27:14", "2015-04-02 08:27:14", "", "24", "http://www.united.sommar.se/uncategorized/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("286", "1", "2015-04-02 10:27:37", "2015-04-02 08:27:37", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-284\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Local-VAT-Cashback.png\" alt=\"Local-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nHave you ever considered how easily errors creep into your tax calculations, declarations and deductions when managing large amounts of supplier invoices? We regularly experience this when helping companies with their local and foreign declarations.\r\n\r\nWelcome to VATALYTICS; an IT based solution which is revolutionising the work required to control and analyse your suppliers’ invoices. Through combining a sophisticated computer technique with our extensive knowledge in the field of VAT we have automated the time consuming job of reviewing the supplier records and the VAT implications of any incorrect accounting practices.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>The VATALYTICS Method</h3>\r\n<div class=\"tt-columns-one-half\">\r\n\r\nVATALYTICS is an automated system that greatly simplifies and streamlines the control of supplier invoices, even if it involves hundreds of thousands a month.  It focuses on finding recoverable VAT, reverse charge VAT and double invoicing.\r\n\r\nThe advantage of this system is that it has a high capacity and detects all the most common types of discrepancies in the invoices, including errors which can lead to reoccurring structural defects.  The VATALYTIC findings are evaluated by local tax specialists – and a full report of the irregularities in the accounting records is presented.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3><strong><img class=\"alignnone  wp-image-281\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vatalytics.png\" alt=\"Vatalytics\" width=\"185\" height=\"74\" /></strong></h3>\r\n<h3><strong>The VATALYTIC benefits:</strong></h3>\r\n<ul>\r\n	<li>It ensures correct VAT accounting and improved control</li>\r\n	<li>Reduces risk of audit controls and penalties</li>\r\n	<li>It identifies the source of the problem to remove repeat errors</li>\r\n	<li>It is a cost effective service using its high tech search with local VAT expertise.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The VATALYTICS Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-282\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/vatalytics_engine.png\" alt=\"vatalytics_engine\" width=\"721\" height=\"163\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Local VAT recovery", "", "inherit", "open", "open", "", "24-revision-v1", "", "", "2015-04-02 10:27:37", "2015-04-02 08:27:37", "", "24", "http://www.united.sommar.se/uncategorized/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("287", "1", "2015-04-02 10:28:55", "2015-04-02 08:28:55", "", "VAT-Consulting-Cashback", "", "inherit", "open", "open", "", "vat-consulting-cashback", "", "", "2015-04-02 10:28:55", "2015-04-02 08:28:55", "", "22", "http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Consulting-Cashback.png", "0", "attachment", "image/png", "0");
INSERT INTO `k2zp_posts` VALUES("288", "1", "2015-04-02 10:33:44", "2015-04-02 08:33:44", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n\n<img class=\"alignnone size-full wp-image-287\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Consulting-Cashback.png\" alt=\"VAT-Consulting-Cashback\" width=\"770\" height=\"300\" />\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1 class=\"tt-element-title\">Manage your VAT the easy way: VAT Consulting</h1>\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\n\nThere are a variety of issues relating to VAT where access to specialist knowledge is advantageous. Everything from how to register for VAT in another country, finding your way through local compliance legislation, managing logistics issues in the different European countries or any other VAT issues. Cash Back can help you; we have more than 25 years of experience working with international tax and this vast knowledge bank is the foundation for the services we provide.\n\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"/contact-us\" target=\"_self\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Contact us now[/sf_button]\n\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\n\nThanks to our extensive network of local tax experts we are constantly up to date with local and foreign VAT legislation and benefit from having close relations and regular contacts with local authorities and experts. As a client, you benefit from having a single contact point with ready access to our experts and their knowledge. Cash Back provide you with simple, cost effective solutions to your VAT enquiries.\n\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"Client satisfaction rate\" box_type=\"boxed-four\" icon=\"fa-info-circle\" target=\"_self\" animation=\"none\" animation_delay=\"0\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\n\n• 87% of our clients have been with Cash Back for 2 or more years\n• 40% of our clients have been with Cash Back for 5 or more years\n\n[/spb_icon_box] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\n<h1>Our VAT services</h1>\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat consulting", "", "inherit", "open", "open", "", "22-autosave-v1", "", "", "2015-04-02 10:33:44", "2015-04-02 08:33:44", "", "22", "http://www.united.sommar.se/uncategorized/22-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("289", "1", "2015-04-02 10:30:14", "2015-04-02 08:30:14", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-287\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Consulting-Cashback.png\" alt=\"VAT-Consulting-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Manage your VAT the easy way: VAT Consulting</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThere are a variety of issues relating to VAT where access to specialist knowledge is advantageous. Everything from how to register for VAT in another country, finding your way through local compliance legislation, managing logistics issues in the different European countries or any other VAT issues. Cash Back can help you; we have more than 25 years of experience working with international tax and this vast knowledge bank is the foundation for the services we provide.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"/contact-us\" target=\"_self\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Contact us now[/sf_button]\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThanks to our extensive network of local tax experts we are constantly up to date with local and foreign VAT legislation and benefit from having close relations and regular contacts with local authorities and experts. As a client, you benefit from having a single contact point with ready access to our experts and their knowledge. Cash Back provide you with simple, cost effective solutions to your VAT enquiries.\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_boxed_content type=\"coloured\" custom_bg_colour=\"#f7f7f7\" custom_text_colour=\"#222222\" padding_vertical=\"4\" padding_horizontal=\"4\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n[one_half]\r\n<h2>The RECOVAT Method</h2>\r\nWe upload your scanned images or scan en site at the RECOVAT centre and optically read all relevant information on the invoices/travel receipts using the latest OCR technology. Thereafter Cash Back specialists correct and quality control the information and file content against the legislation of the country tax administrations. Finally the applications are exported into the required electronic format and uploaded to the tax authorities’ portals. Alternatively paper application forms for non EU companies are auto filled and sent by courier to the relevant authorities.\r\n\r\nWe respect client confidentiality throughout the process and all files, originals and other documentation are stored, returned or destroyed according to your wishes.\r\n\r\n[/one_half]\r\n[one_half_last]\r\n\r\n<img class=\"  wp-image-157 alignright\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Recovat-logo.png\" alt=\"Recovat-logo\" width=\"190\" height=\"76\" />\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>All you need to do is:</h3>\r\n<img class=\"alignnone size-full wp-image-158\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/engine.png\" alt=\"engine\" width=\"335\" height=\"143\" />\r\n\r\nThe RECOVAT engine has been designed to efficiently manage any volume of travel expenses.\r\n\r\n[/one_half_last]\r\n\r\n[/spb_boxed_content] [spb_blank_spacer height=\"50px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The RECOVAT Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-163\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/process-cashback.png\" alt=\"process-cashback\" width=\"729\" height=\"149\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat consulting", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-04-02 10:30:14", "2015-04-02 08:30:14", "", "22", "http://www.united.sommar.se/uncategorized/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("290", "1", "2015-04-02 10:30:41", "2015-04-02 08:30:41", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-287\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Consulting-Cashback.png\" alt=\"VAT-Consulting-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Manage your VAT the easy way: VAT Consulting</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThere are a variety of issues relating to VAT where access to specialist knowledge is advantageous. Everything from how to register for VAT in another country, finding your way through local compliance legislation, managing logistics issues in the different European countries or any other VAT issues. Cash Back can help you; we have more than 25 years of experience working with international tax and this vast knowledge bank is the foundation for the services we provide.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"/contact-us\" target=\"_self\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Contact us now[/sf_button]\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThanks to our extensive network of local tax experts we are constantly up to date with local and foreign VAT legislation and benefit from having close relations and regular contacts with local authorities and experts. As a client, you benefit from having a single contact point with ready access to our experts and their knowledge. Cash Back provide you with simple, cost effective solutions to your VAT enquiries.\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_toggle title=\"Client Satisfaction Rating\" open=\"true\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_toggle] [spb_toggle title=\"Good Working Practices\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back have clearly defined and measurable performance standards which are specified in their contractually binding, internal Good Working Practices.\r\n\r\n[/spb_toggle] [spb_toggle title=\"Transparency\" open=\"false\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nCash Back Online is our in-house computer program which tracks, monitors and controls all claims in the Cash Back process. It is a sophisticated system with a direct interface to the bank and client login facility. To get through the maze of countries, the services and the rates where VAT or other taxes can be recovered we have provided various summarised VAT charts.\r\n\r\n[/spb_toggle] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat consulting", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-04-02 10:30:41", "2015-04-02 08:30:41", "", "22", "http://www.united.sommar.se/uncategorized/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("291", "1", "2015-04-02 10:33:47", "2015-04-02 08:33:47", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-287\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/VAT-Consulting-Cashback.png\" alt=\"VAT-Consulting-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1 class=\"tt-element-title\">Manage your VAT the easy way: VAT Consulting</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n\r\nThere are a variety of issues relating to VAT where access to specialist knowledge is advantageous. Everything from how to register for VAT in another country, finding your way through local compliance legislation, managing logistics issues in the different European countries or any other VAT issues. Cash Back can help you; we have more than 25 years of experience working with international tax and this vast knowledge bank is the foundation for the services we provide.\r\n\r\n[sf_button colour=\"accent\" type=\"standard\" size=\"standard\" link=\"/contact-us\" target=\"_self\" icon=\"\" dropshadow=\"no\" extraclass=\"\"]Contact us now[/sf_button]\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n\r\nThanks to our extensive network of local tax experts we are constantly up to date with local and foreign VAT legislation and benefit from having close relations and regular contacts with local authorities and experts. As a client, you benefit from having a single contact point with ready access to our experts and their knowledge. Cash Back provide you with simple, cost effective solutions to your VAT enquiries.\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"Client satisfaction rate\" box_type=\"boxed-four\" icon=\"fa-info-circle\" target=\"_self\" animation=\"none\" animation_delay=\"0\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_icon_box] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Vat consulting", "", "inherit", "open", "open", "", "22-revision-v1", "", "", "2015-04-02 10:33:47", "2015-04-02 08:33:47", "", "22", "http://www.united.sommar.se/uncategorized/22-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("292", "1", "2015-04-02 10:34:34", "2015-04-02 08:34:34", "[spb_row wrap_type=\"content-width\" row_bg_type=\"color\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"2/3\" el_position=\"first\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-284\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Local-VAT-Cashback.png\" alt=\"Local-VAT-Cashback\" width=\"770\" height=\"300\" />\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\nHave you ever considered how easily errors creep into your tax calculations, declarations and deductions when managing large amounts of supplier invoices? We regularly experience this when helping companies with their local and foreign declarations.\r\n\r\nWelcome to VATALYTICS; an IT based solution which is revolutionising the work required to control and analyse your suppliers’ invoices. Through combining a sophisticated computer technique with our extensive knowledge in the field of VAT we have automated the time consuming job of reviewing the supplier records and the VAT implications of any incorrect accounting practices.\r\n\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"first\"]\r\n<h3>The VATALYTICS Method</h3>\r\n<div class=\"tt-columns-one-half\">\r\n\r\nVATALYTICS is an automated system that greatly simplifies and streamlines the control of supplier invoices, even if it involves hundreds of thousands a month.  It focuses on finding recoverable VAT, reverse charge VAT and double invoicing.\r\n\r\nThe advantage of this system is that it has a high capacity and detects all the most common types of discrepancies in the invoices, including errors which can lead to reoccurring structural defects.  The VATALYTIC findings are evaluated by local tax specialists – and a full report of the irregularities in the accounting records is presented.\r\n\r\n</div>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/2\" el_position=\"last\"]\r\n<h3><strong><img class=\"alignnone  wp-image-281\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/Vatalytics.png\" alt=\"Vatalytics\" width=\"185\" height=\"74\" /></strong></h3>\r\n<h3><strong>The VATALYTIC benefits:</strong></h3>\r\n<ul>\r\n	<li>It ensures correct VAT accounting and improved control</li>\r\n	<li>Reduces risk of audit controls and penalties</li>\r\n	<li>It identifies the source of the problem to remove repeat errors</li>\r\n	<li>It is a cost effective service using its high tech search with local VAT expertise.</li>\r\n</ul>\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>The VATALYTICS Process in detail</h1>\r\n[/spb_text_block] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n<img class=\"alignnone size-full wp-image-282\" src=\"http://www.united.sommar.se/wp-content/uploads/2015/04/vatalytics_engine.png\" alt=\"vatalytics_engine\" width=\"721\" height=\"163\" />\r\n\r\n[/spb_text_block] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"Client satisfaction rate\" box_type=\"boxed-four\" icon=\"fa-info-circle\" target=\"_self\" animation=\"none\" animation_delay=\"0\" text_color=\"#222222\" bg_color=\"#f7f7f7\" width=\"1/1\" el_position=\"first last\"]\r\n\r\n• 87% of our clients have been with Cash Back for 2 or more years\r\n• 40% of our clients have been with Cash Back for 5 or more years\r\n\r\n[/spb_icon_box] [spb_testimonial_carousel title=\"Testimonials\" item_count=\"6\" order=\"rand\" category=\"All\" page_link=\"no\" width=\"1/1\" el_position=\"first last\"] [/spb_column] [/spb_row] [spb_row wrap_type=\"content-width\" row_bg_type=\"color\" row_bg_color=\"#f7f7f7\" color_row_height=\"content-height\" bg_type=\"cover\" parallax_image_height=\"content-height\" parallax_image_movement=\"fixed\" parallax_image_speed=\"0.5\" parallax_video_height=\"window-height\" parallax_video_overlay=\"none\" row_overlay_opacity=\"0\" row_padding_vertical=\"0\" row_margin_vertical=\"0\" remove_element_spacing=\"no\" vertical_center=\"false\" inner_column_height=\"col-natural\" row_expanding=\"no\" row_animation=\"none\" row_animation_delay=\"0\" width=\"1/1\" el_position=\"first last\"] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [spb_text_block animation=\"none\" animation_delay=\"0\" padding_vertical=\"0\" padding_horizontal=\"0\" width=\"1/1\" el_position=\"first last\"]\r\n<h1>Our VAT services</h1>\r\n[/spb_text_block] [spb_blank_spacer height=\"30px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"VAT RECLAIM\" box_type=\"boxed-two\" icon=\"fa-rotate-right\" link=\"/our-services/vat-reclaim\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#35b0d2\" icon_bg_color=\"#222222\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Simplify and maximise VAT recovery! A process which is otherwise complex and unpredictable.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT RECLAIM ON T&amp;E EXPENSES\" box_type=\"boxed-two\" icon=\"fa-suitcase\" link=\"/our-services/vat-reclaim-on-te-expenses\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#805494\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We can offer you a revolutionary solution to more easily recover your VAT on T&amp;E expenses.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\" el_position=\"last\"] [spb_icon_box title=\"VAT RECOVERY ON AVIATION\" box_type=\"boxed-two\" icon=\"fa-plane\" link=\"/our-services/vat-recovery-on-aviation\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#fdc131\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">We provide expertise to minimise indirect tax costs for aircraft, operators and the aviation business.</p>\r\n[/spb_icon_box] [/spb_column] [spb_blank_spacer height=\"10px\" width=\"1/1\" el_position=\"first last\"] [spb_column width=\"1/3\" el_position=\"first\"] [spb_icon_box title=\"LOCAL VAT RECOVERY\" box_type=\"boxed-two\" icon=\"fa-home\" link=\"/our-services/local-vat-recovery\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Our services for ensuring the proper treatment, declaration and return of local VAT.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column width=\"1/3\"] [spb_icon_box title=\"VAT CONSULTING\" box_type=\"boxed-two\" icon=\"fa-briefcase\" link=\"/our-services/vat-consulting\" target=\"_self\" animation=\"none\" animation_delay=\"0\" icon_color=\"#e24f57\" text_color=\"#222222\" bg_color=\"#ffffff\" width=\"1/1\" el_position=\"first last\"]\r\n<p style=\"text-align: center;\">Answers your VAT questions through one local contact person. Simple and cost efficient.</p>\r\n[/spb_icon_box] [/spb_column] [spb_column col_bg_type=\"cover\" col_parallax_image_movement=\"fixed\" col_parallax_image_speed=\"0.5\" col_padding=\"0\" col_animation=\"none\" col_animation_delay=\"0\" width=\"1/3\" el_position=\"last\"] [/spb_column] [spb_blank_spacer height=\"70px\" width=\"1/1\" el_position=\"first last\"] [/spb_row]", "Local VAT recovery", "", "inherit", "open", "open", "", "24-revision-v1", "", "", "2015-04-02 10:34:34", "2015-04-02 08:34:34", "", "24", "http://www.united.sommar.se/uncategorized/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("293", "1", "2015-04-02 11:01:22", "2015-04-02 09:01:22", "<h4><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://login.cashbackvatreclaim.com/myportal/login.phtml\" target=\"_blank\">LOGIN</a></span></h4>", "", "", "inherit", "open", "open", "", "240-revision-v1", "", "", "2015-04-02 11:01:22", "2015-04-02 09:01:22", "", "240", "http://www.united.sommar.se/uncategorized/240-revision-v1/", "0", "revision", "", "0");
INSERT INTO `k2zp_posts` VALUES("294", "1", "2015-04-07 15:59:51", "0000-00-00 00:00:00", "", "Automatiskt utkast", "", "auto-draft", "open", "open", "", "", "", "", "2015-04-07 15:59:51", "0000-00-00 00:00:00", "", "0", "http://www.united.sommar.se/?p=294", "0", "post", "", "0");

/* INSERT TABLE DATA: k2zp_revslider_css */
INSERT INTO `k2zp_revslider_css` VALUES("1", ".tp-caption.medium_grey", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("2", ".tp-caption.small_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("3", ".tp-caption.medium_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("4", ".tp-caption.large_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("5", ".tp-caption.very_large_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}");
INSERT INTO `k2zp_revslider_css` VALUES("6", ".tp-caption.very_big_white", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}");
INSERT INTO `k2zp_revslider_css` VALUES("7", ".tp-caption.very_big_black", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}");
INSERT INTO `k2zp_revslider_css` VALUES("8", ".tp-caption.modern_medium_fat", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("9", ".tp-caption.modern_medium_fat_white", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("10", ".tp-caption.modern_medium_light", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("11", ".tp-caption.modern_big_bluebg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}");
INSERT INTO `k2zp_revslider_css` VALUES("12", ".tp-caption.modern_big_redbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}");
INSERT INTO `k2zp_revslider_css` VALUES("13", ".tp-caption.modern_small_text_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `k2zp_revslider_css` VALUES("14", ".tp-caption.boxshadow", NULL, NULL, "{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}");
INSERT INTO `k2zp_revslider_css` VALUES("15", ".tp-caption.black", NULL, NULL, "{\"color\":\"#000\",\"text-shadow\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("16", ".tp-caption.noshadow", NULL, NULL, "{\"text-shadow\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("17", ".tp-caption.thinheadline_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `k2zp_revslider_css` VALUES("18", ".tp-caption.thintext_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `k2zp_revslider_css` VALUES("19", ".tp-caption.largeblackbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `k2zp_revslider_css` VALUES("20", ".tp-caption.largepinkbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `k2zp_revslider_css` VALUES("21", ".tp-caption.largewhitebg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `k2zp_revslider_css` VALUES("22", ".tp-caption.largegreenbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `k2zp_revslider_css` VALUES("23", ".tp-caption.excerpt", NULL, NULL, "{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("24", ".tp-caption.large_bold_grey", NULL, NULL, "{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("25", ".tp-caption.medium_thin_grey", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("26", ".tp-caption.small_thin_grey", NULL, NULL, "{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("27", ".tp-caption.lightgrey_divider", NULL, NULL, "{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("28", ".tp-caption.large_bold_darkblue", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("29", ".tp-caption.medium_bg_darkblue", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("30", ".tp-caption.medium_bold_red", NULL, NULL, "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("31", ".tp-caption.medium_light_red", NULL, NULL, "{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("32", ".tp-caption.medium_bg_red", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("33", ".tp-caption.medium_bold_orange", NULL, NULL, "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("34", ".tp-caption.medium_bg_orange", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("35", ".tp-caption.grassfloor", NULL, NULL, "{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("36", ".tp-caption.large_bold_white", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("37", ".tp-caption.medium_light_white", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("38", ".tp-caption.mediumlarge_light_white", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("39", ".tp-caption.mediumlarge_light_white_center", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("40", ".tp-caption.medium_bg_asbestos", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("41", ".tp-caption.medium_light_black", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("42", ".tp-caption.large_bold_black", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("43", ".tp-caption.mediumlarge_light_darkblue", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("44", ".tp-caption.small_light_white", NULL, NULL, "{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("45", ".tp-caption.roundedimage", NULL, NULL, "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("46", ".tp-caption.large_bg_black", NULL, NULL, "{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `k2zp_revslider_css` VALUES("47", ".tp-caption.mediumwhitebg", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");

/* INSERT TABLE DATA: k2zp_revslider_settings */
INSERT INTO `k2zp_revslider_settings` VALUES("1", "a:0:{}", "");

/* INSERT TABLE DATA: k2zp_revslider_sliders */
INSERT INTO `k2zp_revslider_sliders` VALUES("1", "start", "start", "{\"title\":\"start\",\"alias\":\"start\",\"shortcode\":\"[rev_slider start]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"category_1\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"off\",\"min_height\":\"0\",\"width\":\"1100\",\"height\":\"450\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"9000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"enable_static_layers\":\"off\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"hide\",\"loop_slide\":\"loop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"0\",\"padding\":0,\"background_color\":\"\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"navigation_style\":\"square-old\",\"navigaion_type\":\"none\",\"navigation_arrows\":\"solo\",\"navigaion_always_on\":\"false\",\"hide_thumbs\":200,\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_thumbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\"}");

/* INSERT TABLE DATA: k2zp_revslider_slides */
INSERT INTO `k2zp_revslider_slides` VALUES("1", "1", "1", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.united.sommar.se\\/wp-content\\/uploads\\/2015\\/04\\/bg.jpg\",\"image_id\":\"71\",\"title\":\"Concur app\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"slideleft\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\"}", "[{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http:\\/\\/www.united.sommar.se\\/wp-content\\/uploads\\/2015\\/04\\/Concur-app-center.png\",\"left\":0,\"top\":0,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":1124,\"height\":449,\"serial\":0,\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"\",\"max_width\":\"\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"style\":\"\",\"text\":\"Image 2\",\"type\":\"image\",\"image_url\":\"http:\\/\\/www.united.sommar.se\\/wp-content\\/uploads\\/2015\\/04\\/Now-available-in-the-concur-app-center.png\",\"left\":0,\"top\":40,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":1052,\"height\":93,\"serial\":1,\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"\",\"max_width\":\"\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"style\":\"\",\"text\":\"Image 3\",\"type\":\"image\",\"image_url\":\"http:\\/\\/www.united.sommar.se\\/wp-content\\/uploads\\/2015\\/04\\/T-and-E-Cashback.png\",\"left\":0,\"top\":-100,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1000,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":87,\"height\":87,\"serial\":2,\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"endWithSlide\":true,\"max_height\":\"\",\"max_width\":\"\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"style\":\"\",\"text\":\"Image 4\",\"type\":\"image\",\"image_url\":\"http:\\/\\/www.united.sommar.se\\/wp-content\\/uploads\\/2015\\/04\\/Concur-app.png\",\"left\":41,\"top\":-135,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1500,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":39,\"height\":36,\"serial\":3,\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8000,\"endWithSlide\":true,\"max_height\":\"\",\"max_width\":\"\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"}]");
INSERT INTO `k2zp_revslider_slides` VALUES("2", "1", "2", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.united.sommar.se\\/wp-content\\/uploads\\/2015\\/04\\/United-cashback.png\",\"image_id\":\"77\",\"title\":\"Concur app\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"slideleft\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");
INSERT INTO `k2zp_revslider_slides` VALUES("3", "1", "3", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"slideleft\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"78\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/www.united.sommar.se\\/wp-content\\/uploads\\/2015\\/04\\/T-E-Vat-reclaim-cashback-new.jpg\"}", "[]");

/* INSERT TABLE DATA: k2zp_term_relationships */
INSERT INTO `k2zp_term_relationships` VALUES("1", "1", "0");
INSERT INTO `k2zp_term_relationships` VALUES("1", "2", "0");
INSERT INTO `k2zp_term_relationships` VALUES("2", "2", "0");
INSERT INTO `k2zp_term_relationships` VALUES("3", "2", "0");
INSERT INTO `k2zp_term_relationships` VALUES("4", "2", "0");
INSERT INTO `k2zp_term_relationships` VALUES("5", "2", "0");
INSERT INTO `k2zp_term_relationships` VALUES("6", "2", "0");
INSERT INTO `k2zp_term_relationships` VALUES("7", "2", "0");
INSERT INTO `k2zp_term_relationships` VALUES("32", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("33", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("39", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("40", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("41", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("42", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("43", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("44", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("45", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("46", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("47", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("48", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("49", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("50", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("51", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("52", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("53", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("54", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("55", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("56", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("57", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("58", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("59", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("60", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("61", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("62", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("63", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("64", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("65", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("66", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("67", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("68", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("69", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("91", "4", "0");
INSERT INTO `k2zp_term_relationships` VALUES("92", "4", "0");
INSERT INTO `k2zp_term_relationships` VALUES("93", "4", "0");
INSERT INTO `k2zp_term_relationships` VALUES("180", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("180", "6", "0");
INSERT INTO `k2zp_term_relationships` VALUES("182", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("182", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("185", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("185", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("188", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("188", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("190", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("190", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("192", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("192", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("194", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("194", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("196", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("196", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("198", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("198", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("200", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("200", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("202", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("202", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("204", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("204", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("206", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("206", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("208", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("208", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("212", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("212", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("214", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("214", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("216", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("216", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("218", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("218", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("220", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("220", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("222", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("222", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("224", "5", "0");
INSERT INTO `k2zp_term_relationships` VALUES("224", "7", "0");
INSERT INTO `k2zp_term_relationships` VALUES("236", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("237", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("238", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("239", "3", "0");
INSERT INTO `k2zp_term_relationships` VALUES("240", "1", "0");
INSERT INTO `k2zp_term_relationships` VALUES("241", "8", "0");
INSERT INTO `k2zp_term_relationships` VALUES("242", "8", "0");
INSERT INTO `k2zp_term_relationships` VALUES("243", "8", "0");

/* INSERT TABLE DATA: k2zp_term_taxonomy */
INSERT INTO `k2zp_term_taxonomy` VALUES("1", "1", "category", "", "0", "0");
INSERT INTO `k2zp_term_taxonomy` VALUES("2", "2", "link_category", "", "0", "7");
INSERT INTO `k2zp_term_taxonomy` VALUES("3", "3", "nav_menu", "", "0", "37");
INSERT INTO `k2zp_term_taxonomy` VALUES("4", "4", "testimonials-category", "", "0", "3");
INSERT INTO `k2zp_term_taxonomy` VALUES("5", "5", "category", "", "0", "21");
INSERT INTO `k2zp_term_taxonomy` VALUES("6", "6", "post_format", "", "0", "1");
INSERT INTO `k2zp_term_taxonomy` VALUES("7", "7", "post_format", "", "0", "20");
INSERT INTO `k2zp_term_taxonomy` VALUES("8", "8", "nav_menu", "", "0", "3");

/* INSERT TABLE DATA: k2zp_terms */
INSERT INTO `k2zp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `k2zp_terms` VALUES("2", "Blogroll", "blogroll", "0");
INSERT INTO `k2zp_terms` VALUES("3", "Main menu", "main-menu", "0");
INSERT INTO `k2zp_terms` VALUES("4", "Testimonials", "testimonials", "0");
INSERT INTO `k2zp_terms` VALUES("5", "VAT news", "vat-news", "0");
INSERT INTO `k2zp_terms` VALUES("6", "post-format-aside", "post-format-aside", "0");
INSERT INTO `k2zp_terms` VALUES("7", "post-format-status", "post-format-status", "0");
INSERT INTO `k2zp_terms` VALUES("8", "Footer menu", "footer-menu", "0");

/* INSERT TABLE DATA: k2zp_usermeta */
INSERT INTO `k2zp_usermeta` VALUES("1", "1", "first_name", "");
INSERT INTO `k2zp_usermeta` VALUES("2", "1", "last_name", "");
INSERT INTO `k2zp_usermeta` VALUES("3", "1", "nickname", "admin");
INSERT INTO `k2zp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `k2zp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `k2zp_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `k2zp_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `k2zp_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `k2zp_usermeta` VALUES("9", "1", "aim", "");
INSERT INTO `k2zp_usermeta` VALUES("10", "1", "yim", "");
INSERT INTO `k2zp_usermeta` VALUES("11", "1", "jabber", "");
INSERT INTO `k2zp_usermeta` VALUES("12", "1", "k2zp_capabilities", "a:1:{s:13:\"administrator\";s:1:\"1\";}");
INSERT INTO `k2zp_usermeta` VALUES("13", "1", "k2zp_user_level", "10");
INSERT INTO `k2zp_usermeta` VALUES("14", "1", "session_tokens", "a:2:{s:64:\"1f61df02ca6119d1b828f2c809f36d4d0e1a381f5e0cf82adb8b7f3b5e4b46bd\";a:4:{s:10:\"expiration\";i:1428587990;s:2:\"ip\";s:14:\"90.227.115.119\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\";s:5:\"login\";i:1428415190;}s:64:\"5850112fdd89bb40b021c0fd1b0ec865b83dc64857a9a283f8ada8c0e5e84cfd\";a:4:{s:10:\"expiration\";i:1428603780;s:2:\"ip\";s:13:\"217.210.143.2\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\";s:5:\"login\";i:1428430980;}}");
INSERT INTO `k2zp_usermeta` VALUES("15", "1", "k2zp_dashboard_quick_press_last_post_id", "294");
INSERT INTO `k2zp_usermeta` VALUES("16", "1", "meta-box-order_dashboard", "a:4:{s:6:\"normal\";s:38:\"dashboard_right_now,dashboard_activity\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}");
INSERT INTO `k2zp_usermeta` VALUES("17", "1", "dismissed_wp_pointers", "wp390_widgets,wp410_dfw");
INSERT INTO `k2zp_usermeta` VALUES("18", "1", "tgmpa_dismissed_notice", "1");
INSERT INTO `k2zp_usermeta` VALUES("19", "1", "k2zp_user-settings", "libraryContent=browse&editor=tinymce&hidetb=1&imgsize=full&urlbutton=none&align=none");
INSERT INTO `k2zp_usermeta` VALUES("20", "1", "k2zp_user-settings-time", "1427963206");
INSERT INTO `k2zp_usermeta` VALUES("21", "1", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `k2zp_usermeta` VALUES("22", "1", "metaboxhidden_nav-menus", "a:7:{i:0;s:8:\"add-post\";i:1;s:13:\"add-portfolio\";i:2;s:13:\"add-galleries\";i:3;s:8:\"add-team\";i:4;s:8:\"add-faqs\";i:5;s:12:\"add-post_tag\";i:6;s:15:\"add-post_format\";}");
INSERT INTO `k2zp_usermeta` VALUES("23", "1", "nav_menu_recently_edited", "8");
INSERT INTO `k2zp_usermeta` VALUES("24", "1", "closedpostboxes_post", "a:0:{}");
INSERT INTO `k2zp_usermeta` VALUES("25", "1", "metaboxhidden_post", "a:14:{i:0;s:18:\"swift_page_builder\";i:1;s:21:\"detail_media_meta_box\";i:2;s:21:\"page_heading_meta_box\";i:3;s:24:\"page_background_meta_box\";i:4;s:13:\"post_meta_box\";i:5;s:17:\"download_meta_box\";i:6;s:21:\"sidebar_meta_box_post\";i:7;s:16:\"reviews_meta_box\";i:8;s:11:\"postexcerpt\";i:9;s:13:\"trackbacksdiv\";i:10;s:10:\"postcustom\";i:11;s:11:\"commentsdiv\";i:12;s:7:\"slugdiv\";i:13;s:9:\"authordiv\";}");
INSERT INTO `k2zp_usermeta` VALUES("26", "1", "k2zp_li_user_loves", "a:1:{i:0;s:3:\"180\";}");

/* INSERT TABLE DATA: k2zp_users */
INSERT INTO `k2zp_users` VALUES("1", "sommar", "$P$Bgk.gptGhcvp23cTmg/o.xuwdd.4tz/", "admin", "henrik@sommar.se", "", "2015-03-30 15:43:09", "", "0", "admin");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2015-04-07 18:26:22*/
/* DUPLICATOR_MYSQLDUMP_EOF */


# siph0n [2016-07-16]