-- MySQL dump 10.16  Distrib 10.2.33-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: bellha6_wp359
-- ------------------------------------------------------
-- Server version	10.2.33-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpxx_commentmeta`
--

DROP TABLE IF EXISTS `wpxx_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_commentmeta`
--

LOCK TABLES `wpxx_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpxx_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxx_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_comments`
--

DROP TABLE IF EXISTS `wpxx_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci 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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_comments`
--

LOCK TABLES `wpxx_comments` WRITE;
/*!40000 ALTER TABLE `wpxx_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxx_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_links`
--

DROP TABLE IF EXISTS `wpxx_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_links`
--

LOCK TABLES `wpxx_links` WRITE;
/*!40000 ALTER TABLE `wpxx_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxx_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_options`
--

DROP TABLE IF EXISTS `wpxx_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=6975 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_options`
--

LOCK TABLES `wpxx_options` WRITE;
/*!40000 ALTER TABLE `wpxx_options` DISABLE KEYS */;
INSERT INTO `wpxx_options` VALUES (1,'siteurl','https://sewingelements.com','yes'),(2,'home','https://sewingelements.com','yes'),(3,'blogname','Sewing Elements','yes'),(4,'blogdescription','&quot;Nurturing the creative seed inside all of us&quot;','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','Kathy@SewingElements.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:89:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:83:\"/home/bellha6/public_html/sewingelements/wp-content/themes/twentynineteen/style.css\";i:1;s:0:\"\";}','no'),(40,'template','griddist','yes'),(41,'stylesheet','griddist','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wpxx_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(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'),(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'),(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'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"calendar-3\";i:1;s:17:\"recent-comments-2\";i:2;s:6:\"meta-2\";i:3;s:14:\"recent-posts-2\";i:4;s:10:\"archives-2\";i:5;s:12:\"categories-2\";}s:7:\"sidebar\";a:4:{i:0;s:13:\"media_image-3\";i:1;s:10:\"nav_menu-3\";i:2;s:8:\"search-2\";i:3;s:15:\"media_gallery-2\";}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'cron','a:5:{i:1601430219;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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:1601430220;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1601430246;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601430248;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:960;s:6:\"height\";i:819;s:7:\"caption\";s:27:\"My children bought me this!\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:34;s:3:\"url\";s:93:\"https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/09/IMG_20190504_232817.jpg\";s:5:\"title\";s:0:\"\";}}','yes'),(107,'widget_media_gallery','a:2:{i:2;a:6:{s:5:\"title\";s:0:\"\";s:3:\"ids\";a:5:{i:0;i:47;i:1;i:48;i:2;i:49;i:3;i:50;i:4;i:51;}s:7:\"columns\";i:3;s:4:\"size\";s:9:\"thumbnail\";s:9:\"link_type\";s:4:\"post\";s:14:\"orderby_random\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:8:\"nav_menu\";i:2;}}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'recovery_keys','a:0:{}','yes'),(113,'theme_mods_twentynineteen','a:5:{s:18:\"custom_css_post_id\";i:-1;s:13:\"primary_color\";s:6:\"custom\";s:17:\"primary_color_hue\";i:123;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1569382465;s:4:\"data\";a:15:{s:19:\"wp_inactive_widgets\";a:0:{}s:21:\"elitewp-header-banner\";a:0:{}s:19:\"elitewp-sidebar-one\";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:31:\"elitewp-front-fullwidth-widgets\";a:0:{}s:25:\"elitewp-fullwidth-widgets\";a:0:{}s:25:\"elitewp-front-top-widgets\";a:0:{}s:19:\"elitewp-top-widgets\";a:0:{}s:28:\"elitewp-front-bottom-widgets\";a:0:{}s:22:\"elitewp-bottom-widgets\";a:0:{}s:18:\"elitewp-top-footer\";a:0:{}s:16:\"elitewp-footer-1\";a:0:{}s:16:\"elitewp-footer-2\";a:0:{}s:16:\"elitewp-footer-3\";a:0:{}s:16:\"elitewp-footer-4\";a:0:{}s:21:\"elitewp-bottom-footer\";a:0:{}}}}','yes'),(6969,'_site_transient_timeout_theme_roots','1601428688','no'),(6970,'_site_transient_theme_roots','a:7:{s:11:\"carbon-lite\";s:7:\"/themes\";s:7:\"elitewp\";s:7:\"/themes\";s:8:\"griddist\";s:7:\"/themes\";s:8:\"gridzone\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(139,'can_compress_scripts','1','no'),(142,'recently_activated','a:0:{}','yes'),(163,'theme_switched_via_customizer','','yes'),(164,'customize_stashed_theme_mods','a:0:{}','no'),(152,'current_theme','Griddist','yes'),(153,'theme_mods_elitewp','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:9:\"secondary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1570149690;s:4:\"data\";a:15:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"calendar-3\";i:1;s:17:\"recent-comments-2\";i:2;s:6:\"meta-2\";i:3;s:14:\"recent-posts-2\";i:4;s:10:\"archives-2\";i:5;s:12:\"categories-2\";}s:21:\"elitewp-header-banner\";a:0:{}s:19:\"elitewp-sidebar-one\";a:3:{i:0;s:13:\"media_image-3\";i:1;s:10:\"nav_menu-3\";i:2;s:8:\"search-2\";}s:31:\"elitewp-front-fullwidth-widgets\";a:0:{}s:25:\"elitewp-fullwidth-widgets\";a:0:{}s:25:\"elitewp-front-top-widgets\";a:0:{}s:19:\"elitewp-top-widgets\";a:0:{}s:28:\"elitewp-front-bottom-widgets\";a:0:{}s:22:\"elitewp-bottom-widgets\";a:0:{}s:18:\"elitewp-top-footer\";a:0:{}s:16:\"elitewp-footer-1\";a:0:{}s:16:\"elitewp-footer-2\";a:0:{}s:16:\"elitewp-footer-3\";a:0:{}s:16:\"elitewp-footer-4\";a:0:{}s:21:\"elitewp-bottom-footer\";a:0:{}}}s:16:\"header_textcolor\";s:6:\"2319aa\";s:16:\"background_color\";s:6:\"69e547\";}','yes'),(154,'theme_switched','','yes'),(155,'category_children','a:0:{}','yes'),(165,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(171,'theme_mods_carbon-lite','a:15:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:6:\"menu-1\";i:2;s:6:\"menu-3\";i:2;s:6:\"menu-2\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"header_textcolor\";s:6:\"71f215\";s:16:\"background_color\";s:6:\"4700fc\";s:16:\"background_image\";s:0:\"\";s:12:\"header_image\";s:13:\"remove-header\";s:26:\"carbon_lite_body_text_size\";s:15:\"large-body-text\";s:25:\"carbon_lite_headings_size\";s:15:\"medium-headings\";s:22:\"carbon_lite_icons_size\";s:12:\"medium-icons\";s:23:\"carbon_lite_header_size\";s:12:\"small-header\";s:29:\"carbon_lite_content_area_size\";s:18:\"large-content-area\";s:28:\"carbon_lite_sidebar_position\";s:12:\"sidebar-left\";s:26:\"carbon_lite_content_option\";s:12:\"full-content\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1569425774;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:17:\"recent-comments-2\";i:1;s:6:\"meta-2\";i:2;s:14:\"recent-posts-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";}s:9:\"sidebar-1\";a:3:{i:0;s:13:\"media_image-3\";i:1;s:10:\"nav_menu-3\";i:2;s:8:\"search-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(190,'_transient_carbon_lite_categories','1','yes'),(227,'elitewp_options','a:6:{s:13:\"enable_slider\";b:1;s:16:\"slider_post_type\";s:14:\"category-posts\";s:13:\"slider_length\";i:6;s:10:\"slider_cat\";i:1;s:10:\"post_style\";s:7:\"style-5\";s:25:\"enable_sticky_mobile_menu\";b:0;}','yes'),(398,'theme_mods_gridzone','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"header\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1570150034;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"calendar-3\";i:1;s:17:\"recent-comments-2\";i:2;s:6:\"meta-2\";i:3;s:14:\"recent-posts-2\";i:4;s:10:\"archives-2\";i:5;s:12:\"categories-2\";}s:7:\"primary\";a:3:{i:0;s:13:\"media_image-3\";i:1;s:10:\"nav_menu-3\";i:2;s:8:\"search-2\";}}}}','yes'),(6973,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1601426889;s:7:\"checked\";a:7:{s:11:\"carbon-lite\";s:5:\"1.1.0\";s:7:\"elitewp\";s:5:\"1.0.3\";s:8:\"griddist\";s:3:\"1.5\";s:8:\"gridzone\";s:5:\"1.1.3\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:4:{s:8:\"gridzone\";a:6:{s:5:\"theme\";s:8:\"gridzone\";s:11:\"new_version\";s:5:\"1.3.0\";s:3:\"url\";s:38:\"https://wordpress.org/themes/gridzone/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/gridzone.1.3.0.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.7.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.4.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.2.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(6974,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1601426889;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:9:\"hello.php\";s:5:\"1.7.2\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(401,'kirki_telemetry_no_consent','1','yes'),(406,'theme_mods_griddist','a:18:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:12:\"primary-menu\";i:2;s:11:\"mobile-menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"header_textcolor\";s:6:\"196600\";s:16:\"sidebar_bg_color\";s:7:\"#fff6f2\";s:21:\"sidebar_tagline_color\";s:7:\"#2500f7\";s:18:\"sidebar_link_color\";s:7:\"#160093\";s:22:\"sidebar_headline_color\";s:7:\"#6c06d3\";s:18:\"sidebar_text_color\";s:7:\"#000000\";s:16:\"background_color\";s:6:\"e2b500\";s:12:\"header_image\";s:13:\"remove-header\";s:16:\"background_image\";s:93:\"https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/10/IMG_20190727_104914.jpg\";s:17:\"background_preset\";s:4:\"fill\";s:21:\"background_position_x\";s:4:\"left\";s:15:\"background_size\";s:5:\"cover\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_attachment\";s:5:\"fixed\";s:21:\"background_position_y\";s:3:\"top\";}','yes'),(694,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"Kathy@SewingElements.com\";s:7:\"version\";s:5:\"5.2.7\";s:9:\"timestamp\";i:1601426889;}','no'),(6972,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.5.1\";s:7:\"version\";s:5:\"5.5.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.5.1\";s:7:\"version\";s:5:\"5.5.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.4\";s:7:\"version\";s:5:\"5.3.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.7-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.2.7-partial-6.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.7-rollback-6.zip\";}s:7:\"current\";s:5:\"5.2.7\";s:7:\"version\";s:5:\"5.2.7\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:5:\"5.2.6\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1601426889;s:15:\"version_checked\";s:5:\"5.2.6\";s:12:\"translations\";a:0:{}}','no');
/*!40000 ALTER TABLE `wpxx_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_postmeta`
--

DROP TABLE IF EXISTS `wpxx_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=161 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_postmeta`
--

LOCK TABLES `wpxx_postmeta` WRITE;
/*!40000 ALTER TABLE `wpxx_postmeta` DISABLE KEYS */;
INSERT INTO `wpxx_postmeta` VALUES (2,3,'_wp_page_template','default'),(34,21,'_menu_item_object','page'),(10,8,'_customize_changeset_uuid','bd761c5f-a300-4c36-b45a-09a8a9c39e34'),(14,10,'_customize_changeset_uuid','bd761c5f-a300-4c36-b45a-09a8a9c39e34'),(33,21,'_menu_item_object_id','8'),(16,11,'_customize_changeset_uuid','bd761c5f-a300-4c36-b45a-09a8a9c39e34'),(32,21,'_menu_item_menu_item_parent','0'),(18,12,'_customize_changeset_uuid','bd761c5f-a300-4c36-b45a-09a8a9c39e34'),(31,21,'_menu_item_type','post_type'),(20,13,'_customize_changeset_uuid','bd761c5f-a300-4c36-b45a-09a8a9c39e34'),(35,21,'_menu_item_target',''),(36,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37,21,'_menu_item_xfn',''),(38,21,'_menu_item_url',''),(47,23,'_menu_item_type','post_type'),(48,23,'_menu_item_menu_item_parent','0'),(49,23,'_menu_item_object_id','10'),(50,23,'_menu_item_object','page'),(51,23,'_menu_item_target',''),(52,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(53,23,'_menu_item_xfn',''),(54,23,'_menu_item_url',''),(92,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1255;s:4:\"file\";s:28:\"2019/09/cropped-sewing-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-sewing-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:28:\"cropped-sewing-1-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"cropped-sewing-1-768x482.png\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"cropped-sewing-1-1024x643.png\";s:5:\"width\";i:1024;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"carbon-lite-blog-thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-sewing-1-1045x400.png\";s:5:\"width\";i:1045;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:39:\"carbon-lite-jetpack-portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-sewing-1-1280x720.png\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:29;}'),(91,30,'_wp_attachment_context','custom-header'),(90,30,'_wp_attached_file','2019/09/cropped-sewing-1.png'),(63,25,'_menu_item_type','post_type'),(64,25,'_menu_item_menu_item_parent','0'),(65,25,'_menu_item_object_id','12'),(66,25,'_menu_item_object','page'),(67,25,'_menu_item_target',''),(68,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(69,25,'_menu_item_xfn',''),(70,25,'_menu_item_url',''),(71,26,'_menu_item_type','post_type'),(72,26,'_menu_item_menu_item_parent','0'),(73,26,'_menu_item_object_id','13'),(74,26,'_menu_item_object','page'),(75,26,'_menu_item_target',''),(76,26,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(77,26,'_menu_item_xfn',''),(78,26,'_menu_item_url',''),(103,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:819;s:4:\"file\";s:31:\"2019/09/IMG_20190504_232817.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190504_232817-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:31:\"IMG_20190504_232817-300x256.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20190504_232817-768x655.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"carbon-lite-blog-thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190504_232817-960x400.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:39:\"carbon-lite-jetpack-portfolio-thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190504_232817-960x720.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"LGL15G\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"2.7\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(102,34,'_wp_attached_file','2019/09/IMG_20190504_232817.jpg'),(93,30,'_wp_attachment_custom_header_last_used_carbon-lite','1569383358'),(94,30,'_wp_attachment_is_custom_header','carbon-lite'),(111,12,'_edit_lock','1569428694:1'),(116,39,'_edit_lock','1570151098:1'),(119,11,'_edit_lock','1570151399:1'),(122,42,'_edit_lock','1570152295:1'),(129,45,'_wp_attached_file','2019/10/IMG_20190727_104914.jpg'),(130,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1944;s:6:\"height\";i:2592;s:4:\"file\";s:31:\"2019/10/IMG_20190727_104914.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190727_104914-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:31:\"IMG_20190727_104914-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20190727_104914-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20190727_104914-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20190727_104914-1870x2493.jpg\";s:5:\"width\";i:1870;s:6:\"height\";i:2493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"griddist_preview_image_low_resolution\";a:4:{s:4:\"file\";s:31:\"IMG_20190727_104914-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:38:\"griddist_preview_image_high_resolution\";a:4:{s:4:\"file\";s:32:\"IMG_20190727_104914-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"Z558VL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1564224553\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.93\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:16:\"0.00425531914894\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(131,45,'_wp_attachment_custom_header_last_used_griddist','1570152671'),(132,45,'_wp_attachment_is_custom_header','griddist'),(133,45,'_wp_attachment_image_alt','summer'),(134,45,'_wp_attachment_is_custom_background','griddist'),(138,47,'_wp_attached_file','2019/10/IMG_20190524_171009.jpg'),(139,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1944;s:6:\"height\";i:2592;s:4:\"file\";s:31:\"2019/10/IMG_20190524_171009.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190524_171009-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:31:\"IMG_20190524_171009-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171009-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171009-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20190524_171009-1870x2493.jpg\";s:5:\"width\";i:1870;s:6:\"height\";i:2493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"griddist_preview_image_low_resolution\";a:4:{s:4:\"file\";s:31:\"IMG_20190524_171009-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:38:\"griddist_preview_image_high_resolution\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171009-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"Z558VL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1558717809\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.93\";s:3:\"iso\";s:3:\"352\";s:13:\"shutter_speed\";s:15:\"0.0416666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(140,47,'_wp_attachment_image_alt',''),(141,48,'_wp_attached_file','2019/10/IMG_20190524_171020.jpg'),(142,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1944;s:6:\"height\";i:2592;s:4:\"file\";s:31:\"2019/10/IMG_20190524_171020.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190524_171020-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:31:\"IMG_20190524_171020-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171020-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171020-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20190524_171020-1870x2493.jpg\";s:5:\"width\";i:1870;s:6:\"height\";i:2493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"griddist_preview_image_low_resolution\";a:4:{s:4:\"file\";s:31:\"IMG_20190524_171020-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:38:\"griddist_preview_image_high_resolution\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171020-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"Z558VL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1558717820\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.93\";s:3:\"iso\";s:3:\"373\";s:13:\"shutter_speed\";s:15:\"0.0416666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(143,49,'_wp_attached_file','2019/10/IMG_20190524_171026.jpg'),(144,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1944;s:6:\"height\";i:2592;s:4:\"file\";s:31:\"2019/10/IMG_20190524_171026.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190524_171026-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:31:\"IMG_20190524_171026-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171026-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171026-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20190524_171026-1870x2493.jpg\";s:5:\"width\";i:1870;s:6:\"height\";i:2493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"griddist_preview_image_low_resolution\";a:4:{s:4:\"file\";s:31:\"IMG_20190524_171026-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:38:\"griddist_preview_image_high_resolution\";a:4:{s:4:\"file\";s:32:\"IMG_20190524_171026-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"Z558VL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1558717826\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.93\";s:3:\"iso\";s:3:\"396\";s:13:\"shutter_speed\";s:15:\"0.0416666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(145,50,'_wp_attached_file','2019/10/IMG_20190705_232248.jpg'),(146,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:31:\"2019/10/IMG_20190705_232248.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190705_232248-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:31:\"IMG_20190705_232248-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20190705_232248-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20190705_232248-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20190705_232248-1870x1403.jpg\";s:5:\"width\";i:1870;s:6:\"height\";i:1403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"griddist_preview_image_low_resolution\";a:4:{s:4:\"file\";s:31:\"IMG_20190705_232248-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:38:\"griddist_preview_image_high_resolution\";a:4:{s:4:\"file\";s:31:\"IMG_20190705_232248-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"Z558VL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1562368968\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.93\";s:3:\"iso\";s:3:\"619\";s:13:\"shutter_speed\";s:15:\"0.0416666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(147,51,'_wp_attached_file','2019/10/IMG_20190726_231524.jpg'),(148,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1944;s:6:\"height\";i:2592;s:4:\"file\";s:31:\"2019/10/IMG_20190726_231524.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20190726_231524-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:31:\"IMG_20190726_231524-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20190726_231524-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20190726_231524-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20190726_231524-1870x2493.jpg\";s:5:\"width\";i:1870;s:6:\"height\";i:2493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"griddist_preview_image_low_resolution\";a:4:{s:4:\"file\";s:31:\"IMG_20190726_231524-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:38:\"griddist_preview_image_high_resolution\";a:4:{s:4:\"file\";s:32:\"IMG_20190726_231524-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"Z558VL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1564182924\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.93\";s:3:\"iso\";s:4:\"1650\";s:13:\"shutter_speed\";s:15:\"0.0833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149,34,'_wp_attachment_is_custom_background','griddist'),(151,51,'_wp_attachment_is_custom_background','griddist');
/*!40000 ALTER TABLE `wpxx_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_posts`
--

DROP TABLE IF EXISTS `wpxx_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_posts`
--

LOCK TABLES `wpxx_posts` WRITE;
/*!40000 ALTER TABLE `wpxx_posts` DISABLE KEYS */;
INSERT INTO `wpxx_posts` VALUES (3,1,'2019-09-25 01:43:39','2019-09-25 01:43:39','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://bellhawksystems.com/sewingelements.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2019-09-25 01:43:39','2019-09-25 01:43:39','',0,'https://bellhawksystems.com/sewingelements/?page_id=3',0,'page','',0),(8,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','Sewing Lessons','','publish','closed','closed','','sewing-lessons','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',0,'https://bellhawksystems.com/sewingelements/?page_id=8',0,'page','',0),(10,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','Calendar','','publish','closed','closed','','calendar','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',0,'https://bellhawksystems.com/sewingelements/?page_id=10',0,'page','',0),(11,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','<!-- wp:paragraph -->\n<p>I am happy you dropped in to check out Sewing Elements. My name is Kathy and I am your creative sewing instructor in the south central Massachusetts area. Please check often as I will be posting sewing classes offered and lots of sewing tip, tricks and ideas. Sewing creates community and one where we share a common bond of creativity. </p>\n<!-- /wp:paragraph -->','Welcome to Sewing Elements','','publish','open','open','','welcome-to-sewing-elements','','','2019-10-04 01:11:46','2019-10-04 01:11:46','',0,'https://bellhawksystems.com/sewingelements/?p=11',0,'post','',0),(12,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','About','','publish','closed','closed','','about','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',0,'https://bellhawksystems.com/sewingelements/?page_id=12',0,'page','',0),(13,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','Contact','','publish','closed','closed','','contact','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',0,'https://bellhawksystems.com/sewingelements/?page_id=13',0,'page','',0),(15,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','Sewing Lessons','','inherit','closed','closed','','8-revision-v1','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',8,'https://bellhawksystems.com/sewingelements/2019/09/25/8-revision-v1/',0,'revision','',0),(17,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','Calendar','','inherit','closed','closed','','10-revision-v1','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',10,'https://bellhawksystems.com/sewingelements/2019/09/25/10-revision-v1/',0,'revision','',0),(18,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','Welcome to Sewing Elements','','inherit','closed','closed','','11-revision-v1','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',11,'https://bellhawksystems.com/sewingelements/2019/09/25/11-revision-v1/',0,'revision','',0),(19,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','About','','inherit','closed','closed','','12-revision-v1','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',12,'https://bellhawksystems.com/sewingelements/2019/09/25/12-revision-v1/',0,'revision','',0),(20,1,'2019-09-25 03:25:29','2019-09-25 03:25:29','','Contact','','inherit','closed','closed','','13-revision-v1','','','2019-09-25 03:25:29','2019-09-25 03:25:29','',13,'https://bellhawksystems.com/sewingelements/2019/09/25/13-revision-v1/',0,'revision','',0),(21,1,'2019-09-25 03:25:29','2019-09-25 03:25:29',' ','','','publish','closed','closed','','21','','','2019-09-25 03:46:44','2019-09-25 03:46:44','',0,'https://bellhawksystems.com/sewingelements/2019/09/25/21/',2,'nav_menu_item','',0),(23,1,'2019-09-25 03:25:29','2019-09-25 03:25:29',' ','','','publish','closed','closed','','23','','','2019-09-25 03:46:44','2019-09-25 03:46:44','',0,'https://bellhawksystems.com/sewingelements/2019/09/25/23/',3,'nav_menu_item','',0),(30,1,'2019-09-25 03:49:14','2019-09-25 03:49:14','','cropped-sewing-1.png','','inherit','closed','closed','','cropped-sewing-png','','','2019-09-25 03:49:14','2019-09-25 03:49:14','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/09/cropped-sewing.png',0,'attachment','image/png',0),(25,1,'2019-09-25 03:25:29','2019-09-25 03:25:29',' ','','','publish','closed','closed','','25','','','2019-09-25 03:46:44','2019-09-25 03:46:44','',0,'https://bellhawksystems.com/sewingelements/2019/09/25/25/',5,'nav_menu_item','',0),(26,1,'2019-09-25 03:25:29','2019-09-25 03:25:29',' ','','','publish','closed','closed','','26','','','2019-09-25 03:46:44','2019-09-25 03:46:44','',0,'https://bellhawksystems.com/sewingelements/2019/09/25/26/',6,'nav_menu_item','',0),(34,1,'2019-09-25 04:13:22','2019-09-25 04:13:22','','IMG_20190504_232817','','inherit','open','closed','','img_20190504_232817','','','2019-09-25 04:13:22','2019-09-25 04:13:22','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/09/IMG_20190504_232817.jpg',0,'attachment','image/jpeg',0),(39,1,'2019-10-04 01:06:25','2019-10-04 01:06:25','<!-- wp:paragraph -->\n<p>The leaves are turning and falling, the air is getting colder. That is if you excuse those 80 degree days we just had! The season of imaginative costumes and decorations is at hand. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Start off with a child\'s Trick or Treat bag. There are so many prints out there, both cute and scary. I just found Sugar Skulls to make a bag for my grandson. Can\'t wait to give it to him, the nice part is that I get to explain the history and meaning behind all these cultural symbols that are around. Take time to explore, learn and share with family and friends as you sew up these wonderful things for others!  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Time to also make some mug rugs, those very popular over sized coasters. so many themes and they whip up fast with small pieces of batting, cotton and a bit of imagination. Great way to share a cup of coffee, tea or hot chocolate! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Time to start making scarfs out of fleece, a very cuddly and warm fabric. just cut out a length you desire and as wide as you would like. Make it fun by cutting some fringes at the end of both lengths. Makes an instant no-sew gift for anyone on your list. I have given them as gifts, and you can make them to suit the taste your your recipient just using plain colors or the multitude of prints that are now available. Just make sure you treat yourself to one too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Very shortly I will be posting pictures for you to view so stay tuned!</p>\n<!-- /wp:paragraph -->','Sewing ideas for October','','publish','open','open','','sewing-ideas-for-october','','','2019-10-04 01:06:25','2019-10-04 01:06:25','',0,'https://bellhawksystems.com/sewingelements/?p=39',0,'post','',0),(40,1,'2019-10-04 01:06:25','2019-10-04 01:06:25','<!-- wp:paragraph -->\n<p>The leaves are turning and falling, the air is getting colder. That is if you excuse those 80 degree days we just had! The season of imaginative costumes and decorations is at hand. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Start off with a child\'s Trick or Treat bag. There are so many prints out there, both cute and scary. I just found Sugar Skulls to make a bag for my grandson. Can\'t wait to give it to him, the nice part is that I get to explain the history and meaning behind all these cultural symbols that are around. Take time to explore, learn and share with family and friends as you sew up these wonderful things for others!  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Time to also make some mug rugs, those very popular over sized coasters. so many themes and they whip up fast with small pieces of batting, cotton and a bit of imagination. Great way to share a cup of coffee, tea or hot chocolate! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Time to start making scarfs out of fleece, a very cuddly and warm fabric. just cut out a length you desire and as wide as you would like. Make it fun by cutting some fringes at the end of both lengths. Makes an instant no-sew gift for anyone on your list. I have given them as gifts, and you can make them to suit the taste your your recipient just using plain colors or the multitude of prints that are now available. Just make sure you treat yourself to one too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Very shortly I will be posting pictures for you to view so stay tuned!</p>\n<!-- /wp:paragraph -->','Sewing ideas for October','','inherit','closed','closed','','39-revision-v1','','','2019-10-04 01:06:25','2019-10-04 01:06:25','',39,'https://bellhawksystems.com/sewingelements/2019/10/04/39-revision-v1/',0,'revision','',0),(41,1,'2019-10-04 01:11:46','2019-10-04 01:11:46','<!-- wp:paragraph -->\n<p>I am happy you dropped in to check out Sewing Elements. My name is Kathy and I am your creative sewing instructor in the south central Massachusetts area. Please check often as I will be posting sewing classes offered and lots of sewing tip, tricks and ideas. Sewing creates community and one where we share a common bond of creativity. </p>\n<!-- /wp:paragraph -->','Welcome to Sewing Elements','','inherit','closed','closed','','11-revision-v1','','','2019-10-04 01:11:46','2019-10-04 01:11:46','',11,'https://bellhawksystems.com/sewingelements/2019/10/04/11-revision-v1/',0,'revision','',0),(42,1,'2019-10-04 01:16:35','2019-10-04 01:16:35','<!-- wp:paragraph -->\n<p>I will be instructing a monthly workshop at the Millbury Public Library starting in November 2019. I will post here along with a posting at the library website.  <a href=\"https://www.millburylibrary.org/\">https://www.millburylibrary.org/</a> </p>\n<!-- /wp:paragraph -->','Sewing at Millbury Public Library','','publish','open','open','','sewing-at-millbury-public-library','','','2019-10-04 01:16:35','2019-10-04 01:16:35','',0,'https://bellhawksystems.com/sewingelements/?p=42',0,'post','',0),(43,1,'2019-10-04 01:16:35','2019-10-04 01:16:35','<!-- wp:paragraph -->\n<p>I will be instructing a monthly workshop at the Millbury Public Library starting in November 2019. I will post here along with a posting at the library website.  <a href=\"https://www.millburylibrary.org/\">https://www.millburylibrary.org/</a> </p>\n<!-- /wp:paragraph -->','Sewing at Millbury Public Library','','inherit','closed','closed','','42-revision-v1','','','2019-10-04 01:16:35','2019-10-04 01:16:35','',42,'https://bellhawksystems.com/sewingelements/2019/10/04/42-revision-v1/',0,'revision','',0),(45,1,'2019-10-04 01:30:54','2019-10-04 01:30:54','','IMG_20190727_104914','','inherit','open','closed','','img_20190727_104914','','','2019-10-04 01:32:08','2019-10-04 01:32:08','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/10/IMG_20190727_104914.jpg',0,'attachment','image/jpeg',0),(47,1,'2019-10-04 15:32:44','2019-10-04 15:32:44','For a memory baby quilt...Mom\'s memory of daughter.','IMG_20190524_171009','Mount Wachusett','inherit','open','closed','','img_20190524_171009','','','2019-10-04 15:35:09','2019-10-04 15:35:09','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/10/IMG_20190524_171009.jpg',0,'attachment','image/jpeg',0),(48,1,'2019-10-04 15:35:44','2019-10-04 15:35:44','Aunt\'s memory of niece.','IMG_20190524_171020','Comet Pond. ','inherit','open','closed','','img_20190524_171020','','','2019-10-04 15:36:42','2019-10-04 15:36:42','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/10/IMG_20190524_171020.jpg',0,'attachment','image/jpeg',0),(49,1,'2019-10-04 15:37:20','2019-10-04 15:37:20','Grandmother remember her granddaughter\'s love of rabbits. ','IMG_20190524_171026','Love bunnies!','inherit','open','closed','','img_20190524_171026','','','2019-10-04 15:39:07','2019-10-04 15:39:07','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/10/IMG_20190524_171026.jpg',0,'attachment','image/jpeg',0),(50,1,'2019-10-04 15:40:30','2019-10-04 15:40:30','I found this to be so helpful!','IMG_20190705_232248','Labyrinth Quit, paper version! ','inherit','open','closed','','img_20190705_232248','','','2019-10-04 15:42:03','2019-10-04 15:42:03','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/10/IMG_20190705_232248.jpg',0,'attachment','image/jpeg',0),(51,1,'2019-10-04 15:43:14','2019-10-04 15:43:14','Finished back with a beautiful 108\" fabric similar to the front lighter fabric. Given to my son and his wife out in Ohio!','IMG_20190726_231524','Top version of Labyrinth quilt.','inherit','open','closed','','img_20190726_231524','','','2019-10-04 15:46:29','2019-10-04 15:46:29','',0,'https://bellhawksystems.com/sewingelements/wp-content/uploads/2019/10/IMG_20190726_231524.jpg',0,'attachment','image/jpeg',0);
/*!40000 ALTER TABLE `wpxx_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_term_relationships`
--

DROP TABLE IF EXISTS `wpxx_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_term_relationships`
--

LOCK TABLES `wpxx_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpxx_term_relationships` DISABLE KEYS */;
INSERT INTO `wpxx_term_relationships` VALUES (42,1,0),(11,1,0),(21,2,0),(23,2,0),(39,1,0),(25,2,0),(26,2,0);
/*!40000 ALTER TABLE `wpxx_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_term_taxonomy`
--

DROP TABLE IF EXISTS `wpxx_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci 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=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_term_taxonomy`
--

LOCK TABLES `wpxx_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpxx_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpxx_term_taxonomy` VALUES (1,1,'category','',0,3),(2,2,'nav_menu','',0,4);
/*!40000 ALTER TABLE `wpxx_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_termmeta`
--

DROP TABLE IF EXISTS `wpxx_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_termmeta`
--

LOCK TABLES `wpxx_termmeta` WRITE;
/*!40000 ALTER TABLE `wpxx_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxx_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_terms`
--

DROP TABLE IF EXISTS `wpxx_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_terms`
--

LOCK TABLES `wpxx_terms` WRITE;
/*!40000 ALTER TABLE `wpxx_terms` DISABLE KEYS */;
INSERT INTO `wpxx_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Did you know...','did-you-know',0);
/*!40000 ALTER TABLE `wpxx_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_usermeta`
--

DROP TABLE IF EXISTS `wpxx_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_usermeta`
--

LOCK TABLES `wpxx_usermeta` WRITE;
/*!40000 ALTER TABLE `wpxx_usermeta` DISABLE KEYS */;
INSERT INTO `wpxx_usermeta` VALUES (1,1,'nickname','Kathy'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpxx_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpxx_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(17,1,'wpxx_dashboard_quick_press_last_post_id','37'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"72.93.236.0\";}'),(19,1,'nav_menu_recently_edited','2'),(20,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(21,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(22,1,'wpxx_user-settings','libraryContent=browse'),(23,1,'wpxx_user-settings-time','1569385069');
/*!40000 ALTER TABLE `wpxx_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxx_users`
--

DROP TABLE IF EXISTS `wpxx_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxx_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxx_users`
--

LOCK TABLES `wpxx_users` WRITE;
/*!40000 ALTER TABLE `wpxx_users` DISABLE KEYS */;
INSERT INTO `wpxx_users` VALUES (1,'Kathy','$P$BpWZG4Zqaq0PnTg1H/PeqEaionYtWD/','Kathy','Kathy@SewingElements.com','','2019-09-25 01:43:39','',0,'Kathy');
/*!40000 ALTER TABLE `wpxx_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2020-09-29 20:51:00
