-- MySQL dump 10.13  Distrib 8.0.39, for Linux (x86_64)
--
-- Host: localhost    Database: retrocubedevs_kingdom_couples
-- ------------------------------------------------------
-- Server version	8.0.39-0ubuntu0.22.04.1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 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 `adonis_schema`
--

DROP TABLE IF EXISTS `adonis_schema`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adonis_schema` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `batch` int DEFAULT NULL,
  `migration_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adonis_schema`
--

LOCK TABLES `adonis_schema` WRITE;
/*!40000 ALTER TABLE `adonis_schema` DISABLE KEYS */;
INSERT INTO `adonis_schema` VALUES (26,'1651857415145_user_groups_schema',1,'2024-07-26 10:17:42'),(27,'1651857549873_users_schema',1,'2024-07-26 10:17:42'),(28,'1651857557185_user_api_tokens_schema',1,'2024-07-26 10:17:42'),(29,'1651857581696_cms_modules_schema',1,'2024-07-26 10:17:42'),(30,'1651857589816_cms_module_permissions_schema',1,'2024-07-26 10:17:42'),(31,'1651857603473_mail_template_schema',1,'2024-07-26 10:17:42'),(32,'1651857615934_reset_password_schema',1,'2024-07-26 10:17:42'),(33,'1651857629953_application_setting_schema',1,'2024-07-26 10:17:42'),(34,'1651857674340_content_management_schema',1,'2024-07-26 10:17:42'),(35,'1651857681926_faqs_schema',1,'2024-07-26 10:17:42'),(36,'1651857690517_media_schema',1,'2024-07-26 10:17:42'),(37,'1651857728996_notifications_schema',1,'2024-07-26 10:17:42'),(38,'1651857735074_notification_setting_schema',1,'2024-07-26 10:17:42'),(39,'1692362004035_partners_schema',1,'2024-07-26 10:17:42'),(40,'1692362661753_categories_schema',1,'2024-07-26 10:17:42'),(41,'1692362730729_events_schema',1,'2024-07-26 10:17:42'),(42,'1692362769791_event_category_schema',1,'2024-07-26 10:17:42'),(43,'1692362934533_event_share_schema',1,'2024-07-26 10:17:42'),(44,'1695036285303_chatgpt_schema',1,'2024-07-26 10:17:42'),(45,'1699528976733_bible_quotes_schema',1,'2024-07-26 10:17:42'),(46,'1703760434429_subscription_packages_schema',1,'2024-07-26 10:17:42'),(47,'1703760448746_user_subscriptions_schema',1,'2024-07-26 10:17:43'),(48,'1709881820843_video_categories_schema',1,'2024-07-26 10:17:43'),(49,'1709881835420_videos_schema',1,'2024-07-26 10:17:43'),(50,'1710484782912_video_watchtime_schema',1,'2024-07-26 10:17:43');
/*!40000 ALTER TABLE `adonis_schema` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `application_settings`
--

DROP TABLE IF EXISTS `application_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `application_settings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `identifier` varchar(200) DEFAULT NULL,
  `meta_key` varchar(200) DEFAULT NULL,
  `value` text,
  `is_file` enum('1','0') NOT NULL DEFAULT '0',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `application_settings_identifier_index` (`identifier`),
  KEY `application_settings_meta_key_index` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `application_settings`
--

LOCK TABLES `application_settings` WRITE;
/*!40000 ALTER TABLE `application_settings` DISABLE KEYS */;
INSERT INTO `application_settings` VALUES (5,'application_setting','app_name','Kingdom Couples','','2024-08-23 14:08:02','2024-08-23 14:08:02',NULL),(6,'application_setting','logo','application_setting/1724422082007.png','1','2024-08-23 14:08:02','2024-08-23 14:08:02',NULL),(7,'application_setting','favicon','application_setting/1724422082009.png','1','2024-08-23 14:08:02','2024-08-23 14:08:02',NULL);
/*!40000 ALTER TABLE `application_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bible_quotes`
--

DROP TABLE IF EXISTS `bible_quotes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bible_quotes` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `quote` varchar(255) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bible_quotes_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bible_quotes`
--

LOCK TABLES `bible_quotes` WRITE;
/*!40000 ALTER TABLE `bible_quotes` DISABLE KEYS */;
INSERT INTO `bible_quotes` VALUES (1,'cjuj7klz2jtsy3','Life doesn\'t make any sense without interdependence. We need each other, and the sooner we learn that, the better for us all.','2024-07-26 10:17:43','2024-08-08 11:22:06','2024-08-08 11:22:06'),(2,'cjuj7klz2jtsy4','Life doesn\'t make any sense without interdependence. We need each other, and the sooner we learn that, the better for us all.','2024-07-26 10:17:43','2024-08-08 11:22:06','2024-08-08 11:22:06'),(3,'cjurwdlzb2vff8','This is a testing purpose quote','2024-08-01 09:33:01','2024-08-01 09:33:20','2024-08-01 09:33:20'),(4,'cjuzizlzialbbu','Life doesn\'t make any sense without interdependence. We need each other, and the sooner we learn that, the better for us all.','2024-08-06 10:43:29','2024-08-08 11:22:06','2024-08-08 11:22:06'),(5,'cju10zolzid8jgv','Life doesn\'t make any sense without interdependence. We need each other, and the sooner we learn that, the better for us all.','2024-08-06 11:57:32','2024-08-08 11:23:23','2024-08-08 11:23:23'),(6,'cju111clzidx01w','This is a testing purpose quote','2024-08-06 12:16:33','2024-08-06 12:17:09','2024-08-06 12:17:09'),(7,'cju10yslzidy1m6','This is a testing quote','2024-08-06 12:17:22','2024-08-06 12:35:31','2024-08-06 12:35:31'),(8,'cju13jalzl6uggb','“Husbands, love your wives, just as Christ loved the church and gave himself up for her.” Eph 5:25','2024-08-08 11:21:56','2024-09-16 20:33:17','2024-09-16 20:33:17'),(9,'cju13kylzl6w7ok','“He who finds a wife finds a good thing and obtains favor from the Lord.” Prov 18:22','2024-08-08 11:23:18','2024-08-20 17:28:36','2024-08-20 17:28:36'),(10,'cju14cwlzmnj4ps','Let me hear Your faithfulness in the morning, For I trust in You; Teach me the way in which I should walk; For to You I lift up my soul. Psalm 143:8','2024-08-09 11:56:47','2024-08-19 17:40:52','2024-08-19 17:40:52'),(11,'cju5mkm01a7zpv','Love bears all things, believes all things, hopes all things, endures all things. 1 Cor 13:7','2024-08-19 17:40:45','2024-09-16 20:33:20','2024-09-16 20:33:20'),(12,'cju5mkm02p8el7','Your word is a lamp to my feet and a light to my path. - Ps 119:105','2024-08-20 17:28:45','2024-09-20 20:08:04','2024-09-20 20:08:04'),(13,'cju44p8m15gqdql','The Lord will fight for you, and you shall hold your peace. - Ex 14:14','2024-09-16 20:33:48','2024-09-16 20:35:00',NULL),(14,'cju48lvm16d6yf1','Rejoice always. — 1 Thes 5:16','2024-09-17 11:42:29','2024-09-18 11:41:48','2024-09-18 11:41:48'),(15,'cju4b8xm17k0whi','Rejoice always. — 1 Thes 5:16','2024-09-18 07:41:30','2024-09-18 07:42:29','2024-09-18 07:42:29'),(16,'cju4b8xm17k2e0u','Rejoice always. — 1 Thes 5:16','2024-09-18 07:42:39','2024-09-18 07:50:12','2024-09-18 07:50:12'),(17,'cju4b8xm17kc9zd','Rejoice always. — 1 Thes 5:16','2024-09-18 07:50:20','2024-09-18 07:51:45','2024-09-18 07:51:45'),(18,'cju4b8xm17ke7t8','Rejoice always. — 1 Thes 5:16','2024-09-18 07:51:51','2024-09-18 08:08:14','2024-09-18 08:08:14'),(19,'cju4b8xm17kzej9','Rejoice always. — 1 Thes 5:16','2024-09-18 08:08:19','2024-09-18 08:10:03','2024-09-18 08:10:03'),(20,'cju4b8xm17l1qs1','Rejoice always. — 1 Thes 5:16','2024-09-18 08:10:08','2024-09-18 08:10:08',NULL),(21,'cju4b8xm17snyab','For my yoke is easy and my burden is light. — Matthew 11:30','2024-09-18 11:43:22','2024-09-18 12:23:21','2024-09-18 12:23:21'),(22,'cju4btpm17u3i3h','For my yoke is easy and my burden is light. — Matt 11:30','2024-09-18 12:23:27','2024-09-20 21:38:32',NULL);
/*!40000 ALTER TABLE `bible_quotes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `parent_id` int unsigned DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `detail` text,
  `description` text,
  `color` varchar(255) DEFAULT NULL,
  `approved` enum('1','0') NOT NULL DEFAULT '0',
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `event_count` int NOT NULL DEFAULT '0',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `categories_slug_unique` (`slug`),
  KEY `categories_parent_id_foreign` (`parent_id`),
  CONSTRAINT `categories_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'cjuj7klz2jtsxc',NULL,'Miscommunication',NULL,NULL,NULL,'1','1',0,'2024-07-26 10:17:43',NULL,NULL),(2,'cjuj7klz2jtsxd',NULL,'Disagreement',NULL,NULL,NULL,'1','1',0,'2024-07-26 10:17:43',NULL,NULL),(3,'cjuj7klz2jtsxe',NULL,'Argument',NULL,NULL,NULL,'1','1',0,'2024-07-26 10:17:43',NULL,NULL),(4,'cjuj7klz2jtsxf',1,'Misunderstanding','Incorrect interpretations often arising from not fully listening or asking clarifying questions.','John and Sarah got into a heated argument over a passage in the Bible. John believed that the scripture was clear in its teachings about marriage, while Sarah interpreted it differently. As they tried to discuss their differing viewpoints, emotions ran high and they both felt frustrated and misunderstood. In the end, they realized that their interpretations were colored by their own experiences and beliefs, leading to a deeper conversation about how they could navigate disagreements in a more respectful and understanding way.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:19:45',NULL),(5,'cjuj7klz2jtsxg',1,'Nonverbal cues','Contradicting verbal messages, like crossed arms during a friendly conversation.','As they sat side by side in church, the couple exchanged knowing glances and subtle smiles whenever the pastor made reference to a Bible verse that held special meaning for them. Their intertwined fingers and gentle nods communicated a deep connection and shared faith that transcended words. It was evident in the way they leaned into each other during the sermon, finding comfort and strength in their spiritual bond. Their unspoken communication spoke volumes about the steadfast love and support they found in each other, rooted in their beliefs and convictions.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:19:39',NULL),(6,'cjuj7klz2jtsxh',1,'Tone','The emotional undertone in speech; a harsh tone can signal anger, even if words are neutral.','As they sat together in their living room, she reached for his hand and said with a soft smile, \"You know, I was reading in the Bible today about love and how it never fails. It reminded me of us and how our faith has brought us closer together.\" He looked at her with adoration in his eyes and replied, \"I feel so blessed to have you as my partner in this journey of life. Your faith and devotion inspire me every day.\" And in that moment, they both knew that their love was truly a gift from God.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:26:07',NULL),(7,'cjuj7klz2jtsxi',1,'Passive-aggressiveness','Indirect negativity, such as backhanded compliments or sarcastic remarks.','After years of built-up resentment and frustration, Sarah and John communicated with each other passively-aggressively, often using biblical references to mask their true feelings. Sarah would leave a verse from Proverbs about pride on the fridge when John didn\'t put away his dishes, while John would subtly quote Ephesians about forgiveness when Sarah spent too much money shopping. Their passive-aggressive behavior only served to deepen the divide between them, leading to a relationship filled with tension and unresolved conflict.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:19:31',NULL),(8,'cjuj7klz2jtsxj',1,'Deflection','Shifting focus from the main issue, often to avoid responsibility or uncomfortable topics.','When faced with conflict or misunderstanding, it is important for couples to remember the biblical principle of forgiveness and love. Instead of allowing deflection and blame to come between them, they should come together in prayer, seeking guidance and wisdom from God\'s word. By approaching their relationship with humility and willingness to listen to each other, they can work through their issues and strengthen their bond in Christ. As it says in Ephesians 4:32, \"Be kind and compassionate to one another, forgiving each other, just as in Christ God forgave you.\"',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:19:27',NULL),(9,'cjuj7klz2jtsxk',1,'Assumptions','Jumping to conclusions without confirming the facts.','A couple may assume that their relationship should follow the teachings of the Bible, including principles such as love, respect, and forgiveness. They may also assume that faith and spirituality should play a central role in their partnership, turning to scripture for guidance and strength during difficult times. Ultimately, they may believe that their bond should be rooted in a shared commitment to living out the values and morals outlined in the Bible.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:18:43',NULL),(10,'cjuj7klz2jtsxl',1,'Invalidating','Dismissing feelings or thoughts, often by minimizing or ridiculing them.','The Bible clearly teaches that marriage is a sacred and lifelong commitment between a man and a woman. Any actions or behaviors that go against this foundational truth, such as infidelity or abuse, are not in line with God\'s plan for marriage. Therefore, if a couple is engaging in behaviors that contradict the teachings of the Bible and are damaging to their relationship, they must seek repentance, forgiveness, and guidance from God to bring healing and restoration to their marriage.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:17:47',NULL),(11,'cjuj7klz2jtsxm',1,'Interrupting','Habitually speaking over others, indicating a lack of listening.','As we discuss matters of faith and love, I am reminded of Ephesians 4:32 which tells us to be kind and compassionate towards one another, forgiving each other just as God forgave us in Christ. Let us remember to approach our disagreements with grace and understanding, keeping in mind the example set for us in the scriptures. May our words and actions be guided by love and respect for one another, allowing us to strengthen our relationship and grow together in faith.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:17:41',NULL),(12,'cjuj7klz2jtsxn',2,'Differences','Noticeable when conversations consistently reveal opposing viewpoints.','In the Bible, a couple is typically defined as a man and a woman who are united in marriage and committed to each other for life. They are encouraged to love and support each other, to submit to one another in love, and to fulfill their responsibilities to each other as outlined in the Bible. However, there may be differences within a couple in terms of their individual strengths, weaknesses, interests, and personalities. These differences can complement each other and help the couple grow stronger together, as long as they are aligned in their faith and commitment to each other.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:17:35',NULL),(13,'cjuj7klz2jtsxo',2,'Conflicting goals','Evident when plans or desires clash during decision-making processes.','A common conflicting goal for couples rooted in the Bible is the desire for financial security versus the call to live generously and prioritize the needs of others. While one partner may prioritize saving and planning for the future, the other may feel led to give freely and trust in God\'s provision. This tension can lead to disagreements and challenges in finding a balance that aligns with their shared beliefs and values. The Bible encourages couples to seek unity in their goals and decisions, trusting in God\'s guidance and wisdom to navigate conflicting desires. (Proverbs 15:22, Ephesians 5:21)',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:17:25',NULL),(14,'cjuj7klz2jtsxp',2,'Unclear boundaries','Recognized by feelings of discomfort or overstepping in personal or shared matters.','When a couple has unclear boundaries in their relationship, it can lead to a lack of respect, trust, and understanding between them. The Bible teaches that couples should set clear boundaries in their relationship to maintain a healthy and strong bond. Without clear boundaries, couples may struggle with issues such as jealousy, possessiveness, and codependency, which can ultimately lead to conflict and insecurity in the relationship. It is important for couples to communicate openly, set boundaries, and respect each other\'s individuality in order to have a harmonious and loving relationship as outlined in the Bible.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:19:04',NULL),(15,'cjuj7klz2jtsxq',2,'Power struggle','Apparent in situations where one or both parties insist on dominating decisions.','In a power struggle between a couple, it is important to remember the biblical principle of submitting to one another out of reverence for Christ (Ephesians 5:21). Both partners should strive to love and respect each other, understanding that true power comes not from dominance or control, but from humility and sacrificial love. By following this example set by Christ in his relationship with his followers, a couple can navigate conflicts and disagreements with grace and mutual understanding.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:17:13',NULL),(16,'cjuj7klz2jtsxr',2,'Competition','When discussions turn into contests of one-upmanship or comparison.','In the biblical context, competition between a couple can be seen as counterproductive to the harmonious partnership God intended for marriage. Ephesians 5:22-33 speaks to the importance of mutual respect, love, and submission between husband and wife. When competition arises, it can lead to resentment, division, and a loss of unity in the marriage. Instead, couples are encouraged to support and build each other up, striving towards a common goal of honoring God and living out His purpose for their relationship.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:17:09',NULL),(17,'cjuj7klz2jtsxs',2,'Unmet needs','Felt when feelings of dissatisfaction or neglect arise repeatedly.','In a relationship, unmet needs can cause tension and distance between partners. The Bible encourages couples to communicate openly about their needs and to strive to fulfill them with love and compassion. Ephesians 4:2-3 reminds us to \"be completely humble and gentle; be patient, bearing with one another in love. Make every effort to keep the unity of the Spirit through the bond of peace.\" By practicing humility, patience, and love, couples can work together to address their unmet needs and strengthen their bond.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:17:04',NULL),(18,'cjuj7klz2jtsxt',2,'Unfairness','Perceived when there’s a sense of inequality or bias in treatment or responsibilities.','The Bible teaches that marriage is a partnership of equals, with both husband and wife being called to love, honor, and respect one another. Therefore, it is unfair for one partner to dominate or mistreat the other. Ephesians 5:25-33 instructs husbands to love their wives as Christ loved the church, and 1 Peter 3:7 reminds husbands to treat their wives with understanding and honor. Similarly, Proverbs 31:11-12 praises a wife who brings her husband good and not harm. Any unequal treatment or unfairness within a marriage goes against the biblical principles of love, respect, and mutual submission.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:18:54',NULL),(19,'cjuj7klz2jtsxu',2,'Value clashes','Emerge clearly during discussions on core beliefs, morals, or life choices.','One common value clash that can arise between a couple with reference to the Bible is their differing interpretations of certain teachings or principles. For example, one partner may believe in a more strict interpretation of biblical teachings on marriage, while the other may have a more liberal viewpoint. This can lead to conflict and tension within the relationship as they try to reconcile their beliefs and actions in accordance with their faith. Communication and compromise are essential in navigating these value clashes and finding a way to respect each other\'s beliefs while staying true to their own convictions.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:15:44',NULL),(20,'cjuj7klz2jtsxv',3,'Criticism','Identified by comments that attack a person’s character rather than address specific behaviors.','In the heat of an argument, Sarah criticized David for not being a leader in their relationship, citing Ephesians 5:23 which states, \"For the husband is the head of the wife as Christ is the head of the church.\" David fired back, pointing out Sarah\'s own faults and defending himself with 1 Corinthians 13:4-5, reminding her that \"Love is patient, love is kind. It does not envy, it does not boast, it is not proud. It does not dishonor others, it is not self-seeking, it is not easily angered, it keeps no record of wrongs.\" The couple\'s disagreement quickly turned into a tense standoff, with both unwilling to back down and using biblical verses to justify their own perspectives.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:15:37',NULL),(21,'cjuj7klz2jtsxw',3,'Defensiveness','Seen when someone consistently justifies their actions or blames others instead of addressing the issue.','In a relationship, defensiveness can often arise when one partner feels attacked or criticized by the other. The Bible warns against defensiveness, as Proverbs 15:1 states, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" It is important for couples to communicate openly and honestly, while also being mindful of their tone and approach. By practicing patience, understanding, and humility, couples can work through disagreements and conflicts in a healthy and productive manner, without resorting to defensiveness.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:15:31',NULL),(22,'cjuj7klz2jtsxx',3,'Contempt','Manifests as sarcasm, mockery, or any disrespectful behavior that conveys a sense of superiority.','The couple\'s relationship had reached a breaking point, with feelings of contempt seeping into their interactions. They hurled insults and accusations at each other, their once-loving bond now fractured beyond repair. As they stood on the precipice of separation, they remembered the words of Ephesians 4:31-32, \"Get rid of all bitterness, rage and anger, brawling and slander, along with every form of malice. Be kind and compassionate to one another, forgiving each other, just as in Christ God forgave you.\" With heavy hearts, they realized the need to let go of their contempt and strive to find forgiveness and reconciliation in their relationship.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:16:20',NULL),(23,'cjuj7klz2jtsxy',3,'Escalation','Recognized by the rapid intensification of negative emotions and reactions in a conversation.','The argument between John and Mary quickly escalated into a heated dispute, with each one quoting verses from the Bible to support their points. John accused Mary of not submitting to his authority as the head of the household, referencing Ephesians 5:22-24, while Mary fired back with Matthew 19:6, emphasizing the importance of faithfulness in marriage. As their voices grew louder and emotions ran higher, it became clear that their differences were not going to be easily resolved. The couple\'s once harmonious relationship now seemed at risk of falling apart as they remained entrenched in their respective interpretations of scripture.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:15:19',NULL),(24,'cjuj7klz2jtsxz',3,'Stonewalling','Noted by complete withdrawal from the conversation, silent treatment, or physical departure.','Stonewalling, a form of communication breakdown in which one partner withdraws and refuses to engage in meaningful dialogue, goes against the biblical principles of love, respect, and understanding within a marriage. In Ephesians 4:26-27, it says, \"In your anger do not sin: Do not let the sun go down while you are still angry, and do not give the devil a foothold.\" Stonewalling can lead to unresolved conflict, bitterness, and distance in the relationship, and is not in alignment with the biblical call to reconcile and communicate openly with one another.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:15:12',NULL),(25,'cjuj7klz2jtsy0',3,'Blame','Evident when one party consistently points fingers at others for problems without self-reflection.','In times of conflict and blame within a relationship, it is important to remember the teachings of the Bible. Ephesians 4:32 reminds us to \"Be kind to one another, tenderhearted, forgiving one another, as God in Christ forgave you.\" Rather than placing blame on each other, it is crucial to show love, forgiveness, and understanding towards one another, just as God has shown us mercy and grace. By following these teachings, couples can strengthen their relationship and overcome challenges together with the guidance of God\'s word.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:15:05',NULL),(26,'cjuj7klz2jtsy1',3,'Disrespect','Seen in demeaning language, gestures, or actions that degrade the other person.','Disrespect between a couple goes against the biblical principles of love, honor, and mutual respect in marriage. Ephesians 5:33 instructs husbands to love their wives as themselves and wives to respect their husbands. When disrespect creeps into a relationship, it can lead to resentment, communication breakdown, and ultimately the deterioration of the marriage. It is important for couples to remember the importance of treating each other with kindness and consideration, as outlined in the teachings of the Bible, in order to maintain a healthy and harmonious relationship.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:14:58',NULL),(27,'cjuj7klz2jtsy2',3,'Provocation','Deliberate actions or words intended to elicit an angry or heated response.','As they argued over their differing beliefs and interpretations of the Bible, she couldn\'t help but feel frustrated with his narrow-mindedness and unwillingness to consider other perspectives. He insisted on sticking to his literal interpretation of the text, while she believed in a more metaphorical and inclusive approach. The tension in their relationship grew as they continued to clash over their religious beliefs, unable to find common ground and respect each other\'s views.',NULL,'1','1',0,'2024-07-26 10:17:43','2024-09-09 13:14:53',NULL),(28,'cjujsplz2o5cxs',3,'Quarrel','This is a testing description','In the midst of their heated argument, the couple began quoting various verses from the Bible to support their opposing views on forgiveness and love. The wife claimed that Jesus taught to turn the other cheek and forgive seventy times seven, while the husband insisted that the Bible also emphasized the importance of justice and standing up for oneself. As their voices grew louder and emotions ran high, they both realized that simply reciting scripture was not enough to resolve their conflict, and they needed to find a way to communicate and listen to each other with compassion and understanding.',NULL,'1','1',0,'2024-07-26 12:18:40','2024-09-09 13:14:37',NULL),(29,'cjuni5lz8680lh',NULL,'Quarrel ',NULL,'The couple had been arguing for what seemed like hours, their voices raised and their words sharp. In a moment of frustration, the man threw his hands up and exclaimed, \"Why can\'t you just submit to me like the Bible says? Ephesians 5:22 clearly states, \'Wives, submit yourselves to your own husbands as you do to the Lord.\'\" The woman, equally angry, retorted, \"And what about Ephesians 5:25, where it says, \'Husbands, love your wives, just as Christ loved the church and gave himself up for her\'? Maybe you should try showing me some love and respect first!\" The argument continued, each trying to justify their stance using the words of the Bible.',NULL,'0','1',0,'2024-07-30 08:43:28','2024-07-30 09:08:57','2024-07-30 09:08:57'),(30,'cju3a3fm13znym0',NULL,'Deception',NULL,'In the Bible, deception between couples is seen as a betrayal of trust and a violation of the commandment to love one another. One notable example is the deception of Jacob by his wife, Rachel, who tricked him into marrying her sister, Leah. The deceit caused discord and strife in their marriage, leading to a breakdown of trust and a strained relationship. The Bible teaches that honesty and transparency are key components of a healthy and strong union, and that deception ultimately leads to consequences that can damage the marriage and the individuals involved.',NULL,'0','1',0,'2024-09-15 19:48:15','2024-09-15 19:48:15',NULL),(31,'cju4oynm1ceklgr',NULL,'Missing ',NULL,'In the Bible, marriage is considered a sacred covenant between a husband and wife, founded on love, respect, and mutual submission. When communication breaks down and trust is eroded, it can create a void between the couple, leading to feelings of isolation and disconnection. It is important for couples to actively work towards bridging this gap by seeking forgiveness, practicing forgiveness, and returning to the solid foundation of their faith to rebuild and strengthen their relationship. Through prayer, open communication, and a willingness to humble themselves before God and each other, couples can find healing and restoration in their marriage.',NULL,'0','1',0,'2024-09-21 17:07:42','2024-09-21 17:07:42',NULL);
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatgpt`
--

DROP TABLE IF EXISTS `chatgpt`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatgpt` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `user_id` int unsigned NOT NULL,
  `type` enum('pray','questions') NOT NULL,
  `question` text NOT NULL,
  `topic` varchar(255) DEFAULT NULL,
  `context` text,
  `answer` text NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `chatgpt_slug_unique` (`slug`),
  KEY `chatgpt_user_id_foreign` (`user_id`),
  CONSTRAINT `chatgpt_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatgpt`
--

LOCK TABLES `chatgpt` WRITE;
/*!40000 ALTER TABLE `chatgpt` DISABLE KEYS */;
INSERT INTO `chatgpt` VALUES (2,'cjujsplz2oc8dh',10,'questions','I had a fight with my husband how can I breakup?','Fight and abuse','He\'s very abusive','I acknowledge your difficult situation and commend you for seeking guidance. It\'s important to prioritize your safety and well-being in relationships, especially when faced with abuse.\n\nScripture for Guidance: Ephesians 5:25-28 (NIV) teaches, \"Husbands, love your wives, just as Christ loved the church and gave himself up for her... In this same way, husbands ought to love their wives as their own bodies. He who loves his wife loves himself.\" This verse emphasizes the importance of love, respect, and sacrificial care in marriage.\n\nPractical Steps:\n1. Seek support: Reach out to a trusted friend, family member, counselor, or domestic violence hotline for guidance and assistance.\n2. Safety plan: Create a safety plan with specific steps to protect yourself in case of abusive situations. This may include having a bag packed with essentials, knowing where to go for help, or setting up a code word with a trusted person.\n3. Seek legal advice: Consult with a lawyer who specializes in family law to understand your rights and options for separation or divorce.\n4. Establish boundaries: Clearly communicate your boundaries to your husband and seek professional help if needed for a mediated conversation or intervention.\n\nEncouragement: Remember that you deserve to be in a loving and respectful relationship. It takes courage to take steps towards healing and change. Entrust your situation to God and trust that He will guide and protect you through this challenging time.','2024-07-26 12:24:01','2024-07-26 12:24:01',NULL),(3,'cjumeglz6p2xgf',10,'pray','I had a fight with my husband how can I breakup?',NULL,NULL,'I\'m sorry to hear that you are going through a difficult time in your marriage. Instead of seeking to break up, I encourage you to turn to God in prayer for guidance and strength. The Bible teaches us to love one another, forgive each other, and work towards reconciliation. Consider seeking counseling or speaking with a pastor to help navigate through this challenging situation. Remember, God is with you always, and He can bring healing to your relationship.','2024-07-29 07:55:51','2024-07-29 07:55:51',NULL),(4,'cjumeolz6p66pj',10,'pray','I had a fight with my husband how can I breakup?',NULL,NULL,'I\'m sorry to hear about the conflict with your husband. I pray that God grants you wisdom and guidance in resolving your differences and finding peace in your relationship. Remember the words of Colossians 3:13: \"Bear with each other and forgive one another if any of you has a grievance against someone. Forgive as the Lord forgave you.\" May you find strength and clarity in His teachings.','2024-07-29 07:58:23','2024-07-29 07:58:23',NULL),(5,'cjumehlz6qrxvb',9,'pray','I want money',NULL,NULL,'The Bible teaches us in 1 Timothy 6:10, \"For the love of money is a root of all kinds of evil.\" It is important to seek wealth in a way that honors God and helps others, rather than being consumed by a desire for money. Prayerfully consider how you can use your resources for good and trust in God to provide for your needs.','2024-07-29 08:43:18','2024-07-29 08:43:18',NULL),(6,'cjumdzlz6qt652',9,'questions','fight with wife','fight with wifey','fight with wife','I\'m sorry to hear that you\'re going through a tough time with your wife. It\'s important to approach conflicts with understanding and patience. In times of disagreement, turning to scripture can offer guidance and help in resolving conflicts in a healthy way.\n\nScripture: \"Do not let any unwholesome talk come out of your mouths, but only what is helpful for building others up according to their needs, that it may benefit those who listen.\" - Ephesians 4:29\n\nApplication: When faced with conflicts with your wife, strive to communicate kindly and considerately. Instead of exchanging hurtful words, focus on building each other up and finding solutions together. Remember to listen actively and empathetically to her perspective.\n\nPractical Advice: \n1. Take a moment to calm down before addressing the issue.\n2. Use \"I\" statements to express your feelings without blaming.\n3. Practice active listening to understand her point of view.\n4. Look for compromises and solutions that benefit both of you.\n\nEncouragement: Remember that conflicts are a normal part of any relationship, and working through them can strengthen your bond with your wife. Stay committed to resolving conflicts with love and understanding.','2024-07-29 08:44:15','2024-07-29 08:44:15',NULL),(7,'cju11xklzjo77vv',16,'pray','sam@yopmail.com',NULL,NULL,'I\'m sorry, I didn\'t understand your question. Could you please rephrase it or provide more details?','2024-08-07 09:52:12','2024-08-07 09:52:12',NULL),(8,'cju14dblzmq1rpb',25,'pray','sam@yopmail.com',NULL,NULL,'I\'m sorry, I don\'t have information on that email address. How can I assist you today with any prayers or queries regarding the Bible?','2024-08-09 13:07:16','2024-08-09 13:07:16',NULL),(9,'cju5mklzv7b1ra',26,'pray','sam@yopmail.com',NULL,NULL,'I\'m sorry, I can only provide answers to prayers or questions related to prayers with references to the bible. How can I assist you in that regard?','2024-08-15 11:32:32','2024-08-15 11:32:32',NULL),(10,'cju5mklzwewl8h',30,'pray','sam@yopmail.com',NULL,NULL,'I\'m here to answer any prayers or pray questions you may have. How can I assist you today?','2024-08-16 07:53:00','2024-08-16 07:53:00',NULL),(11,'cju2gddm0m8vj60',47,'questions','how to be patient in relationship','confilc','relationship','**Scriptural Guidance on Patience in Relationships**\n\n*\"Love is patient, love is kind. It does not envy, it does not boast, it is not proud.\"* - 1 Corinthians 13:4 (NIV)\n\n**Practical Steps to Practice Patience in Relationships:**\n\n1. **Reflect on the Meaning of Love:** Understand that patience is a crucial aspect of love. Consider how patience can strengthen your relationship and bring you closer to your partner.\n\n2. **Communicate Openly:** Share your feelings and concerns with your partner in a calm and respectful manner. Effective communication can help prevent misunderstandings and conflicts.\n\n3. **Practice Empathy:** Put yourself in your partner\'s shoes to better understand their perspective. Empathy can help you respond with patience and compassion.\n\n4. **Take Time to Unwind:** When faced with challenges or conflicts, give yourself space to cool down before addressing the issue. This can prevent impulsive reactions and allow you to respond patiently.\n\n5. **Seek Guidance:** Consider seeking counsel from a trusted mentor, therapist, or spiritual advisor to navigate challenges in your relationship with patience and wisdom.\n\n**Encouragement:**\nRemember that practicing patience in your relationship is a journey that requires effort and understanding. By anchoring your actions in love and patience, you can nurture a healthy and fulfilling partnership. Trust in God\'s guidance and remain steadfast in your commitment to cultivate patience in your relationship.','2024-09-03 09:46:14','2024-09-03 09:46:14',NULL),(12,'cju2gddm0m948sz',47,'pray','patient with patner',NULL,NULL,'\"Love is patient, love is kind.\" - 1 Corinthians 13:4','2024-09-03 09:53:00','2024-09-03 09:53:00',NULL),(13,'cju2gddm0m94xvb',47,'pray','when he make me upset i can’t control my emotion',NULL,NULL,'It is important to remember the words from Proverbs 15:1 which says \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" When you are upset and struggling to control your emotions, turn to God in prayer for strength and guidance. Ask Him to help you respond with love and patience, even in difficult situations. Seek His wisdom to help you navigate your emotions in a healthy and constructive way. Trust in the Lord to help you through these challenging moments.','2024-09-03 09:53:33','2024-09-03 09:53:33',NULL),(14,'cju2gddm0prx1no',22,'pray','I need help praying for lying. I find myself lying in all circumstances over things that I don’t want to lie about.',NULL,NULL,'In your prayers, you can ask God for forgiveness for your past lies and for the strength to resist the temptation to lie in the future. Reflect on Proverbs 12:22 which says, \"The LORD detests lying lips, but he delights in people who are trustworthy.\" Pray for guidance and the ability to be honest in all situations, knowing that God values truthfulness.','2024-09-05 21:02:35','2024-09-05 21:02:35',NULL),(15,'cju2gddm0prxgov',22,'pray','can you create a prayer for me for lying',NULL,NULL,'Dear Heavenly Father,\n\nI come before you seeking forgiveness for the sin of lying. Help me Lord to always speak the truth with love and integrity. May your Spirit guide my words and actions, so that I may be a reflection of your truth and light in this world.\n\nIn Jesus\' name, I pray. Amen.\n\nReference:\nProverbs 12:22 - \"The Lord detests lying lips, but he delights in people who are trustworthy.\"','2024-09-05 21:02:55','2024-09-05 21:02:55',NULL),(16,'cju2gddm0psfkfp',22,'pray','I need a prayer for patience. I am impatience with my children and husband.',NULL,NULL,'\"Lord, help me to be patient with my children and husband, just as you are patient with me. Teach me to slow down, listen, and show love even in challenging moments. May your peace fill my heart and guide my actions. Amen.\" \n\nReference:\nGalatians 5:22-23 - \"But the fruit of the Spirit is love, joy, peace, patience, kindness, goodness, faithfulness, gentleness, self-control; against such things there is no law.\"','2024-09-05 21:17:00','2024-09-05 21:17:00',NULL),(17,'cju2gddm0usl1dx',14,'pray','yo',NULL,NULL,'Hello! How can I assist you today with prayers or questions related to the Bible?','2024-09-09 09:20:06','2024-09-09 09:20:06',NULL),(20,'cju3a3fm0xqr1zx',64,'pray','The I',NULL,NULL,'I can help with prayers or questions related to prayer if you would like.','2024-09-11 10:52:06','2024-09-11 10:52:06',NULL),(21,'cju3a3fm102x5y2',37,'pray','my wife bought a car without telling me what should I do?',NULL,NULL,'You can pray for wisdom and guidance in handling this situation. Seek God\'s help in communicating with your wife and finding a resolution to the issue. Proverbs 3:5-6 says, \"Trust in the Lord with all your heart, and do not lean on your own understanding. In all your ways acknowledge him, and he will make straight your paths.\"','2024-09-13 02:08:19','2024-09-13 02:08:19',NULL),(22,'cju3a3fm13zuesa',75,'pray','fighting for marriage',NULL,NULL,'In the Bible, Ephesians 5:25-33 talks about the relationship between a husband and wife, emphasizing love, respect, and mutual submission. It suggests that a successful marriage requires both partners to fight for each other, just as Christ fought for the church. Through prayer and seeking guidance from God, you can strengthen your marriage and overcome challenges.','2024-09-15 19:53:16','2024-09-15 19:53:16',NULL),(23,'cju4btpm1856w04',87,'questions','fun','fun','fun','It\'s great to prioritize fun and enjoyment in life! To find guidance on experiencing joy and fun, we can turn to the Bible for wisdom.\n\n### Scripture:\nEcclesiastes 3:4 (NIV) says, \"a time to weep and a time to laugh, a time to mourn and a time to dance.\"\n\n### Explanation:\nThis verse reminds us that there is a time for everything, including moments for joy and fun. It\'s essential to balance work, responsibilities, and leisure to enjoy life to the fullest.\n\n### Application:\n1. **Schedule time for fun:** Make sure to set aside time in your schedule for activities that bring you joy. Whether it\'s spending time with loved ones, enjoying a hobby, or trying something new, allocate time for fun in your routine.\n   \n2. **Be present in the moment:** When engaging in fun activities, allow yourself to be fully present in the moment. Put away distractions and focus on enjoying the experience.\n\n3. **Gratitude:** Practice gratitude for the fun moments in your life. Reflect on the blessings of laughter, joy, and shared experiences.\n\n### Encouragement:\nEmbracing fun and joy in life is essential for our well-being and overall happiness. Remember to prioritize moments of laughter, relaxation, and enjoyment in your daily life. May you find fulfillment in the simple pleasures of life and create cherished memories along the way!','2024-09-18 17:34:01','2024-09-18 17:34:01',NULL),(24,'cju4oynm1955dey',89,'pray','sam@yopmail.com',NULL,NULL,'I\'m sorry, I can only provide answers to prayers/pray questions or queries with reference to the bible. How can I assist you today with a prayer or verse?','2024-09-19 10:20:36','2024-09-19 10:20:36',NULL),(25,'cju4oynm1955ni1',89,'pray','apexiq',NULL,NULL,'I\'m sorry, I\'m not familiar with \"apexiq.\" How can I assist you today?','2024-09-19 10:20:49','2024-09-19 10:20:49',NULL),(26,'cju4oynm19msem2',92,'pray','how do i deal with temptation?',NULL,NULL,'One way to deal with temptation is to follow the example of Jesus when He was tempted by the devil. In Matthew 4:1-11, Jesus countered each temptation with scriptures from the Bible to resist and overcome the temptations. By immersing yourself in the Word of God and relying on His wisdom and strength, you can resist temptation and stand firm in your faith.','2024-09-19 18:34:24','2024-09-19 18:34:24',NULL),(27,'cju4oynm19n5jst',92,'pray','how do i resist sex',NULL,NULL,'One way to resist sexual temptation is to rely on the strength and guidance of God. In 1 Corinthians 10:13, it says, \"No temptation has overtaken you except what is common to mankind. And God is faithful; he will not let you be tempted beyond what you can bear. But when you are tempted, he will also provide a way out so that you can endure it.\" Pray to God for strength and wisdom to resist sexual temptation and ask Him to help you in moments of weakness.','2024-09-19 18:44:38','2024-09-19 18:44:38',NULL),(28,'cju4oynm1aiqzta',94,'pray','My husband and I are struggling financially and I hope that we get better financially',NULL,NULL,'James 1:5-6 \"If any of you lacks wisdom, you should ask God, who gives generously to all without finding fault, and it will be given to you. But when you ask, you must believe and not doubt, because the one who doubts is like a wave of the sea, blown and tossed by the wind.\"\n\nPray to God for wisdom and guidance in managing your finances, and trust in His provision for your needs.','2024-09-20 09:29:06','2024-09-20 09:29:06',NULL),(29,'cju4oynm1aisaku',94,'questions','How do me and my husband get better at our fin','Finance','He wants to go to Wyoming for six months to make buddy','**Scriptural Encouragement for Financial Planning:**\n\nAcknowledging your concern for improving financial matters while navigating a decision about your husband working in Wyoming, it\'s important to seek guidance from Scripture on financial stewardship.\n\n**Proverbs 21:5 (NIV)** advises, \"The plans of the diligent lead to profit as surely as haste leads to poverty.\" This verse highlights the importance of setting intentional financial goals and making wise plans.\n\n**Practical Steps Towards Financial Improvement:**\n\n1. **Budget Together:** Sit down and create a budget that aligns with your financial goals. Track your expenses and income to understand where your money is going.\n\n2. **Emergency Fund:** Set aside money for emergencies to avoid financial stress during unexpected situations.\n\n3. **Seek Additional Income:** Consider ways both you and your husband can increase your income, either through side jobs, investments, or other means.\n\n4. **Communication:** Have open and honest discussions with your husband about your financial situation, goals, and concerns. Work together as a team to make financial decisions.\n\n5. **Support His Opportunity:** If your husband is determined to work in Wyoming for six months, discuss the financial implications and plan accordingly. Consider how this opportunity can contribute to your long-term financial goals.\n\n**Encouragement:**\n\nRemember that God is faithful, and He cares about every aspect of your life, including your finances. By aligning your financial decisions with biblical principles and working together as a team, you can improve your financial situation. Trust in God\'s provision and guidance as you navigate through this season of financial planning.','2024-09-20 09:30:07','2024-09-20 09:30:07',NULL),(30,'cju4oynm1c4l66j',97,'pray','marriage',NULL,NULL,'\"Submit to one another out of reverence for Christ.\" - Ephesians 5:21','2024-09-21 12:28:12','2024-09-21 12:28:12',NULL);
/*!40000 ALTER TABLE `chatgpt` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_module_permissions`
--

DROP TABLE IF EXISTS `cms_module_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_module_permissions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_group_id` int unsigned DEFAULT NULL,
  `user_id` int unsigned DEFAULT NULL,
  `cms_module_id` int unsigned DEFAULT NULL,
  `is_add` enum('1','0') DEFAULT '0',
  `is_view` enum('1','0') DEFAULT '0',
  `is_update` enum('1','0') DEFAULT '0',
  `is_delete` enum('1','0') DEFAULT '0',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cms_module_permissions_user_group_id_foreign` (`user_group_id`),
  KEY `cms_module_permissions_user_id_foreign` (`user_id`),
  KEY `cms_module_permissions_cms_module_id_foreign` (`cms_module_id`),
  CONSTRAINT `cms_module_permissions_cms_module_id_foreign` FOREIGN KEY (`cms_module_id`) REFERENCES `cms_modules` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cms_module_permissions_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cms_module_permissions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_module_permissions`
--

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

--
-- Table structure for table `cms_modules`
--

DROP TABLE IF EXISTS `cms_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_modules` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int DEFAULT '0',
  `name` varchar(100) DEFAULT NULL,
  `route_name` varchar(100) DEFAULT NULL,
  `icon` varchar(100) DEFAULT NULL,
  `status` enum('1','0') DEFAULT '1',
  `sort_order` decimal(8,2) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_modules`
--

LOCK TABLES `cms_modules` WRITE;
/*!40000 ALTER TABLE `cms_modules` DISABLE KEYS */;
INSERT INTO `cms_modules` VALUES (1,0,'Cms Roles Management','cms-roles-management.index','fa fa-key','1',1.00,'2024-07-26 10:17:43',NULL,NULL),(2,0,'Cms Users Management','cms-users-management.index','fa fa-users','1',2.00,'2024-07-26 10:17:43',NULL,NULL),(3,0,'Application Setting','admin.application-setting','fa fa-cog','1',3.00,'2024-07-26 10:17:43',NULL,NULL),(4,0,'Users Management','app-users.index','fa fa-users','1',4.00,'2024-07-26 10:17:43',NULL,NULL),(5,0,'Content Management','content-management.index','fa fa-tasks','1',5.00,'2024-07-26 10:17:43',NULL,NULL),(6,0,'FAQ\'s','faq.index','fa fa-question-circle-o','1',6.00,'2024-07-26 10:17:43',NULL,NULL);
/*!40000 ALTER TABLE `cms_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `content_managements`
--

DROP TABLE IF EXISTS `content_managements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `content_managements` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `slug` varchar(150) NOT NULL,
  `content` text,
  `status` enum('1','0') DEFAULT '1',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `content_managements_slug_unique` (`slug`),
  KEY `content_managements_slug_index` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `content_managements`
--

LOCK TABLES `content_managements` WRITE;
/*!40000 ALTER TABLE `content_managements` DISABLE KEYS */;
INSERT INTO `content_managements` VALUES (1,'About US','about-us','<p>Kingdom Couples is a Christ-centered app designed with Christian couples in mind. We all go through disagreements, misunderstandings, and arguments, but how do we handle them in a biblical way, in the way that God intended? That&rsquo;s where we come in. Our <strong>Reflect &amp; Resolve</strong> feature allows couples to reflect on current or past conversations within their relationships, comparing their experiences to what the Word of God says. We provide practical tools to help you resolve these situations and move forward in a stronger way &ndash; Together as One!</p>\r\n\r\n<p>Our app also features a <strong>Spiritual Growth</strong> module that offers targeted audio content released weekly, addressing specific needs in your life and relationships to help strengthen areas that need attention. Additionally, our <strong>Pray Section</strong> guides those who may not know how to pray by providing structured prayers for specific topics, and the <strong>Questions Section</strong> offers biblically grounded answers to personal questions about life and relationships.</p>\r\n\r\n<p>Join us as we grow together in Christ!</p>\r\n','1','2024-07-26 10:17:43','2024-08-09 07:41:39',NULL),(2,'Privacy Policy','privacy-policy','<p>The (Kingdom Couples) values its users&#39; privacy. This Privacy Policy (&quot;Policy&quot;) will help you understand how we collect and use personal information from those who visit our website and app or make use of our online facilities and services and what we will do with the information we collect. Our Policy has been designed and created to ensure those affiliated with (Kingdom Couples) of our commitment and realization of our obligation not only to meet but exceed most existing privacy standards.&nbsp;</p>\r\n\r\n<p>We reserve the right to make changes to this Policy at any given time. If you want to make sure that you are up to date with the latest changes, we advise you to frequently visit this page. If at any point in time (Kingdom Couples) decides to make use of any personally identifiable information on file in a manner vastly different from what was stated when this information was initially collected, the user or users shall be promptly notified by email. Users at that time shall have the option as to whether to permit the use of their information in this separate manner.&nbsp;</p>\r\n\r\n<p>This Policy applies to (Kingdom Couples), and it governs any data collection and usage by us. Through the use of (Kingdom Couples).com, you are therefore consenting to the data collection procedures expressed in this Policy.&nbsp;</p>\r\n\r\n<p>Please note that this Policy does not govern the collection and use of information by companies that (Kingdom Couples) does not control, nor by individuals not employed or managed by us. If you visit a website that we mention or link to, be sure to review its privacy policy before providing the site with information. It is highly recommended and suggested that you review the privacy policies and statements of any website you choose to use or frequent to better understand the way in which websites garner, make and use of and share the information collected.</p>\r\n\r\n<p>Specifically, this Policy will inform you of the following:</p>\r\n\r\n<ol>\r\n	<li>What personally identifiable information collected from you through our website or app;</li>\r\n	<li>Why we collect personally identifiable information and the legal basis for such collection;</li>\r\n	<li>How we use the collected information and with whom it may be shared;</li>\r\n	<li>What choices are available to you regarding the use of your data; and the security procedures in place to protect the misuse of your information?</li>\r\n</ol>\r\n\r\n<p><strong>Information We Collect</strong></p>\r\n\r\n<p>It is always up to you whether to disclose personally identifiable information to us; although you may elect not to do so, we reserve the right not to register you as a user or provide you with any products or services.&nbsp;</p>\r\n\r\n<p>In addition, (Kingdom Couples) may have the occasion to collect non-personal anonymous demographic information, such as age, gender, household income, political affiliation, race, and religion, as well as the type of browser you are using, IP address, or type of operating system, which will assist us in providing and maintaining superior quality service.</p>\r\n\r\n<p><strong>Why We Collect Information and For How Long</strong></p>\r\n\r\n<p><strong>We are collecting your data for several reasons:</strong></p>\r\n\r\n<ul>\r\n	<li>To better understand your needs and provide you with the services you have requested.</li>\r\n	<li>To fulfill our legitimate interest in improving our services and products.</li>\r\n	<li>To customize our website and app according to your personal preferences.</li>\r\n</ul>\r\n\r\n<p>The data we collect from you will be stored for no longer than necessary. The length of time we retain said information would be determined based upon the following criteria: the length of time your personal information remains relevant; the length of time it is reasonable to keep records to demonstrate that we have fulfilled our duties and obligations; and limitation periods within which claims might be made; any retention periods prescribed by law or recommended by regulators, professional bodies or associations; the type of contract we have with you, the existence of your consent, and our legitimate interest in keeping such information as stated in this Policy.</p>\r\n\r\n<p><strong>Use of Information Collected</strong></p>\r\n\r\n<p>(Kingdom Couples) does not now, or will it in the future, sell, rent or lease any of its customer lists and names to any third parties.&nbsp;</p>\r\n\r\n<p>(Kingdom Couples) may collect and make use of personal information to assist in the operation of our website and to ensure delivery of the services you need and request. At times, we may find it necessary to use personally identifiable information as a means to keep you informed of other possible products and services that may be available to you from (Kingdom Couples).&nbsp;</p>\r\n\r\n<p>(Kingdom Couples) may also be in contact with you regarding completing surveys and research questionnaires related to your opinion of current or potential future services that may be offered.</p>\r\n\r\n<p><strong>Disclosure of Information</strong></p>\r\n\r\n<p>(Kingdom Couples) may not use or disclose the information provided by you except under the following circumstances:</p>\r\n\r\n<ul>\r\n	<li>As necessary to provide services.</li>\r\n	<li>In other ways described in this Policy or to which you have been otherwise contacted.</li>\r\n	<li>In the aggregate with other information in such a way so that your identity cannot reasonably be determined, except the information you are posting.</li>\r\n	<li>As necessary to enforce the Terms of Service.</li>\r\n	<li>As necessary to maintain, safeguard and preserve all the rights and property of the (Kingdom Couples).</li>\r\n</ul>\r\n\r\n<p><strong>Non-Marketing Purposes</strong></p>\r\n\r\n<p>(Kingdom Couples) greatly respects your privacy. We do maintain and reserve the right to contact you if needed for non-marketing purposes (such as bug alerts, security breaches, account issues, and changes in (Kingdom Couples) products and services). In certain circumstances, we may use our website, newspapers, or other public means to post a notice.&nbsp;</p>\r\n\r\n<p><strong>Children Under the Age of 13</strong></p>\r\n\r\n<p>(Kingdom Couples) website and app are not directed to and do not knowingly collect personally identifiable information from children under the age of thirteen (13). If it is determined that such information has been inadvertently collected on anyone under the age of thirteen (13), we shall immediately take necessary steps to ensure that such information is deleted from our system&#39;s database or in the alternative, that verifiable parental consent is obtained for the use and storage of such information. Anyone under the age of thirteen (13) must seek and obtain parent or guardian permission to use this website.</p>\r\n\r\n<p><strong>Unsubscribe or Opt-out</strong></p>\r\n\r\n<p>All users and visitors to our website have the option to discontinue receiving communication from us by way of email or newsletter. To discontinue or unsubscribe from our website, please send an email that you wish to unsubscribe (App Email). If you wish to unsubscribe or opt-out from any third-party websites, you must go to that specific website to unsubscribe or opt-out. (Kingdom Couples) will continue to adhere to this Policy with respect to any personal information previously collected.</p>\r\n\r\n<p><strong>Links to Other Websites</strong></p>\r\n\r\n<p>Our website does contain links to affiliates and other websites.&nbsp; (Kingdom Couples) does not claim nor accept responsibility for any privacy policies, practices, and procedures of other websites. Therefore, we encourage all users and visitors to be aware when they leave our website and to read the privacy statements of every website that collects personally identifiable information. This Privacy Policy Agreement applies only solely to the information collected by our website.</p>\r\n\r\n<p><strong>Notice to European Union Users</strong></p>\r\n\r\n<p>(Kingdom Couples) operations are located primarily in the United States. If you provide information to us, the information will be transferred out of the European Union (EU) and sent to the United States. (The adequacy decision on the EU-US Privacy became operational on (app date). This framework protects the fundamental rights of anyone in the EU whose personal data is transferred to the United States for commercial purposes. It allows the free transfer of data to companies that are certified in the US under the Privacy Shield.)&nbsp; By providing us with personal information, you consent to its storage and use as described in this Policy.</p>\r\n\r\n<p><strong>Security</strong></p>\r\n\r\n<p>(Kingdom Couples) take precautions to protect your information. When you submit sensitive information via the website, your information is protected both online and offline. You can verify this by looking for &quot;HTTPS&quot; at the beginning of the address of the webpage.</p>\r\n\r\n<p><strong>Acceptance of Terms</strong></p>\r\n\r\n<p>By using this website and app, you are hereby accepting the terms and conditions stipulated within the Privacy Policy Agreement. If you are not in agreement with our terms and conditions, then you should refrain from further use of our sites. In addition, your continued use of our website and app following the posting of any updates or changes to our terms and conditions shall mean that you agree and are in acceptance of such changes.</p>\r\n\r\n<p>&nbsp;</p>\r\n','1','2024-07-26 10:17:43','2024-08-09 07:41:22',NULL),(3,'Terms & Conditions','terms-conditions','<p><strong>Agreement Between User and (Kingdom Couples)</strong></p>\r\n\r\n<p>Welcome to the (Kingdom Couples). The (Kingdom Couples) (the &quot;Site&quot;) website and the app is comprised of various web pages operated by (Kingdom Couples). (Kingdom Couples) is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein (the &quot;Terms&quot;). Your use of (Kingdom Couples) constitutes your agreement to all such terms. Please read these terms carefully, and keep a copy for your reference.&nbsp;</p>\r\n\r\n<p><strong>Privacy</strong></p>\r\n\r\n<p>Your use of (Kingdom Couples) is subject to (Kingdom Couples) Privacy Policy. Please review our Privacy Policy, which also governs the Site and informs users of our data collection practices.</p>\r\n\r\n<p><strong>Electronic Communications</strong></p>\r\n\r\n<p>Visiting (Kingdom Couples) or sending emails to (Kingdom Couples) constitutes electronic communications. You consent to receive electronic communications, and you agree that all agreements, notices, disclosures, and other communications that we provide you electronically, via email, and on the website and app satisfy any legal requirement that such communications be in writing.</p>\r\n\r\n<p><strong>Your Account</strong></p>\r\n\r\n<p>If you use this site, you are responsible for maintaining the confidentiality of your account and password and for restricting access to your computer, and you agree to accept responsibility for all activities that occur under your account or password. You may not assign or otherwise transfer your account to any other person or entity. You acknowledge that (Kingdom Couples) is not responsible for third-party access to your account that results from theft or misappropriation of your account. (Kingdom Couples) and its associates reserve the right to refuse or cancel service, terminate accounts, or remove or edit content at our sole discretion.&nbsp;</p>\r\n\r\n<p><strong>Children Under Thirteen</strong></p>\r\n\r\n<p>If you are under the age of thirteen (13), you must ask your parent or guardian for permission to use this website and app. If you are a parent and you have questions regarding our data collection practices, please review the Privacy Policy and contact us using the information provided at the end of this agreement.</p>\r\n\r\n<p><strong>Links to Third-Party Sites/Services</strong></p>\r\n\r\n<p>(Kingdom Couples) may contain links to other websites (&quot;Linked Sites&quot;). The Linked Sites are not under the control of (Kingdom Couples), and (Kingdom Couples) is not responsible for the contents of any Linked Sites or changes and updates to a Linked Site. (Kingdom Couples) is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by (Kingdom Couples) of the site or any association with its operators.&nbsp;&nbsp;&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>No Unlawful or Prohibited Use/Intellectual property&nbsp;</strong></p>\r\n\r\n<p>You are granted a non-exclusive, non-transferable, revocable license to access and use (Kingdom Couples) strictly in accordance with these terms of use. As a condition of use of the Site, you warrant to (Kingdom Couples) that you will not use the Site for any purpose that is unlawful or prohibited by these Terms. You may not use the Site in any manner which could damage, disable, overburden, or impair the Site or on interfere with any other party&#39;s use and enjoyment of the Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Site.&nbsp;</p>\r\n\r\n<p>All content included as part of the Service, such as text, graphics, logos, images, as well as the compilation thereof, and any software used on the Site, is the property of (Kingdom Couples) or its suppliers and protected by copyright and other laws that protect intellectual property and proprietary rights. You agree to observe and abide by all copyright and other proprietary notices, legends, or other restrictions contained in any such content and will not make any changes to it.&nbsp;</p>\r\n\r\n<p>You will not modify, publish, transmit, reverse engineer, participate in the transfer or sale, create derivative works, or in any way exploit any of the content, in the whole or in part, found on the Site.&nbsp; (Kingdom Couples) content is not for resale. Your use of the Site does not entitle you to make any unauthorized use of any protected content. In particular, you will not delete or alter any proprietary rights or attribution notices in any content. You will use protected content solely for your personal use and will make no other use of the content without the express written permission of (Kingdom Couples) and the copyright owner. You agree that you do not acquire any ownership rights in any protected content. We do not grant you any licenses, express or implied, to the intellectual property of (Kingdom Couples) or our licensor except as expressly authorized by these Terms.</p>\r\n\r\n<p><strong>Use of Communication Services</strong></p>\r\n\r\n<p>The Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, &quot;Communication Services&quot;). You agree to use the Communication Services only to post, send, and receive messages and material that are proper and related to the particular Communication Service.&nbsp;</p>\r\n\r\n<p>By way of example, and not as a limitation, you agree that when using a Communication Service, you will not: defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others; publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information; upload files that contain software or other material protected by intellectual property laws ( or by rights of privacy and publicity) unless you own or control the rights thereto or have received all the necessary consents; upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another&#39;s computer; advertise&nbsp; or offer to sell or buy any goods or services for any purpose, unless such Communication Service specifically allows such messages; conduct or forward surveys, contests, pyramid schemes or chain letters; download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner; falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded;&nbsp; restrict or inhibit any other user from using and enjoying the Communication Services; violate any code of conduct or other guidelines which may be applicable for any particular Communication Service; harvest or otherwise collect information about others, including e-mail addresses, without their consent; violate any applicable laws or regulations.&nbsp;</p>\r\n\r\n<p>(Kingdom Couples) has no obligation to monitor the Communication Services. However, (Kingdom Couples) reserves the right to review materials posted to a Communication Service and remove any materials at its sole discretion. (Kingdom Couples) reserves the right to terminate your access to any of the Communication Services at any time without notice for any reason whatsoever.&nbsp;</p>\r\n\r\n<p>(Kingdom Couples) reserves the right at all times to disclose any information necessary to satisfy any applicable law, regulation, legal process, or governmental request, or to edit, refuse to post, or remove any information or materials, in whole or in part, in (Kingdom Couples) sole discretion.</p>\r\n\r\n<p>Always use caution when giving out any personally identifying information about yourself or your children in any Communication Service. (Kingdom Couples) does not control or endorse the content, messages, or information found in any Communication Service, and therefore, (Kingdom Couples) specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts have not authorized (Kingdom Couples) spokespersons, and their views do int necessarily reflect those of (Kingdom Couples).</p>\r\n\r\n<p>Materials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction, and dissemination. You are responsible for adhering to such limitations if you upload material.&nbsp;</p>\r\n\r\n<p>Materials Provided to (Kingdom Couples) or Posted on Any (Kingdom Couples) Website.</p>\r\n\r\n<p>(Kingdom Couples) does not claim ownership of the materials you provide to (Kingdom Couples) (including feedback and suggestions) or post, upload, input, or submit to any (Kingdom Couples) Site or our associated services (collectively &quot;Submissions&quot;). However, by posting, uploading, inputting, providing, or submitting your Submissions, you are granting (Kingdom Couples), our affiliated companies, and necessary sublicensees permission to use your Submission in connection with the operation of their Internet business including, without limitation, the rights to copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.&nbsp;</p>\r\n\r\n<p>No compensation will be paid with respect to the use of your Submission as provided herein. (Kingdom Couples) is under no obligation to post or use any Submission you may provide and may remove any Submission at any time at (Kingdom Couples) sole discretion.&nbsp;</p>\r\n\r\n<p>By posting, uploading, inputting, providing, or submitting your Submission, you warrant and represent that you own or otherwise control all the rights to your Submission as described in this section, including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.</p>\r\n\r\n<p><strong>International Users</strong></p>\r\n\r\n<p>The Service is controlled, operated, and administered by (Kingdom Couples) from our offices within the USA. If you access the Service from a location outside the USA, you are responsible for compliance with all local laws. You agree that you will not use the (Kingdom Couples) Content accessed through (Kingdom Couples) in any country or in any manner prohibited by any applicable laws, restrictions, or regulations.</p>\r\n\r\n<p><strong>Indemnification</strong></p>\r\n\r\n<p>You agree to indemnify, defend and hold harmless (Kingdom Couples), its officers, directors, employees, agents, and third parties for any losses, costs, liabilities, and expenses (including reasonable attorney&#39;s fees) relating to or arising out of your use or inability to use the Site or services, any user postings made by you, your violation of any terms of this Agreement or your violation of any rights of a third party, or your violation of any applicable laws, rules or regulations. (Kingdom Couples) reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnifications by you, in which event you will fully cooperate with (Kingdom Couples) in asserting any available defenses.</p>\r\n\r\n<p><strong>Arbitration</strong></p>\r\n\r\n<p>In the event that the parties are not able to resolve any dispute between them arising out of or concerning these Terms and Conditions, or any provisions hereof, whether in contract, tort, or otherwise at law or in equity for damages of any other relief, then such dispute shall be resolved only by final and binding arbitration pursuant to the Federal Arbitration Act, conducted by a single neutral arbitrator and administered by the American Arbitration Association, or a similar arbitration service selected by the parties, in a location mutually agreed upon the parties. The arbitrator&#39;s award shall be final, and judgment may be entered upon it in any court having jurisdiction. In the event that any legal or equitable action, proceeding, or arbitration arises out of or concerns these Terms and Conditions, the prevailing party shall be entitled to recover its costs and reasonable attorney&#39;s fees. The parties agree to arbitrate all disputes and claims regarding these Terms and Conditions or any disputes arising as a result of these Terms and Conditions. The parties agree that the Federal Arbitration Act governs the interpretation and enforcement of this provision. The entire dispute, including the scope and enforceability of this arbitration provision, shall be determined by the Arbitrator. This arbitration provision shall survive the termination of these Terms and Conditions.</p>\r\n\r\n<p><strong>Class Action Waiver</strong></p>\r\n\r\n<p>Any arbitration under these Terms and Conditions will take place individually; class arbitrations and class/representative/collective actions are not permitted. THE PARTIES AGREE THAT A PARTY MAY BRING CLAIMS AGAINST THE OTHER ONLY IN EACH&#39;S INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PUTATIVE CLASS, COLLECTIVE, AND REPRESENTATIVE PROCEEDING, SUCH AS IN THE FORM OF A PRIVATE ATTORNEY GENERAL ACTION AGAINST THE OTHER. Further, unless both you and (Kingdom Couples) agree otherwise, the arbitrator may not consolidate more than one person&#39;s claims and may not otherwise preside over any form of a representative or class proceeding.</p>\r\n\r\n<p><strong>Liability Disclaimer&nbsp;&nbsp;&nbsp;&nbsp;</strong></p>\r\n\r\n<p>The information, software, products, and services included in or available through the site may include inaccuracies or typographical errors. Changes are periodically added to the information herein. (Kingdom Couples) and its suppliers may make improvements and changes to the site at any time.&nbsp;</p>\r\n\r\n<p>(Kingdom Couples) and its suppliers make no representations about the suitability, reliability, availability, timeliness, and accuracy of the information, software, products, services, and related graphics contained on the site for any purpose. To the maximum extent permitted by applicable law, all such information, software, products, services, and related graphics are provided &quot;as is&quot; without warranty or condition of any kind.&nbsp; (Kingdom Couples) and its suppliers hereby disclaim all warranties and conditions without regard to this information, software, products, services, and related graphics, including all implied warranties or conditions of merchantability, fitness for particular purpose, title, and non-infringement.&nbsp;</p>\r\n\r\n<p>To the maximum extent permitted by applicable law, in no event shall (Kingdom Couples). Its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use or performance of the site, or otherwise arising out of the use of the site, whether based on contract, tort, negligence, strict liability or otherwise, even if&nbsp; (Kingdom Couples) or any of its suppliers has been advised of the possibility of damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you. If you are dissatisfied with any portion of the site or with any of these terms of use, your sole and exclusive remedy is to discontinue using the site.</p>\r\n\r\n<p><strong>Termination/Access Restriction</strong></p>\r\n\r\n<p>(Kingdom Couples) reserves the right, in its sole discretion, to terminate your access to the Site and the related services or any portion thereof at any time without notice. To the maximum extent permitted by law, this agreement is governed by the laws of the State of Kentucky. You hereby consent to the exclusive jurisdiction and venue of courts in Kentucky in all disputes arising out of or relating to the use of the Site. Use of the Site is unauthorized in any jurisdiction that does not give effect to all provisions of these Terms, including, without limitation, this section.&nbsp;</p>\r\n\r\n<p>You agree that no joint venture, partnership, employment, or agency relationship exists between you and (Kingdom Couples) as a result of this agreement or use of the Site. (Kingdom Couples) performance of this agreement is subject to existing laws and legal processes. Nothing contained in this agreement is in derogation of (Kingdom Couples) right to comply with governmental, court, and law enforcement requests or requirements relating to your use of the Site or information provided to or gathered by (Kingdom Couples) with respect to such use.&nbsp; If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law, including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect.&nbsp;</p>\r\n\r\n<p>Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and (Kingdom Couples) with respect to the Site, and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and (Kingdom Couples) with respect to the Site. A printed version of this agreement and of any notice given in electronic form shall be in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents written in English.</p>\r\n\r\n<p><strong>Changes to Terms</strong></p>\r\n\r\n<p>(Kingdom Couples) reserves the right, in its sole discretion, to change the Terms under which (Kingdom Couples) is offered.&nbsp; The most current version of the Terms will supersede all previous versions. (Kingdom Couples) encourages you to periodically review the Terms to stay informed of our updates.<br />\r\n&nbsp;</p>\r\n\r\n<p><strong>End-User License Agreement (EULA) of&nbsp;</strong><strong>Kingdom Couples</strong><strong> App</strong></p>\r\n\r\n<p>This End-User License Agreement (&quot;EULA&quot;) is a legal agreement between you and&nbsp;Kingdom Couples App.</p>\r\n\r\n<p>This EULA agreement governs your acquisition and use of our&nbsp;Kingdom Couples App&nbsp;software (&quot;Software&quot;) directly from&nbsp;Kingdom Couples App&nbsp;or indirectly through Kingdom Couples App&nbsp;authorized reseller or distributor (a &quot;Reseller&quot;).&nbsp;</p>\r\n\r\n<p>Please read this EULA agreement carefully before completing the installation process and using the&nbsp;Kingdom Couples Application. It provides a license to use the&nbsp;Kingdom Couples App&nbsp;software and contains warranty information and liability disclaimers.</p>\r\n\r\n<p>If you register for a free trial of the&nbsp;Kingdom Couples App, this EULA agreement will also govern that trial. By clicking &quot;accept&quot; or installing and/or using the&nbsp;Kingdom Couples App, you are confirming your acceptance of the Application and agreeing to become bound by the terms of this EULA agreement.</p>\r\n\r\n<p>If you are entering into this EULA agreement on behalf of a company or other legal entity, you represent that you have the authority to bind such entity and its affiliates to these terms and conditions. If you do not have such authority or if you do not agree with the terms and conditions of this EULA agreement, do not install or use the Software, and you must not accept this EULA agreement.</p>\r\n\r\n<p>This EULA agreement shall apply only to the Application supplied by&nbsp;Kingdom Couples App&nbsp;herewith regardless of whether other software is referred to or described herein. The terms also apply to any&nbsp;Kingdom Couples App&nbsp;updates, supplements, Internet-based services, and support services for the Software, unless other terms accompany those items on delivery. If so, those terms apply. This EULA was created by&nbsp;<a href=\"https://www.eulatemplate.com/\">EULA Template</a>&nbsp;for&nbsp;the Kingdom Couples App.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>License Grant</strong></p>\r\n\r\n<p>Kingdom Couples App&nbsp;hereby grants you a personal, non-transferable, non-exclusive license to use the&nbsp;Kingdom Couples App&nbsp;software on your devices in accordance with the terms of this EULA agreement.</p>\r\n\r\n<p>You are permitted to load the&nbsp;Kingdom Couples App&nbsp;software (for example a PC, laptop, or mobile) under your control. You are responsible for ensuring your device meets the minimum requirements of the&nbsp;Kingdom Couples App&nbsp;software.</p>\r\n\r\n<p><strong>You are not permitted to:</strong></p>\r\n\r\n<ul>\r\n	<li>Edit, alter, modify, adapt, translate or otherwise change the whole or any part of the Software nor permit the whole or any part of the Software to be combined with or become incorporated in any other software, nor decompile,</li>\r\n	<li>disassemble or reverse engineer the Software or attempt to do any such things</li>\r\n	<li>Reproduce, copy, distribute, resell or otherwise use the Software for any commercial purpose</li>\r\n	<li>Allow any third party to use the Software on behalf of or for the benefit of any third party</li>\r\n	<li>Use the Software in any way which breaches any applicable local, national or international law</li>\r\n	<li>use the Software for any purpose that&nbsp;Kingdom Couples App&nbsp;considers is a breach of this EULA agreement</li>\r\n</ul>\r\n\r\n<p><strong>Intellectual Property and Ownership</strong></p>\r\n\r\n<p>Kingdom Couples App&nbsp;shall at all times retain ownership of the Software as originally downloaded by you and all subsequent downloads of the Software by you. The Software (and the copyright, and other intellectual property rights of whatever nature in the Software, including any modifications made thereto) are and shall remain the property of&nbsp;Kingdom Couples App.</p>\r\n\r\n<p>Kingdom Couples App&nbsp;reserves the right to grant licenses to use the Software to third parties.</p>\r\n\r\n<p><strong>Termination</strong></p>\r\n\r\n<p>This EULA agreement is effective from the date you first use the Software and shall continue until terminated. You may terminate it at any time upon written notice to&nbsp;Kingdom Couples App.</p>\r\n\r\n<p>It will also terminate immediately if you fail to comply with any terms of this EULA agreement. Upon such termination, the licenses granted by this EULA agreement will immediately terminate and you agree to stop all access and use of the Software. The provisions that by their nature continue and survive will survive any termination of this EULA agreement.</p>\r\n\r\n<p><strong>Governing Law</strong></p>\r\n\r\n<p>This EULA agreement, and any dispute arising out of or in connection with this EULA agreement, shall be governed by and construed in accordance with the laws of&nbsp;us.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','1','2024-07-26 10:17:43','2024-08-15 15:08:55',NULL),(4,'FAQ','faq','<p><strong>1. What is the purpose of this app?</strong></p>\r\n\r\n<p><strong>Answer:</strong> The purpose of the Kingdom Couples app is to strengthen and support Christian marriages by providing couples with practical, faith-based tools and resources. The app is designed to help couples grow spiritually together, resolve conflicts, and deepen their connection through guided prayers, scriptural insights, and targeted audio content that addresses various aspects of marriage. The app aims to help couples build a Christ-centered relationship that aligns with biblical principles, fostering unity and understanding in their marriage.</p>\r\n\r\n<p><strong>2. Is my personal information and data secure?</strong></p>\r\n\r\n<p><strong>Answer:</strong> Yes, your privacy and data security are our top priorities. We use industry-standard encryption and security protocols to ensure that your personal information and shared events are safe and secure. For more details, please refer to our Privacy Policy.</p>\r\n\r\n<p><strong>3. How do I connect with my partner on the app?</strong></p>\r\n\r\n<p><strong>Answer:</strong> To connect with your partner, both of you need to download the app and create accounts. Then, navigate to the &quot;Add Partner&quot; tab and search for your partner by their username. Send a connection request, and once accepted, you can start sharing events and experiences.</p>\r\n\r\n<p><strong>4.&nbsp;How often is new content added to the app?</strong></p>\r\n\r\n<p><strong>Answer:</strong> New audios are released weekly in the Spiritual Growth section to help users work through various relationship topics.</p>\r\n\r\n<p><strong>5. How can I ask a question about my relationship or situation?</strong></p>\r\n\r\n<p><strong>Answer: </strong>You can submit your questions in the Questions section, and the app will respond with scripture-based guidance and application to help you understand how the Bible relates to your specific circumstances.</p>\r\n\r\n<p><strong>6.&nbsp;Are there daily devotionals or challenges in the app?</strong></p>\r\n\r\n<p><strong>Answer:</strong> No, the app currently does not include daily devotionals or challenges. We&#39;re working on this and it will be in a future update!</p>\r\n\r\n<p><strong>7. Does the app include worksheets or additional materials?</strong></p>\r\n\r\n<p><strong>Answer:</strong> No, the app does not currently include worksheets. We&#39;re working on this and it will be in a future update!</p>\r\n','1','2024-07-26 10:17:43','2024-08-23 15:12:16',NULL);
/*!40000 ALTER TABLE `content_managements` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_category`
--

DROP TABLE IF EXISTS `event_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_category` (
  `event_id` int unsigned NOT NULL,
  `category_id` int unsigned NOT NULL,
  KEY `event_category_event_id_foreign` (`event_id`),
  KEY `event_category_category_id_foreign` (`category_id`),
  CONSTRAINT `event_category_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE,
  CONSTRAINT `event_category_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_category`
--

LOCK TABLES `event_category` WRITE;
/*!40000 ALTER TABLE `event_category` DISABLE KEYS */;
INSERT INTO `event_category` VALUES (1,4),(1,5),(2,4),(4,12),(6,4),(6,5),(7,8),(8,4),(8,12),(9,7),(9,14),(9,20),(9,21),(9,26),(10,5),(10,10),(10,17),(10,21),(10,6),(11,4),(11,7),(11,12),(11,25),(11,13),(12,20),(12,25),(12,26),(12,12),(13,11),(14,28),(17,5),(17,4),(17,7),(17,6),(18,4),(18,6),(18,21),(18,25),(18,23),(19,4),(19,6),(19,21),(19,23),(19,25),(20,24),(20,19),(20,18),(21,4),(21,12),(21,25),(22,26),(22,7),(22,9),(22,6),(23,6),(23,9),(23,10),(23,20),(23,4),(24,5),(24,17),(24,21),(24,24),(24,14),(25,4),(25,5),(25,6),(25,8),(25,18),(26,11),(26,10),(26,7),(26,20),(26,21),(27,5),(27,14),(27,21),(27,25),(27,26),(28,5),(28,9),(28,26),(28,20),(28,19),(29,6),(29,11),(29,5),(29,15),(29,18),(30,18),(31,4),(31,12),(31,26),(31,6),(31,15),(32,6),(33,4),(33,10),(33,17),(33,26),(33,24),(34,17),(34,14),(34,15),(34,12),(34,13);
/*!40000 ALTER TABLE `event_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_share`
--

DROP TABLE IF EXISTS `event_share`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_share` (
  `event_id` int unsigned NOT NULL,
  `user_id` int unsigned NOT NULL,
  KEY `event_share_event_id_foreign` (`event_id`),
  KEY `event_share_user_id_foreign` (`user_id`),
  CONSTRAINT `event_share_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `event_share_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_share`
--

LOCK TABLES `event_share` WRITE;
/*!40000 ALTER TABLE `event_share` DISABLE KEYS */;
INSERT INTO `event_share` VALUES (1,10),(2,9),(4,9),(6,10),(7,9),(8,14),(9,36),(10,42),(11,47),(12,51),(13,22),(14,14),(17,14),(18,22),(19,22),(20,62),(21,58),(22,75),(23,77),(24,77),(25,82),(26,87),(27,92),(28,93),(28,92),(29,94),(30,94),(31,102),(32,14),(33,105),(33,104),(34,82);
/*!40000 ALTER TABLE `event_share` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `events`
--

DROP TABLE IF EXISTS `events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `events` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `user_id` int unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `ai_feedback` text,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `events_slug_unique` (`slug`),
  KEY `events_user_id_foreign` (`user_id`),
  CONSTRAINT `events_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `events`
--

LOCK TABLES `events` WRITE;
/*!40000 ALTER TABLE `events` DISABLE KEYS */;
INSERT INTO `events` VALUES (1,'cjumdtlz6p46ks',10,'Misunderstanding','fighting with me for new phone','In the book of Proverbs, it is written: \"The heart of the discerning acquires knowledge, for the ears of the wise seek it out.\" (Proverbs 18:15)\n\nIt is important to remember that misunderstandings can easily arise when nonverbal cues are not properly interpreted. Instead of fighting over material possessions such as a new phone, it is crucial to seek understanding and clear communication in order to avoid unnecessary conflicts.\n\nBy acknowledging and addressing these nonverbal cues and misunderstandings, we can strive to build stronger relationships and foster better communication. Let us remember to seek wisdom and understanding in all our interactions, so that we may handle conflicts with grace and humility.','2024-07-29 07:56:50','2024-07-29 07:56:52',NULL),(2,'cjumeolz6qwbuy',9,'Misunderstanding','I had a misunderstanding with my wife ','It is important to remember the words of Proverbs 18:2, which says \"A fool takes no pleasure in understanding, but only in expressing his opinion.\" Misunderstandings happen in all relationships, but it is crucial to seek understanding and find a resolution rather than allowing pride to get in the way. Remember to practice patience, empathy, and love in order to mend the misunderstanding with your wife and strengthen your relationship.','2024-07-29 08:46:43','2024-07-29 08:46:44',NULL),(4,'cjurwjlzb2i8ro',9,'Differences ','this\'ll be a good idea for me to get a good night\'s sleep well and I will be updated update ','It is important to remember that our differences make us unique and special in the eyes of God. As it says in 1 Corinthians 12:14-20, \"For the body does not consist of one member but many... If the whole body were an eye, where would be the sense of hearing? If the whole body were an ear, where would be the sense of smell? But as it is, God arranged the members in the body, each one of them, as he chose. If all were a single member, where would the body be? As it is, there are many parts, yet one body.\"\n\nEmbracing our differences and recognizing that we all have something valuable to contribute is essential in living harmoniously with one another. By seeking understanding and learning from each other, we can grow and thrive as a community. So, rest well knowing that you are valued and important just as you are, and trust that God will guide you in your journey towards unity and peace.','2024-08-01 09:22:46','2024-08-06 12:21:02',NULL),(6,'cjuzj5lziasjsu',10,'Misunderstanding','fighting with my wife','In Ephesians 4:26-27, it says, \"In your anger do not sin: Do not let the sun go down while you are still angry, and do not give the devil a foothold.\" This verse highlights the importance of addressing misunderstandings and nonverbal cues with our loved ones before they escalate into bigger conflicts. By communicating openly and honestly with our spouses, we can prevent unnecessary fights and strengthen our relationships. Additionally, Proverbs 15:1 reminds us that \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" So, it is crucial to approach disagreements with patience, kindness, and understanding in order to maintain harmony in marriage.','2024-08-06 10:49:07','2024-08-06 11:58:31',NULL),(7,'cju10yslziee5x7',9,'Deflect ','hhhhhhhh the nft after the nft after the nft after the nft after the nft after the nft update ','It is important to remember the words of Proverbs 4:25-27, \"Let your eyes look straight ahead; fix your gaze directly before you. Give careful thought to the paths for your feet and be steadfast in all your ways. Do not turn to the right or the left; keep your foot from evil.\" In this verse, we are reminded to stay focused on the path laid out before us and not to be distracted or led astray by deflection. Let us always strive to stay true to our beliefs and values, resisting the temptation to veer off course.','2024-08-06 12:29:54','2024-08-06 12:30:58',NULL),(8,'cju11uulzjox7fm',14,'Hshsh','hshssj','I\'m sorry, but \"hshssj\" does not make sense in the context of feedback on misunderstanding and differences. Can you please provide more context or clarification so I can generate a relevant response with a reference to the Bible?','2024-08-07 10:12:25','2024-08-07 10:12:26',NULL),(9,'cju5mkm02rr9kj',36,'No Accountability For Actions ','never has anything positive to say, always disrespects me around the kids and yells at me ','In Ephesians 4:29-32, the Bible warns against passive-aggressiveness, unclear boundaries, criticism, defensiveness, and disrespect in relationships. It says, \"Let no corrupting talk come out of your mouths, but only such as is good for building up, as fits the occasion, that it may give grace to those who hear. And do not grieve the Holy Spirit of God, by whom you were sealed for the day of redemption. Let all bitterness and wrath and anger and clamor and slander be put away from you, along with all malice. Be kind to one another, tenderhearted, forgiving one another, as God in Christ forgave you.\"\n\nIt is clear from the comment you mentioned that these negative behaviors are present in the relationship. The person feels constantly criticized, disrespected, and yelled at by their partner. This is not in line with the example Christ set for us in how to treat others. It is important for both parties to communicate openly, set clear boundaries, and show respect and kindness to one another. When these unhealthy patterns are present, it can create a toxic and harmful environment for everyone involved. It is important to address these issues and seek help to create a healthier and more loving relationship.','2024-08-20 18:39:24','2024-08-20 18:39:28',NULL),(10,'cju2gddm0kdlpfw',42,'Bhjjj','hhjjjjj','In the Bible, communication is often emphasized as key to building strong and healthy relationships. Nonverbal cues, invalidating statements, unmet needs, defensiveness, and tone can significantly impact our ability to effectively connect with others. In Ephesians 4:29, it says, \"Do not let any unwholesome talk come out of your mouths, but only what is helpful for building others up according to their needs, that it may benefit those who listen.\"\n\nWhen someone simply responds with \"hhjjjjj\" without providing meaningful feedback or engaging in the conversation, it can be perceived as dismissive and invalidating. This lack of attention to the conversation and the nonverbal cues can leave the other person feeling unheard and unvalued, leading to unmet needs and potential defensiveness.\n\nBeing mindful of our tone and how we communicate with others is essential in fostering healthy and meaningful relationships. As stated in Proverbs 15:1, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" It is important to approach conversations with kindness, respect, and attentiveness to ensure effective communication and mutual understanding.','2024-09-02 02:23:01','2024-09-02 02:23:04',NULL),(11,'cju2gddm0m91i79',47,'Patient','how to be patient when my patner make me upset?','In regards to your question on how to be patient when your partner upsets you, I would like to share some insights from the Bible:\n\n1. Misunderstanding: Proverbs 18:2 reminds us that \"Fools find no pleasure in understanding but delight in airing their own opinions.\" It is important to strive for understanding and communication in times of conflict.\n\n2. Passive-aggressiveness: Ephesians 4:26-27 advises us to \"In your anger do not sin: Do not let the sun go down while you are still angry, and do not give the devil a foothold.\" It is crucial to address issues directly and not resort to passive-aggressive behavior.\n\n3. Differences: Romans 12:18 encourages us to \"If it is possible, as far as it depends on you, live at peace with everyone.\" Embrace and celebrate your differences, rather than letting them lead to conflict.\n\n4. Blame: James 1:19 reminds us to \"be quick to listen, slow to speak and slow to become angry.\" Instead of placing blame, strive to communicate effectively and find solutions together.\n\n5. Conflicting goals: Philippians 2:3-4 urges us to \"Do nothing out of selfish ambition or vain conceit. Rather, in humility value others above yourselves, not looking to your own interests but each of you to the interests of the others.\" Work towards understanding each other\'s goals and finding a common ground.\n\nBy following the wisdom and guidance of the Bible, you can learn to be patient and handle conflicts in a loving and respectful manner with your partner.','2024-09-03 09:50:52','2024-09-03 09:50:57',NULL),(12,'cju2gddm0q3j112',51,'River’s Bath','When River was crying I (Sky) rushed into the room and started giving Kameron instruction on how to bathe River.','In the book of Matthew 7:1-5, it says, \"Do not judge, or you too will be judged. For in the same way you judge others, you will be judged, and with the measure you use, it will be measured to you. Why do you look at the speck of sawdust in your brother’s eye and pay no attention to the plank in your own eye? How can you say to your brother, ‘Let me take the speck out of your eye,’ when all the time there is a plank in your own eye? You hypocrite, first take the plank out of your own eye, and then you will see clearly to remove the speck from your brother’s eye.\"\n\nThis passage serves as a reminder to refrain from criticizing, blaming, or disrespecting others, especially when we ourselves may have faults that need addressing. Instead of rushing to give instructions or pass judgment, it is important to approach situations with empathy, understanding, and a willingness to address our own shortcomings before pointing out others\'. Differences in opinions or actions should be met with grace and patience, rather than criticism or disrespect.','2024-09-06 02:27:37','2024-09-06 02:27:41',NULL),(13,'cju2gddm0rf811b',22,'Moe And Mel','I was communicating with my husband about our son and he began to interrupt me when I was explaining to him what our son was doing. I got upset and spoke harshly to him. what does the Bible say about this?','Ephesians 4:29 says, \"Do not let any unwholesome talk come out of your mouths, but only what is helpful for building others up according to their needs, that it may benefit those who listen.\" Proverbs 15:1 also states, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" It is important to communicate with love, patience, and respect towards one another, even when we feel frustrated or interrupted. By following these principles, we can foster healthy communication and avoid unnecessary conflict.','2024-09-07 00:42:45','2024-09-07 00:42:47',NULL),(14,'cju2gddm0uxxmgi',14,'Yiijh','tijvg','In Proverbs 17:14, it is written: \"Starting a quarrel is like breaching a dam; so drop the matter before a dispute breaks out.\" \n\nTherefore, it is wise to heed this advice and refrain from engaging in unnecessary quarrels, as they can quickly escalate and cause harm to relationships. Let us remember to seek peace and strive for harmony in our interactions with others, as mentioned in the book of James 3:18: \"Peacemakers who sow in peace reap a harvest of righteousness.\" \n\nSo, let us choose our words and actions carefully, always seeking to promote unity and understanding rather than discord and conflict. May we remember the words of Proverbs 20:3: \"It is to one’s honor to avoid strife, but every fool is quick to quarrel.\"','2024-09-09 11:49:51','2024-09-09 11:49:55',NULL),(17,'cju2gddm0v00v6z',14,'Hsjsnd','issjjsjsjes','In the Bible, Proverbs 15:1 states, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" This verse reminds us of the importance of carefully considering our nonverbal cues, tone, and communication style in order to avoid misunderstandings and prevent passive-aggressiveness in our interactions with others.\n\nWhen we encounter someone who responds with \"issjjsjsjes\" or similar nonsensical sounds, it may be a sign of frustration, confusion, or passive-aggressiveness. Instead of reacting defensively or with anger, it is important to respond with grace and patience, seeking to understand the root of the issue and addressing it with kindness and empathy.\n\nBy paying attention to nonverbal cues, striving to avoid misunderstandings, maintaining a positive tone, and addressing passive-aggressive behavior with a spirit of compassion, we can emulate the principles of peace and reconciliation found in the Bible.','2024-09-09 12:48:21','2024-09-09 12:48:25',NULL),(18,'cju3a3fm0v9er3j',22,'Phones At Dinner',' We had a major argument last night about how much time we spend on our phones specially during dinner. I feel like every time we sit down to eat my spouse is more focused on scrolling through social media then having a conversation with me. I brought it up, but the conversation quickly spiraled. my partner felt like I was accusing them of something petty and got defensive saying that it’s their way of unwinding after a long day. the other hand felt ignored and unimportant like the time we spend isn’t a priority. they mentioned that I also use my phone often, and it felt like the conversation shifted to pointing fingers instead of resolving the issue. by the end, we were both frustrated and nothing got solved. I went to bed and now I feel like this is unresolved and have tension between us. what does the Bible say about this?','Proverbs 15:1 says, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" This passage reminds us to approach difficult conversations with gentleness and understanding, rather than defensiveness and blame. It is important to listen to each other\'s perspectives and feelings without escalating the situation. \n\nEphesians 4:29 also reminds us, \"Do not let any unwholesome talk come out of your mouths, but only what is helpful for building others up according to their needs, that it may benefit those who listen.\" This verse encourages us to speak in a way that is edifying and respectful, rather than using our words to tear each other down or shift blame. \n\nIn seeking resolution to conflicts, it is important to remember Matthew 18:15, which says, \"If your brother or sister sins, go and point out their fault, just between the two of you. If they listen to you, you have won them over.\" This verse stresses the importance of addressing misunderstandings or conflicts directly and privately, rather than allowing them to escalate and cause further discord. \n\nOverall, it is important to approach disagreements with love, patience, and a willingness to listen and understand each other\'s perspectives. By following the guidance of the Bible in how we communicate and resolve conflicts, we can work towards building a stronger and more harmonious relationship with our spouse.','2024-09-09 17:11:06','2024-09-09 17:11:10',NULL),(19,'cju3a3fm0v9iam9',22,'Phones At Dinner','We had a major argument last night about how much time we spend on our phones specially during dinner. I feel like every time we sit down to eat my spouse is more focused on scrolling through social media then having a conversation with me. I brought it up, but the conversation quickly spiraled. my partner felt like I was accusing them of something petty and got defensive saying that it’s their way of unwinding after a long day. the other hand felt ignored and unimportant like the time we spend isn’t a priority. they mentioned that I also use my phone often, and it felt like the conversation shifted to pointing fingers instead of resolving the issue. by the end, we were both frustrated and nothing got solved. I went to bed and now I feel like this is unresolved and have tension between us. what does the Bible say about this?','Proverbs 15:1 says, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" This verse reminds us that the way we communicate during disagreements can either de-escalate the situation or make it worse. It is important to approach conversations with a gentle tone and avoid defensiveness in order to resolve conflicts effectively. \n\nEphesians 4:26-27 also advises us, \"In your anger do not sin: Do not let the sun go down while you are still angry, and do not give the devil a foothold.\" This verse highlights the importance of addressing issues promptly and not allowing unresolved conflicts to fester. It is important to address misunderstandings and avoid shifting blame in order to maintain peace and unity in relationships.\n\nUltimately, the Bible teaches us to communicate with love, patience, and humility in order to resolve conflicts and build strong and healthy relationships.','2024-09-09 17:13:51','2024-09-09 17:13:54',NULL),(20,'cju3a3fm0xpttlk',62,'pujolg','dgplls\n','It seems like the person may have been trying to communicate their feelings of frustration or discomfort with the situation involving stonewalling, value clashes, and unfairness. These are all valid concerns that can cause tension and discord in any relationship or situation. \n\nIn the Bible, we are reminded in Proverbs 11:1 that \"Dishonest scales are detestable to the Lord, but an accurate weight is His delight.\" This verse speaks to the importance of fairness and integrity in our actions and interactions with others. When faced with value clashes or unfair treatment, it is important to seek resolution through open communication, empathy, and a willingness to understand and respect the perspectives of others.\n\nOverall, it is crucial to address these issues in a constructive and compassionate manner, seeking guidance and wisdom from the teachings of the Bible to navigate difficult situations and strive for reconciliation and unity.','2024-09-11 10:26:15','2024-09-11 10:26:18',NULL),(21,'cju3a3fm11rxiv6',58,'Vxsfv',' cgbm','In the Bible, Proverbs 18:13 tells us, \"To answer before listening— that is folly and shame.\" This verse speaks to the importance of avoiding misunderstandings by truly listening to others before forming judgments or making accusations. Likewise, Romans 12:16 reminds us to \"live in harmony with one another\" even in the face of differences, emphasizing the need for unity and mutual respect.\n\nBlame is also addressed in the Bible, with Matthew 7:3 cautioning us to \"Why do you look at the speck of sawdust in your brother’s eye and pay no attention to the plank in your own eye?\" This verse encourages self-reflection and taking responsibility for our own actions before pointing fingers at others.\n\nIn light of these biblical teachings, it is clear that \"cgbm\" may benefit from practicing active listening, promoting unity in the face of differences, and refraining from placing blame without first examining their own role in a situation.','2024-09-14 06:36:12','2024-09-14 06:36:15',NULL),(22,'cju3a3fm13zrx3d',75,'One - ','note','In the Bible, Colossians 3:8-9 says, \"But now you must also rid yourselves of all such things as these: anger, rage, malice, slander, and filthy language from your lips. Do not lie to each other, since you have taken off your old self with its practices.\" \n\nIn relation to \"Disrespect, Passive-aggressiveness, Assumptions, and Tone\", it is important for individuals to communicate with love and grace, avoiding negative behaviors that can harm relationships. It is also crucial to address issues directly rather than making assumptions or using passive-aggressive tactics. \n\nTherefore, it is essential for the person who made the comment to take note of their actions and strive to communicate in a respectful and honest manner, avoiding negativity and assumptions. By following the teachings of the Bible and practicing love and understanding in their interactions, they can strengthen their relationships and promote harmony in their interactions with others.','2024-09-15 19:51:20','2024-09-15 19:51:22',NULL),(23,'cju44p8m151zun5',77,'Work In Progress ','growth','\"Be kind to one another, tenderhearted, forgiving one another, as God in Christ forgave you.\" - Ephesians 4:32\n\nIn considering the feedback provided on the topics of tone, assumptions, invalidating, criticism, and misunderstanding, it is important to remember the importance of growth. We must approach each other with kindness, understanding, and forgiveness, just as Christ has forgiven us. Let us strive to lift each other up in love and encouragement as we work towards our own personal growth and understanding.','2024-09-16 13:41:15','2024-09-16 13:41:17',NULL),(24,'cju48qvm179nw9p',77,'Growth Still','progress','In reflecting on the concept of \"progress\" in relation to nonverbal cues, unmet needs, defensiveness, stonewalling, and unclear boundaries, we can turn to the Bible for guidance. \n\n1. Nonverbal cues: The Bible teaches us the importance of being attuned to nonverbal cues in communication. In Proverbs 15:1, it says, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" This verse reminds us that our tone, body language, and facial expressions can speak volumes without saying a word.\n\n2. Unmet needs: The Bible tells us that God is aware of our every need and is faithful to provide for us. In Philippians 4:19, it says, \"And my God will meet all your needs according to the riches of his glory in Christ Jesus.\" By seeking God\'s provision and guidance, we can find fulfillment and satisfaction in our lives.\n\n3. Defensiveness: The Bible warns against becoming defensive in our interactions with others. In Proverbs 15:1, it says, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" By responding with humility and grace, we can avoid escalating conflicts and promote understanding.\n\n4. Stonewalling: The Bible encourages us to be honest and open in our communication with others. In Ephesians 4:25, it says, \"Therefore each of you must put off falsehood and speak truthfully to your neighbor, for we are all members of one body.\" By avoiding stonewalling and instead engaging in honest dialogue, we can foster healthy relationships.\n\n5. Unclear boundaries: The Bible emphasizes the importance of setting clear boundaries in our relationships. In Proverbs 4:23, it says, \"Above all else, guard your heart, for everything you do flows from it.\" By establishing and respecting boundaries, we can prevent misunderstandings and promote mutual respect.\n\nIn conclusion, by aligning our communication and relationships with the principles outlined in the Bible, we can make progress in addressing nonverbal cues, unmet needs, defensiveness, stonewalling, and unclear boundaries. By seeking God\'s guidance and wisdom, we can navigate these challenges with grace and humility, ultimately fostering healthier and more fulfilling connections with others.','2024-09-18 02:51:27','2024-09-18 02:51:33',NULL),(25,'cju4b8xm17sjk0r',82,'bad day','life is good','In the Bible, Proverbs 15:1 states, \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" This verse highlights the importance of tone in communication. When we respond with kindness and gentleness, rather than harshness, it can help prevent misunderstandings and defensiveness.\n\nAdditionally, Matthew 18:15 advises on addressing unfairness and conflict directly: \"If your brother or sister sins, go and point out their fault, just between the two of you. If they listen to you, you have won them over.\" This verse encourages open and honest communication to address issues of unfairness.\n\nWhen it comes to nonverbal cues and misunderstandings, Proverbs 20:5 reminds us, \"The purposes of a person\'s heart are deep waters, but one who has insight draws them out.\" It\'s important to seek understanding and clarity in communication, even when nonverbal cues can be confusing.\n\nDespite the challenges of communication, the person mentioned that \"life is good.\" This positive attitude is commendable, and reflects the biblical wisdom found in Philippians 4:11-13, where Paul writes, \"I have learned to be content whatever the circumstances... I can do all this through him who gives me strength.\" This passage encourages us to find contentment and strength through faith, even in the face of misunderstandings, unfairness, and challenges in communication.','2024-09-18 11:39:57','2024-09-18 11:40:02',NULL),(26,'cju4btpm1850sa3',87,'Argument ','this is is ','Proverbs 12:18 says, \"There is one whose rash words are like sword thrusts, but the tongue of the wise brings healing.\"\n\nInterrupting, invalidating, passive-aggressiveness, criticism, and defensiveness are all behaviors that can harm relationships and create a toxic environment. When someone engages in these behaviors, it can cause hurt and conflict rather than growth and understanding.\n\nAs Proverbs 12:18 suggests, rash words can be like sword thrusts, causing pain and damage. It\'s important to choose our words carefully and speak with wisdom and compassion. Instead of resorting to negative behaviors, we should seek to communicate openly, listen actively, and strive for reconciliation.\n\nUltimately, the Bible reminds us to treat others with love and respect, even when we face difficult interactions or disagreements. We should always aim to build others up and promote peace, rather than tearing them down with harmful behaviors.','2024-09-18 17:29:16','2024-09-18 17:29:19',NULL),(27,'cju4oynm19ml78t',92,'work on','me and adam share these traits that we have and need to work on for us to work out. not just \"well maybe we should break up\" how about let\'s talk it out without belittling eachother','In the Bible, Ephesians 4:29 says, \"Do not let any unwholesome talk come out of your mouths, but only what is helpful for building others up according to their needs, that it may benefit those who listen.\" This verse emphasizes the importance of communicating in a respectful and edifying manner, even when addressing difficult topics. \n\nIn the situation described, the person acknowledges areas of improvement in their relationship with Adam, such as nonverbal cues, unclear boundaries, defensiveness, blame, and disrespect. Instead of resorting to breaking up as a quick solution, the person suggests a more mature approach by advocating for open and respectful communication. By addressing these issues together and working on them as a team, the couple can strengthen their relationship and grow together spiritually. This aligns with the biblical principles of love, forgiveness, and building each other up in faith.','2024-09-19 18:28:48','2024-09-19 18:28:52',NULL),(28,'cju4oynm19x4923',93,'Be Nicer','Shana has been mean to me presently and she sometimes doesn’t notice and it changes my mood. ','It is important to acknowledge that nonverbal cues, assumptions, disrespect, criticism, and value clashes can have a significant impact on our relationships and interactions with others. In the Bible, Ephesians 4:29 reminds us, \"Do not let any unwholesome talk come out of your mouths, but only what is helpful for building others up according to their needs, that it may benefit those who listen.\"\n\nIn the situation you described with Shana, it may be helpful to address these issues directly with her in a loving and compassionate manner. Perhaps Shana is unaware of how her behavior is affecting you, and open communication can help bring understanding and resolution to the situation.\n\nAs Christians, it is important to treat others with kindness, respect, and love, even when faced with difficult circumstances. Philippians 2:3-4 encourages us to, \"Do nothing out of selfish ambition or vain conceit. Rather, in humility value others above yourselves, not looking to your own interests but each of you to the interests of the others.\"\n\nBy approaching the situation with a mindset of love and understanding, you may be able to address the issues at hand and find a resolution that is beneficial for both you and Shana.','2024-09-19 23:23:33','2024-09-19 23:23:37',NULL),(29,'cju4oynm1aioslz',94,'Money ',' My husband and I are struggling financially and he wants to go to Wyoming, but I don’t want to be away from him for six months. What should we do?','In regards to the situation you are facing with your husband wanting to go to Wyoming for six months, it is important to remember the words of Ecclesiastes 4:9-10 - \"Two are better than one, because they have a good return for their labor: If either of them falls down, one can help the other up. But pity anyone who falls and has no one to help them up.\" \n\nIt is crucial to have open communication with your husband about your concerns and feelings regarding this decision. Make sure to maintain a respectful tone and avoid interrupting each other during this discussion. Pay attention to each other\'s nonverbal cues to understand how the other is truly feeling. \n\nIt is vital to work together as a team and not let a power struggle or unfairness come between your relationship. Seek guidance from God and pray together for wisdom and clarity on how to proceed. Remember, with God at the center of your marriage, you can overcome any challenges that come your way.','2024-09-20 09:27:24','2024-09-20 09:27:26',NULL),(30,'cju4oynm1cemzji',94,'Working For Money While I’m Sick ',' So my husband just got called out to work and I am sick and don’t feel good but we need the money because we have a lot of stuff to pay and we’re already broke','In the Bible, in Matthew 20:1-16, Jesus tells the parable of the workers in the vineyard. In this story, some workers are hired early in the morning and work all day, while others are hired later in the day and only work a few hours. At the end of the day, all the workers are paid the same amount, regardless of how long they worked. This may seem unfair to those who worked longer hours, but the landowner in the story reminds them that they agreed to work for a fair wage. \n\nSimilarly, in your situation, it may feel unfair that your husband has been called out to work while you are feeling sick and in need of rest. However, it is important to trust in God\'s plan and remember that He provides for us in unexpected ways. Your husband\'s work may be a blessing in disguise, providing the income you need to pay your bills and meet your financial obligations. Trust that God will take care of you and provide for your needs, even in difficult circumstances.','2024-09-21 17:09:33','2024-09-21 17:09:35',NULL),(31,'cju4oynm1ef8t5g',102,'Disagreements','n/A','The Bible teaches us that misunderstandings often arise due to lack of communication and seeking clarification. In Proverbs 18:13, it says \"If one gives an answer before he hears, it is his folly and shame.\" It is important to listen and understand before jumping to conclusions.\n\nWhen it comes to differences, Romans 12:16 reminds us to \"Live in harmony with one another. Do not be proud, but be willing to associate with people of low position. Do not be conceited.\" Embracing and respecting our differences can lead to a deeper understanding and appreciation for one another.\n\nDisrespect is something that goes against the teachings of the Bible. Ephesians 4:32 instructs us to \"Be kind and compassionate to one another, forgiving each other, just as in Christ God forgave you.\" Treating others with respect and kindness reflects the love of God.\n\nRegarding tone, Ephesians 4:29 advises us to \"Let no corrupting talk come out of your mouths, but only such as is good for building up, as fits the occasion, that it may give grace to those who hear.\" Speaking with kindness and grace can prevent misunderstandings and conflicts.\n\nPower struggles are often fueled by pride and selfishness. Philippians 2:3-4 encourages us to \"Do nothing out of selfish ambition or vain conceit. Rather, in humility value others above yourselves, not looking to your own interests but each of you to the interests of the others.\" By putting others before ourselves, we can avoid power struggles and work towards unity.\n\nIn conclusion, the Bible provides guidance on how to navigate misunderstandings, differences, disrespect, tone, and power struggles in a way that honors God and promotes healthy relationships. Let us strive to follow its teachings in our interactions with others.','2024-09-23 03:02:04','2024-09-23 03:02:09',NULL),(32,'cju4oynm1epcc6m',14,'Jfjf','mvgmg','In Ephesians 4:29, the Bible teaches us, \"Let no corrupting talk come out of your mouths, but only such as is good for building up, as fits the occasion, that it may give grace to those who hear.\" This verse reminds us to always be mindful of the tone with which we speak to others. It is important to speak with kindness and grace, even in the face of disagreement or conflict. Through our words and tone, we can communicate love, respect, and understanding to those around us.','2024-09-23 07:44:44','2024-09-23 07:44:46',NULL),(33,'cju4oynm1exc4wq',105,'Our issues','We need to fight these issues','According to Ephesians 4:29, \"Let no corrupting talk come out of your mouths, but only such as is good for building up, as fits the occasion, that it may give grace to those who hear.\" Misunderstandings, invalidating, unmet needs, disrespect, and stonewalling all stem from communication breakdowns and lack of love towards one another. It is important to address these issues through open and honest communication, empathy, and respect towards each other. As mentioned in Ephesians 4:15, \"Instead, speaking the truth in love, we will grow to become in every respect the mature body of him who is the head, that is, Christ.\" By acknowledging these issues and addressing them in a compassionate manner, we can work towards resolving conflicts and building stronger relationships.','2024-09-23 11:28:32','2024-09-23 11:28:34',NULL),(34,'cju4oynm1ey3txl',82,'shehe','ejejjejeje','In the Bible, Ephesians 4:26-27 addresses unmet needs and unclear boundaries by saying, \"In your anger do not sin: Do not let the sun go down while you are still angry, and do not give the devil a foothold.\" This verse reminds us to address our needs and set clear boundaries in a healthy and timely manner to avoid allowing negative emotions to fester and cause harm.\n\nRegarding power struggles, 1 Peter 5:5-6 advises, \"All of you, clothe yourselves with humility toward one another, because, \'God opposes the proud but shows favor to the humble.\' Humble yourselves, therefore, under God’s mighty hand, that he may lift you up in due time.\" This passage reminds us to resist the temptation of power struggles and instead prioritize humility and submission to God\'s will.\n\nWhen it comes to differences and conflicting goals, Romans 12:16 offers guidance, saying, \"Live in harmony with one another. Do not be proud, but be willing to associate with people of low position. Do not be conceited.\" This verse encourages us to seek peace and unity despite our differences, and to prioritize humility and cooperation over selfish ambitions.\n\nIn light of these biblical teachings, it is important to reflect on how we handle unmet needs, unclear boundaries, power struggles, differences, and conflicting goals in our relationships and strive to align our actions with the principles of love, humility, and unity found in Scripture. Remembering these lessons can help us navigate challenging situations with grace and wisdom.','2024-09-23 11:50:04','2024-09-23 11:50:09',NULL);
/*!40000 ALTER TABLE `events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `faqs`
--

DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(200) NOT NULL,
  `question` text NOT NULL,
  `answer` text NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `faqs_slug_unique` (`slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `faqs`
--

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

--
-- Table structure for table `mail_templates`
--

DROP TABLE IF EXISTS `mail_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mail_templates` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `identifier` varchar(100) DEFAULT NULL,
  `subject` varchar(200) DEFAULT NULL,
  `body` text NOT NULL,
  `wildcard` text NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mail_templates`
--

LOCK TABLES `mail_templates` WRITE;
/*!40000 ALTER TABLE `mail_templates` DISABLE KEYS */;
INSERT INTO `mail_templates` VALUES (1,'user-registration','Welcome to [APP_NAME]','<table class=\"main\" style=\"border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%; background: #ffffff; border-radius: 3px;\">\n    <tr>\n        <td class=\"wrapper\" style=\"font-family: sans-serif; font-size: 14px; vertical-align: top; box-sizing: border-box; padding: 20px;\">\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\">\n                <tr>\n                    <td style=\"font-family: sans-serif; font-size: 14px; vertical-align: top;\">\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">Hi [USERNAME],</p>\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">Your account has been created successfully. First, you need to confirm your account. Just click the below link</p>\n                        <p><a href=\"[LINK]\">Verify Now</a></p>\n                        <br>\n                        <br>\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">Regards,</p>\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">© [YEAR] [APP_NAME] All Rights reserved.</p>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n','[USERNAME],[LINK],[YEAR],[APP_NAME]','2024-07-26 10:17:43',NULL,NULL),(2,'forgot-password','Forgot Password Confirmation','<table class=\"main\" style=\"border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%; background: #ffffff; border-radius: 3px;\">\n    <tr>\n        <td class=\"wrapper\" style=\"font-family: sans-serif; font-size: 14px; vertical-align: top; box-sizing: border-box; padding: 20px;\">\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;\">\n                <tr>\n                    <td style=\"font-family: sans-serif; font-size: 14px; vertical-align: top;\">\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">Hi [USERNAME],</p>\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">Your account has been created successfully. First, you need to confirm your account. Just click the below link</p>\n                        <p><a href=\"[LINK]\">Verify Now</a></p>\n                        <br>\n                        <br>\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">Regards,</p>\n                        <p style=\"font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;\">© [YEAR] [APP_NAME] All Rights reserved.</p>\n                    </td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n','[USERNAME],[LINK],[YEAR],[APP_NAME]','2024-07-26 10:17:43',NULL,NULL);
/*!40000 ALTER TABLE `mail_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media`
--

DROP TABLE IF EXISTS `media`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `module` varchar(100) NOT NULL,
  `module_id` int NOT NULL,
  `filename` varchar(200) NOT NULL,
  `original_name` varchar(200) NOT NULL,
  `file_url` text NOT NULL,
  `file_url_blur` varchar(200) NOT NULL,
  `thumbnail_url` text,
  `mime_type` varchar(255) DEFAULT NULL,
  `file_type` varchar(255) DEFAULT NULL,
  `driver` varchar(50) NOT NULL DEFAULT 'local',
  `media_type` enum('public','private') NOT NULL DEFAULT 'public',
  `meta` text,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media`
--

LOCK TABLES `media` WRITE;
/*!40000 ALTER TABLE `media` DISABLE KEYS */;
INSERT INTO `media` VALUES (1,'video',5,'big_buck_bunny_720p_10mb.mp4','big_buck_bunny_720p_10mb.mp4','video/1722343426253.mp4','video/1722343426253.mp4','video/thumbnail-W2stpTN4aa.jpg',NULL,NULL,'local','',NULL,'2024-07-30 12:43:46','2024-07-30 12:43:46',NULL),(2,'video',6,'SampleVideo_1280x720_5mb.mp4','SampleVideo_1280x720_5mb.mp4','video/1722343483165.mp4','video/1722343483165.mp4','video/thumbnail-oxEQqv5LX8.jpg',NULL,NULL,'local','',NULL,'2024-07-30 12:44:43','2024-07-30 12:44:43',NULL),(3,'video',7,'SampleVideo_1280x720_5mb.mp4','SampleVideo_1280x720_5mb.mp4','video/1722936877353.mp4','video/1722936877353.mp4','video/thumbnail-Iy3Ev1hxvI.jpg',NULL,NULL,'local','',NULL,'2024-08-06 09:34:37','2024-08-06 09:34:37',NULL),(4,'video',8,'Christ Centered Marriage - Intro (1).mp4','Christ Centered Marriage - Intro (1).mp4','video/1723104564143.mp4','video/1723104564143.mp4','video/thumbnail-BdnOKSkf6i.jpg',NULL,NULL,'local','',NULL,'2024-08-08 08:09:24','2024-08-08 08:09:24',NULL),(5,'video',9,'Christ Centered Marriage - Foundations 1 (1).mp4','Christ Centered Marriage - Foundations 1 (1).mp4','video/1723104614925.mp4','video/1723104614925.mp4','video/thumbnail-vRXURbb6LD.jpg',NULL,NULL,'local','',NULL,'2024-08-08 08:10:15','2024-08-08 08:10:15',NULL),(6,'video',10,'BW Managing Anger 343 x 166 Intro.mp4','BW Managing Anger 343 x 166 Intro.mp4','video/1723104674486.mp4','video/1723104674486.mp4','video/thumbnail-bI734KwZdq.jpg',NULL,NULL,'local','',NULL,'2024-08-08 08:11:14','2024-08-08 08:11:14',NULL),(7,'video',11,'BW Managing Anger 343 x 166 Session 1.mp4','BW Managing Anger 343 x 166 Session 1.mp4','video/1723104739949.mp4','video/1723104739949.mp4','video/thumbnail-SScAw6Drnd.jpg',NULL,NULL,'local','',NULL,'2024-08-08 08:12:20','2024-08-08 08:12:20',NULL),(8,'video',12,'BW Managing Anger 343 x 166 Session 1.mp4','BW Managing Anger 343 x 166 Session 1.mp4','video/1723104753008.mp4','video/1723104753008.mp4','video/thumbnail-hJq2pZrVOn.jpg',NULL,NULL,'local','',NULL,'2024-08-08 08:12:33','2024-08-08 08:12:33',NULL),(9,'video',13,'Christ Centered Marriage - Intro.mp4','Christ Centered Marriage - Intro.mp4','video/1723830427075.mp4','video/1723830427075.mp4','video/thumbnail-5Ay6xSwpXV.jpg',NULL,NULL,'local','',NULL,'2024-08-16 17:47:07','2024-08-16 17:47:07',NULL),(10,'video',14,'Christ Centered Marriage - Foundations 1.mp4','Christ Centered Marriage - Foundations 1.mp4','video/1723830722107.mp4','video/1723830722107.mp4','video/thumbnail-4kmkLHApd1.jpg',NULL,NULL,'local','',NULL,'2024-08-16 17:52:02','2024-08-16 17:52:02',NULL),(11,'video',15,'Christ Centered Marriage - Foundations 2.mp4','Christ Centered Marriage - Foundations 2.mp4','video/1723830828264.mp4','video/1723830828264.mp4','video/thumbnail-u4OuSCKiZV.jpg',NULL,NULL,'local','',NULL,'2024-08-16 17:53:48','2024-08-16 17:53:48',NULL),(12,'video',16,'Christ Centered Marriage - Foundations 3.mp4','Christ Centered Marriage - Foundations 3.mp4','video/1723830975417.mp4','video/1723830975417.mp4','video/thumbnail-S3qMW7Wqxm.jpg',NULL,NULL,'local','',NULL,'2024-08-16 17:56:15','2024-08-16 17:56:15',NULL),(13,'video',17,'Christ Centered Marriage - Foundations 4.mp4','Christ Centered Marriage - Foundations 4.mp4','video/1723831167002.mp4','video/1723831167002.mp4','video/thumbnail-F7FmdsYo0o.jpg',NULL,NULL,'local','',NULL,'2024-08-16 17:59:27','2024-08-16 17:59:27',NULL),(14,'video',18,'01 -BW Managing Anger Intro.mp4','01 -BW Managing Anger Intro.mp4','video/1724090503978.mp4','video/1724090503978.mp4','video/thumbnail-SpzhczrM50.jpg',NULL,NULL,'local','',NULL,'2024-08-19 18:01:44','2024-08-19 18:01:44',NULL),(15,'video',19,'02 - BW Managing Anger 343 x 166 Episode 1.mp4','02 - BW Managing Anger 343 x 166 Episode 1.mp4','video/1724165212559.mp4','video/1724165212559.mp4','video/thumbnail-VFeOzpZXqF.jpg',NULL,NULL,'local','',NULL,'2024-08-20 14:46:52','2024-08-20 14:46:52',NULL),(16,'video',20,'03 - BW Managing Anger 343 x 166 Episode 2.mp4','03 - BW Managing Anger 343 x 166 Episode 2.mp4','video/1724165603081.mp4','video/1724165603081.mp4','video/thumbnail-ve98h5VtIF.jpg',NULL,NULL,'local','',NULL,'2024-08-20 14:53:23','2024-08-20 14:53:23',NULL),(17,'video',21,'BW Managing Anger 343 x 166 Session 2 Mini Morsel Proverbs 1429.mp4','BW Managing Anger 343 x 166 Session 2 Mini Morsel Proverbs 1429.mp4','video/1724166026312.mp4','video/1724166026312.mp4','video/thumbnail-tEcCepiFgp.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:00:26','2024-08-20 15:00:26',NULL),(18,'video',22,'BW Managing Anger 343 x 166 Session 4 Mini Morsel Ephesians 426.mp4','BW Managing Anger 343 x 166 Session 4 Mini Morsel Ephesians 426.mp4','video/1724166480701.mp4','video/1724166480701.mp4','video/thumbnail-UfbbpNpF3W.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:08:00','2024-08-20 15:08:00',NULL),(19,'video',23,'BW Managing Anger 343 x 166 Session 3 Mini Morsel Colossians 38.mp4','BW Managing Anger 343 x 166 Session 3 Mini Morsel Colossians 38.mp4','video/1724166692391.mp4','video/1724166692391.mp4','video/thumbnail-YDXN2uQ62m.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:11:32','2024-08-20 15:11:32',NULL),(20,'video',24,'BW Managing Anger 343 x 166 Session 5.mp4','BW Managing Anger 343 x 166 Session 5.mp4','video/1724167156695.mp4','video/1724167156695.mp4','video/thumbnail-0kfeb6ZWfJ.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:19:16','2024-08-20 15:19:16',NULL),(21,'video',25,'BW Managing Anger 343 x 166 Session 6 Outro.mp4','BW Managing Anger 343 x 166 Session 6 Outro.mp4','video/1724167414493.mp4','video/1724167414493.mp4','video/thumbnail-A941nTWIL3.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:23:34','2024-08-20 15:23:34',NULL),(22,'video',26,'Biblical Apologies Session 1.mp4','Biblical Apologies Session 1.mp4','video/1724168264962.mp4','video/1724168264962.mp4','video/thumbnail-4FP23lTPpu.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:37:45','2024-08-20 15:37:45',NULL),(23,'video',27,'Biblical Apologies Session 2.mp4','Biblical Apologies Session 2.mp4','video/1724168421780.mp4','video/1724168421780.mp4','video/thumbnail-wlbgriMi5Z.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:40:21','2024-08-20 15:40:21',NULL),(24,'video',28,'Biblical Apologies Session 3.mp4','Biblical Apologies Session 3.mp4','video/1724168600079.mp4','video/1724168600079.mp4','video/thumbnail-pYMy2XzKrC.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:43:20','2024-08-20 15:43:20',NULL),(25,'video',29,'Biblical Apologies Session 4.mp4','Biblical Apologies Session 4.mp4','video/1724168804203.mp4','video/1724168804203.mp4','video/thumbnail-jMMgZxxocE.jpg',NULL,NULL,'local','',NULL,'2024-08-20 15:46:44','2024-08-20 15:46:44',NULL),(26,'video',30,'SM & Marriage  343 x 166 01-INTRO.mp4','SM & Marriage  343 x 166 01-INTRO.mp4','video/1724169851118.mp4','video/1724169851118.mp4','video/thumbnail-1RxNH7xZkE.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:04:11','2024-08-20 16:04:11',NULL),(27,'video',31,'SM & Marriage  343 x 166 02-SESSION 1.mp4','SM & Marriage  343 x 166 02-SESSION 1.mp4','video/1724170125707.mp4','video/1724170125707.mp4','video/thumbnail-zGgKQe9STU.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:08:45','2024-08-20 16:08:45',NULL),(28,'video',32,'SM & Marriage  343 x 166 03-SESSION 2.mp4','SM & Marriage  343 x 166 03-SESSION 2.mp4','video/1724170536899.mp4','video/1724170536899.mp4','video/thumbnail-4D29CfZhNn.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:15:37','2024-08-20 16:15:37',NULL),(29,'video',33,'_SM & Marriage  343 x 166 01-Episode 3.mp4','_SM & Marriage  343 x 166 01-Episode 3.mp4','video/1724170682158.mp4','video/1724170682158.mp4','video/thumbnail-fq1AbVcrEh.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:18:02','2024-08-20 16:18:02',NULL),(30,'video',34,'SM & Marriage  343 x 166 01-Episode 4.mp4','SM & Marriage  343 x 166 01-Episode 4.mp4','video/1724170876103.mp4','video/1724170876103.mp4','video/thumbnail-UXlHleBdfD.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:21:16','2024-08-20 16:21:16',NULL),(31,'video',35,'SM & Marriage  343 x 166 01-Episode 5.mp4','SM & Marriage  343 x 166 01-Episode 5.mp4','video/1724171101190.mp4','video/1724171101190.mp4','video/thumbnail-4VjPc42RVW.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:25:01','2024-08-20 16:25:01',NULL),(32,'video',36,'SM & Marriage  343 x 166 01-EPISODE 6.mp4','SM & Marriage  343 x 166 01-EPISODE 6.mp4','video/1724171259918.mp4','video/1724171259918.mp4','video/thumbnail-nuyUNzihYd.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:27:40','2024-08-20 16:27:40',NULL),(33,'video',37,'SM & Marriage  343 x 166 01-EPISODE 7.mp4','SM & Marriage  343 x 166 01-EPISODE 7.mp4','video/1724171399656.mp4','video/1724171399656.mp4','video/thumbnail-AQqEamFERW.jpg',NULL,NULL,'local','',NULL,'2024-08-20 16:29:59','2024-08-20 16:29:59',NULL),(34,'video',38,'Fiery Tongue Intro Video.mp4','Fiery Tongue Intro Video.mp4','video/1726772872284.mp4','video/1726772872284.mp4','video/thumbnail-QJcS6lwYWp.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:07:52','2024-09-19 19:07:52',NULL),(35,'video',39,'Fiery Tongue Episode 1.mp4','Fiery Tongue Episode 1.mp4','video/1726772995408.mp4','video/1726772995408.mp4','video/thumbnail-ECjVyaFbie.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:09:55','2024-09-19 19:09:55',NULL),(36,'video',40,'Fiery Tongue Episode 2.mp4','Fiery Tongue Episode 2.mp4','video/1726773363019.mp4','video/1726773363019.mp4','video/thumbnail-eQzTzGrSTu.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:16:03','2024-09-19 19:16:03',NULL),(37,'video',41,'Fiery Tongue Episode 3.mp4','Fiery Tongue Episode 3.mp4','video/1726773523685.mp4','video/1726773523685.mp4','video/thumbnail-PeDTPyLHgA.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:18:43','2024-09-19 19:18:43',NULL),(38,'video',42,'Fiery Tongue Episode 4.mp4','Fiery Tongue Episode 4.mp4','video/1726773700034.mp4','video/1726773700034.mp4','video/thumbnail-WLsGb7Knn2.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:21:40','2024-09-19 19:21:40',NULL),(39,'video',43,'Fiery Tongue Episode 5.mp4','Fiery Tongue Episode 5.mp4','video/1726773868478.mp4','video/1726773868478.mp4','video/thumbnail-46qk9nmQJO.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:24:28','2024-09-19 19:24:28',NULL),(40,'video',44,'Fiery Tongue Episode 6.mp4','Fiery Tongue Episode 6.mp4','video/1726774098265.mp4','video/1726774098265.mp4','video/thumbnail-qkKXqDYkcr.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:28:18','2024-09-19 19:28:18',NULL),(41,'video',45,'Fiery Tongue Episode 7.mp4','Fiery Tongue Episode 7.mp4','video/1726774319331.mp4','video/1726774319331.mp4','video/thumbnail-8U5PqvZxF3.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:31:59','2024-09-19 19:31:59',NULL),(42,'video',46,'Fiery Tongue Episode 8.mp4','Fiery Tongue Episode 8.mp4','video/1726774470239.mp4','video/1726774470239.mp4','video/thumbnail-aMs0zfbBzU.jpg',NULL,NULL,'local','',NULL,'2024-09-19 19:34:30','2024-09-19 19:34:30',NULL);
/*!40000 ALTER TABLE `media` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notification_settings`
--

DROP TABLE IF EXISTS `notification_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `notification_settings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned DEFAULT NULL,
  `meta_key` varchar(100) NOT NULL,
  `meta_value` text NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notification_settings_user_id_foreign` (`user_id`),
  KEY `notification_settings_meta_key_index` (`meta_key`),
  CONSTRAINT `notification_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_settings`
--

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

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `notifications` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `unique_id` varchar(200) NOT NULL,
  `identifier` varchar(200) NOT NULL,
  `actor_id` int unsigned DEFAULT NULL,
  `target_id` int unsigned DEFAULT NULL,
  `module` varchar(100) NOT NULL,
  `module_id` int NOT NULL,
  `module_slug` varchar(100) NOT NULL,
  `reference_module` varchar(255) DEFAULT NULL,
  `reference_id` int DEFAULT NULL,
  `reference_slug` varchar(100) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` text,
  `web_redirect_link` text,
  `is_read` enum('1','0') NOT NULL DEFAULT '0',
  `is_view` enum('1','0') NOT NULL DEFAULT '0',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `notifications_unique_id_unique` (`unique_id`),
  KEY `notifications_actor_id_foreign` (`actor_id`),
  KEY `notifications_target_id_foreign` (`target_id`),
  CONSTRAINT `notifications_actor_id_foreign` FOREIGN KEY (`actor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `notifications_target_id_foreign` FOREIGN KEY (`target_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1088 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` VALUES (1,'15df3e37ecc355b74b6d910fedcfebbd','announcement',2,3,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','This is a testing purpose announcement',NULL,'0','0','2024-07-30 09:10:02',NULL,NULL),(2,'faf8e59f2c28d6ffd7d66628c6bf76d3','announcement',2,9,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','This is a testing purpose announcement',NULL,'0','1','2024-07-30 09:10:02','2024-08-07 07:17:19',NULL),(3,'7473c0347f04c3962028bce71eaf0985','announcement',2,10,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','This is a testing purpose announcement',NULL,'0','1','2024-07-30 09:10:02','2024-09-19 10:50:09',NULL),(9,'ecf9772de1603004b2ef6be2feea642d','partner_request_accepted',10,13,'partners',10,'user-1',NULL,NULL,NULL,'Partner added','Partner added! You\'re now connected!',NULL,'0','1','2024-08-06 10:48:22','2024-08-06 12:05:31',NULL),(10,'bd3c44e398431fca8aff90af13646308','new_event_by_partner',10,13,'events',6,'cjuzj5lziasjsu',NULL,NULL,NULL,'New event added by User 1','New event added by User 1! Check it out!',NULL,'0','1','2024-08-06 10:49:09','2024-08-06 12:05:31',NULL),(11,'d16c77c5e1b9013947ac45627fee0cba','daily_quote_added',2,3,'bible_quotes',5,'cju10zolzid8jgv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-06 11:57:32',NULL,NULL),(12,'064a4cb96a81041fb9968b39ce339976','daily_quote_added',2,9,'bible_quotes',5,'cju10zolzid8jgv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-06 11:57:32','2024-08-07 07:17:19',NULL),(13,'9efd2453d8d8a5a1e88b25ca8cf7162f','daily_quote_added',2,10,'bible_quotes',5,'cju10zolzid8jgv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-06 11:57:32','2024-09-19 10:50:09',NULL),(15,'f804e8ec661a6527fb3b696c9acf6a4c','daily_quote_added',2,13,'bible_quotes',5,'cju10zolzid8jgv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-06 11:57:32','2024-08-06 12:05:31',NULL),(16,'9f9f2a3cff5d2208f405b2937af4c6b4','partner_event_updated',10,13,'events',6,'cjuzj5lziasjsu',NULL,NULL,NULL,'Update: User 1 edited their event. Take a look!','Update: User 1 edited their event. Take a look!',NULL,'0','1','2024-08-06 11:58:31','2024-08-06 12:05:31',NULL),(17,'8cd04e34149e28ac2d3e8a699a4f91ba','announcement',2,3,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','This is a testing purpose announcement\r\n',NULL,'0','0','2024-08-06 12:09:41',NULL,NULL),(18,'d5dba9bb13d7da779ea6cbac7c90b3f5','announcement',2,9,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','This is a testing purpose announcement\r\n',NULL,'0','1','2024-08-06 12:09:41','2024-08-07 07:17:19',NULL),(19,'1d494c25a661d0cd43a874692fd08600','announcement',2,10,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','This is a testing purpose announcement\r\n',NULL,'0','1','2024-08-06 12:09:41','2024-09-19 10:50:09',NULL),(21,'f4c40652cb2afb814bd34d75aa5e01a6','announcement',2,13,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','This is a testing purpose announcement\r\n',NULL,'0','0','2024-08-06 12:09:41',NULL,NULL),(22,'85e5d4dc7c627f2cf7e035368113c2bf','daily_quote_added',2,3,'bible_quotes',6,'cju111clzidx01w',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-06 12:16:34',NULL,NULL),(23,'8c4672359a54034afcbaeb5bb403e208','daily_quote_added',2,9,'bible_quotes',6,'cju111clzidx01w',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-06 12:16:34','2024-08-07 07:17:19',NULL),(24,'740e465c2a9142be4c9a181aef4c6ecd','daily_quote_added',2,10,'bible_quotes',6,'cju111clzidx01w',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-06 12:16:34','2024-09-19 10:50:09',NULL),(26,'afb8eb38742332bba3f3b236ee2267f4','daily_quote_added',2,13,'bible_quotes',6,'cju111clzidx01w',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-06 12:16:34',NULL,NULL),(27,'762691b7d37e3f2e8f6c1904de0bcd24','daily_quote_added',2,3,'bible_quotes',7,'cju10yslzidy1m6',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-06 12:17:22',NULL,NULL),(28,'356621324692818529e2ad4911ff4f9b','daily_quote_added',2,9,'bible_quotes',7,'cju10yslzidy1m6',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-06 12:17:22','2024-08-07 07:17:19',NULL),(29,'23c92ed3cea6c5fa949e9545034e57c4','daily_quote_added',2,10,'bible_quotes',7,'cju10yslzidy1m6',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-06 12:17:22','2024-09-19 10:50:09',NULL),(31,'db53b15ffa54a3ab61a611d33f6404eb','daily_quote_added',2,13,'bible_quotes',7,'cju10yslzidy1m6',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-06 12:17:22',NULL,NULL),(38,'273beeb47171c9c8826f5fcecb563e9c','partner_request_accepted',14,9,'partners',14,'sam',NULL,NULL,NULL,'Partner added','Partner added! You\'re now connected!',NULL,'0','1','2024-08-06 14:27:49','2024-08-07 07:17:19',NULL),(39,'419c1b8cbabe5a0cd94f72b051619fe9','partner_request_accepted',9,14,'partners',9,'alex',NULL,NULL,NULL,'Partner added','Partner added! You\'re now connected!',NULL,'0','1','2024-08-07 07:17:22','2024-09-19 09:51:39',NULL),(40,'380efeb65474abe0d940f50a207b0633','daily_quote_added',2,3,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(41,'fa35fa6d235a8244edac13bb7c96bb57','daily_quote_added',2,9,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(42,'918f66d6214eb150cca691b43621db10','daily_quote_added',2,10,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-08 11:21:56','2024-09-19 10:50:09',NULL),(43,'01a6285a2214f0d4a0460eb743c32005','daily_quote_added',2,13,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(44,'fd11f3d2201526fd5b854dbc133e05d1','daily_quote_added',2,14,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-08 11:21:56','2024-09-19 09:51:39',NULL),(45,'a0ff1cd135ef195c0135e81887986738','daily_quote_added',2,15,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(46,'aea389db14cd9c6d6df3f9d5f4d5833b','daily_quote_added',2,17,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(47,'b0dd7ffca24a4719d81db95907bf86d7','daily_quote_added',2,19,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(48,'1d308fd90b5d7b15371b24d90045cb1f','daily_quote_added',2,20,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(49,'61e8181f87fc8e94b470915254a2e094','daily_quote_added',2,21,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:21:56',NULL,NULL),(50,'58f3e37f7d1967cbf82b30b0e90ca00c','daily_quote_added',2,22,'bible_quotes',8,'cju13jalzl6uggb',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'1','1','2024-08-08 11:21:56','2024-09-20 14:46:47',NULL),(51,'40f831bd8e9944c10dc5fa608d408a57','daily_quote_added',2,3,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(52,'3af3e64b200a5a84b9c12d630e63d9d4','daily_quote_added',2,9,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(53,'a0c867ddc76d7c3c4b9848c8d6f98bd7','daily_quote_added',2,10,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-08 11:23:18','2024-09-19 10:50:09',NULL),(54,'c165a913d422aaeaaf5288b60ff9b026','daily_quote_added',2,13,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(55,'585f8678bfee7599c7f3880d33b750c7','daily_quote_added',2,14,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-08 11:23:18','2024-09-19 09:51:39',NULL),(56,'54c509252834f4abb01c41cbfef58084','daily_quote_added',2,15,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(57,'fbc9855c5f0350ec3d02638a501301ab','daily_quote_added',2,17,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(58,'e6592962b432822e17e1fb7b4871954a','daily_quote_added',2,19,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(59,'58b734cc83b39246f10b0d5d40cc7780','daily_quote_added',2,20,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(60,'fe5458476c455e231fc35072af464557','daily_quote_added',2,21,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-08 11:23:18',NULL,NULL),(61,'5831ebdc6bcb33eeeae4d1f49af0297d','daily_quote_added',2,22,'bible_quotes',9,'cju13kylzl6w7ok',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'1','1','2024-08-08 11:23:18','2024-09-20 14:46:47',NULL),(62,'847858151cd3ca6198ed62ea2f6a60a2','daily_quote_added',2,3,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(63,'e32a7a4807fc73dbd47fac573e2a011c','daily_quote_added',2,9,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(64,'a6347763d4083aaab48f0851561ac893','daily_quote_added',2,10,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-09 11:56:47','2024-09-19 10:50:09',NULL),(65,'4f00ab2bae467668c67d103d98b975b1','daily_quote_added',2,13,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(66,'fb8c6eddfb3eac941ff7cbdb4d539699','daily_quote_added',2,14,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-09 11:56:47','2024-09-19 09:51:39',NULL),(67,'df2dd5beae81d6ed4292f3c883457d2a','daily_quote_added',2,15,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(68,'ebe10e5985aee4d2dc7d48caf89d1355','daily_quote_added',2,17,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(69,'e2d0fda98235b06248898f5e9371da9f','daily_quote_added',2,19,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(70,'4367de159888abf7644160fa802ddd38','daily_quote_added',2,20,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(71,'c20f5d3a508434387904658022f440ef','daily_quote_added',2,21,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(72,'eff959386b10d247328a166d7e5d36e4','daily_quote_added',2,22,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-09 11:56:47','2024-09-20 14:46:47',NULL),(73,'9d711c9423a2f9b700e9cc7e3bfdb107','daily_quote_added',2,23,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(74,'c48d10b8ae1b1e3a89e57489fadffd2d','daily_quote_added',2,24,'bible_quotes',10,'cju14cwlzmnj4ps',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-09 11:56:47',NULL,NULL),(75,'f21c2deb79d996cbd56bd78db6cbc13e','daily_quote_added',2,3,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(76,'a98c27b0531d2821143184aaaecf3810','daily_quote_added',2,9,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(77,'021253dbd1e359992313897348085618','daily_quote_added',2,10,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-19 17:40:45','2024-09-19 10:50:09',NULL),(78,'d04de621ca9317b30eeb93f65f0c0a48','daily_quote_added',2,13,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(79,'a26d3cada072c7cbb26d126138c9f450','daily_quote_added',2,14,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-19 17:40:45','2024-09-19 09:51:39',NULL),(80,'56fcf1e289ccd54e70a6ebf72d1dcc2f','daily_quote_added',2,15,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(81,'c42bcee29422fe11dddc099de5d3d2f6','daily_quote_added',2,17,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(82,'212d06eb21ba4bc4a01f17c040558514','daily_quote_added',2,19,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(83,'38e7fba1d396159347bfac3fca84cbbe','daily_quote_added',2,20,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(84,'e60e445cdcb0cbf179d5f38b3866cc69','daily_quote_added',2,21,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(85,'705146ddc3907590594f26c70ae735d2','daily_quote_added',2,22,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-19 17:40:45','2024-09-20 14:46:47',NULL),(86,'74b8b13940496fac08aca2332129e47c','daily_quote_added',2,23,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(87,'b705fbe1ae7f933fafdecadde1f26581','daily_quote_added',2,24,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(88,'cf4d067b45a5934c81738e3682356453','daily_quote_added',2,25,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(89,'eba9d298e7cf16c253e676ea5d1174d4','daily_quote_added',2,26,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(90,'a557cf26ce76ac6ea6f3ef4b1c137d63','daily_quote_added',2,27,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(91,'b9d7bffbe8b76709b54802c1de884e28','daily_quote_added',2,28,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(92,'f37db1075e3d225377481998bf883c9c','daily_quote_added',2,29,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(93,'c036d79e59fdb524db071786a2c6b014','daily_quote_added',2,30,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(94,'10b9e239fe229e2de3dd8f3ba7cc1af9','daily_quote_added',2,31,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(95,'96918307ba2e679ddc5a463899d373f2','daily_quote_added',2,32,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-19 17:40:45','2024-08-22 22:27:15',NULL),(96,'a4fad3d999804ebeeb71525558cf8d21','daily_quote_added',2,33,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(97,'92484da478e7035c746590a15663b1da','daily_quote_added',2,34,'bible_quotes',11,'cju5mkm01a7zpv',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-19 17:40:45',NULL,NULL),(98,'2bcfeaccef08bb9e909870d940e621ab','daily_quote_added',2,3,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(99,'55c6560b7fb766de958299063d4ce151','daily_quote_added',2,9,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(100,'9ac6f36b0022c7ae0cefbfa5457c3d5e','daily_quote_added',2,10,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-20 17:28:45','2024-09-19 10:50:09',NULL),(101,'95ddf5949b6c2be5b2497e0429b5a528','daily_quote_added',2,13,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(102,'64ae3b090b516d9dcd01ea706e309eaf','daily_quote_added',2,14,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-20 17:28:45','2024-09-19 09:51:39',NULL),(103,'b8a7b42929a0aadb38287bc6fcb42358','daily_quote_added',2,15,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(104,'d63cf3f9b82b182430d6ff1dc7b0a9ac','daily_quote_added',2,17,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(105,'a7da8eeca89684856071450b2a48e37e','daily_quote_added',2,19,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(106,'459d6e20984d10348b4115d9462cd823','daily_quote_added',2,20,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(107,'59b8cb02d74d1cdcf703b62d02f40620','daily_quote_added',2,21,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(108,'676e821c2a226fb9c9eb6cb103c1c56d','daily_quote_added',2,22,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-20 17:28:45','2024-09-20 14:46:47',NULL),(109,'346e5f9204702b70682f1abfbe434413','daily_quote_added',2,23,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(110,'4e7aa02c774f4d81cc5a259c88b4005b','daily_quote_added',2,24,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(111,'b2750d4fb4e6178b1dafde6daab360ee','daily_quote_added',2,25,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(112,'51ec1f7d982c8f32454e379016333b70','daily_quote_added',2,26,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(113,'95df8c3d6a6895cc1adbec5ac3aac670','daily_quote_added',2,27,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(114,'249e1f358895b755bd03e724720daf61','daily_quote_added',2,28,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(115,'a88d02f9876af5117d82537ce31c3485','daily_quote_added',2,29,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(116,'6f1c08dd6c69d60b4a7280983e35d328','daily_quote_added',2,30,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(117,'5ad406d6ec8b47c3fb6a412de02255ce','daily_quote_added',2,31,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(118,'5023fcd42a5ae44c96e6a6a6d50ce75a','daily_quote_added',2,32,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-08-20 17:28:45','2024-08-22 22:27:15',NULL),(119,'c6f26d138d09b26b08a33fc41ee25a38','daily_quote_added',2,33,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(120,'1a1d2544d2164b7d4b4a32ad77acc58a','daily_quote_added',2,34,'bible_quotes',12,'cju5mkm02p8el7',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-08-20 17:28:45',NULL,NULL),(121,'2d5ef178302f2d4c19f85efc67f567c1','partner_request_accepted',53,51,'partners',53,'kameron-carle',NULL,NULL,NULL,'Partner added','Partner added! You\'re now connected!',NULL,'0','1','2024-09-06 03:56:16','2024-09-06 03:58:06',NULL),(122,'337a65a9d768bdea8d45c6e75782c1de','daily_quote_added',2,3,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(123,'38d61e9713703aae91c0eb1b59381461','daily_quote_added',2,9,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(124,'9c9069eff040a4a28650e817639e0536','daily_quote_added',2,10,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-09-16 20:33:48','2024-09-19 10:50:09',NULL),(125,'77efd9c6f5cc8e8a0fd1b8e40fb99ad2','daily_quote_added',2,13,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(126,'a418c81bffadb77211654621b94c1ce8','daily_quote_added',2,14,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-09-16 20:33:48','2024-09-19 09:51:39',NULL),(127,'5b5a0377a9abbd52667af2c96d5d8509','daily_quote_added',2,15,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(128,'d96c19bc3fe0b160e902cf3275b6de6a','daily_quote_added',2,17,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(129,'d277077688ee6add2b70ea7369c2176b','daily_quote_added',2,19,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(130,'ffe84cdea65a90f1cc293f6e74426921','daily_quote_added',2,20,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(131,'fd123c3ec28d7195616d3d9815bda788','daily_quote_added',2,21,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(132,'17231cf6d873a0400519f2e6868cb36d','daily_quote_added',2,22,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-09-16 20:33:48','2024-09-20 14:46:47',NULL),(133,'aff3d9c8e7d15719fcfe52ee9585055c','daily_quote_added',2,23,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(134,'76e44de0125d2f2ae74d23bd6b2a665c','daily_quote_added',2,24,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(135,'59eed0dd75217169db034ec9412f0ae7','daily_quote_added',2,25,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(136,'e18b68d018f3de38ac0eecbffaaa31be','daily_quote_added',2,26,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(137,'88b640ea676922cd1257f5fcca0aac9a','daily_quote_added',2,27,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(138,'3b3ae757ca17a8dee633076abf188e1d','daily_quote_added',2,28,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(139,'286dff62b95ec18d4be4c40cabbaf34b','daily_quote_added',2,29,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(140,'a5dd32f22eef3570da6d94941e9cfea4','daily_quote_added',2,30,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(141,'cf4b39c39a470f39e266d5cd05aabf4b','daily_quote_added',2,31,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(142,'ebd904543ab5a381bf42dd93130ab38a','daily_quote_added',2,32,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(143,'77903a29da27cee06c5f89109d2a3302','daily_quote_added',2,33,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(144,'861790169f18b8b0d1e3853b808f3f39','daily_quote_added',2,34,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(145,'7e09ffb9c5cfbde8a93b5c2af2f3edac','daily_quote_added',2,35,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(146,'576a85ddbd4749f0c0c94cedfaa0375c','daily_quote_added',2,36,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(147,'4c83451be3b932415982d362511ac929','daily_quote_added',2,37,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(148,'a8580c0677dc89339e046b7e1171b173','daily_quote_added',2,38,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','1','2024-09-16 20:33:48','2024-09-18 10:35:36',NULL),(149,'c055a5f53c9a617787bb84c92abafa3d','daily_quote_added',2,39,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(150,'9f3bf63f5d6f64139c329fb117ad3c18','daily_quote_added',2,40,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(151,'2aaf93308c137b611bc2a0cca7f21c5e','daily_quote_added',2,41,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(152,'4820c7666bac48ebab53cc84f913d384','daily_quote_added',2,42,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(153,'e6e0fc51700a3da46eb64732f69c55b3','daily_quote_added',2,43,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(154,'49a7f16bd90df6e7635658da79fd3bb6','daily_quote_added',2,44,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(155,'ef0faa13c687f1c3589b69a458c23c3e','daily_quote_added',2,45,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(156,'89b51ffa62db94ad916558355cddc50a','daily_quote_added',2,47,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(157,'8d55b126c25c0c224f6475a1d309dbc9','daily_quote_added',2,48,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(158,'5721802dc542e2a332cc9bbd01f7b3b9','daily_quote_added',2,49,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(159,'fba9a00e834c3f60ef7bf1240964aa06','daily_quote_added',2,50,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(160,'a989ef0245b60c25204c77e0efd7d0de','daily_quote_added',2,51,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(161,'3934cb98556be7c21f5c157087536aab','daily_quote_added',2,52,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(162,'125628652149ff4f0e4a38a6513314fe','daily_quote_added',2,53,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(163,'0be6131bb44189398ab9ea1266eb45c4','daily_quote_added',2,54,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(164,'197865c7ee7e4c1eb5b949ba76179d05','daily_quote_added',2,55,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(165,'ab47f6c8da5c43ee9fc1bc66ceef34d3','daily_quote_added',2,56,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(166,'5b39bad13c29af964538763b527a9ecc','daily_quote_added',2,57,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(167,'9f85f3326ba3868c798db1f0b33c5ef9','daily_quote_added',2,58,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(168,'420cca0d2365cb8abb55ead78e2efc39','daily_quote_added',2,60,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(169,'fdf194c9729f59d1b5d37a21b7e449f2','daily_quote_added',2,61,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(170,'6df526a8623af6399fec43dfebd78b1a','daily_quote_added',2,62,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(171,'69ebc9d07558471f5903c802d703b964','daily_quote_added',2,63,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(172,'b61a8bd18058e2afbd0aad5f9b1e7dc1','daily_quote_added',2,64,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(173,'f836c55eb4f7f540e33197b62517c3f3','daily_quote_added',2,66,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(174,'73212114456c1a5b5dbde058587ae2f7','daily_quote_added',2,67,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(175,'3b735c25cd09754686d5d57117c9e352','daily_quote_added',2,68,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(176,'bb64b146fbf397c6baa8f29ed641d84a','daily_quote_added',2,69,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(177,'34441fe431d7ba9c9d22478022b1a59d','daily_quote_added',2,70,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(178,'10cfd95a3686937697ec5914ce3fa965','daily_quote_added',2,71,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(179,'1b68a60ae905ba681b3b7e5d6dd45361','daily_quote_added',2,72,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(180,'696ef0da8550e18a6c21dd94312d753d','daily_quote_added',2,73,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(181,'8323abae29d35d253b3436a319336cd4','daily_quote_added',2,74,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(182,'8c21ee330b21a71de96bc28a0884bdcd','daily_quote_added',2,75,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(184,'a6e66e8d265cef907974aecae1e119da','daily_quote_added',2,77,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(185,'771a22386798f939c99861c6ac6a48b2','daily_quote_added',2,78,'bible_quotes',13,'cju44p8m15gqdql',NULL,NULL,NULL,'Daily quotes added by the admin','Explore our latest quotes now!',NULL,'0','0','2024-09-16 20:33:48',NULL,NULL),(186,'1c6078f7de67b8306a4590e1970d7f7b','announcement',1,3,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(187,'b110ade6f97554345972ac93f27a257c','announcement',1,9,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(188,'ccecb7a1d984dace8e4d05642f934b83','announcement',1,10,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','1','2024-09-17 11:40:04','2024-09-19 10:50:09',NULL),(189,'9c7c43ccf341e52bfe60d5eccc785451','announcement',1,13,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(190,'d4fb7651a57a0099cff97ada45095fd3','announcement',1,14,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'1','1','2024-09-17 11:40:04','2024-09-19 09:51:39',NULL),(191,'2db0906325f7a1d0abc49efcc99d0e04','announcement',1,15,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(192,'d05d76459813246620adc99bc868a8ad','announcement',1,17,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(193,'2761d68be8f1368d8946eaa03626ce10','announcement',1,19,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(194,'477d546e2c5bc173a50b61c43f8d16af','announcement',1,20,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(195,'75edfded0beaa666259e858726871bce','announcement',1,21,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(196,'2b353ddd56d67ad1e2020920a15940b2','announcement',1,22,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','1','2024-09-17 11:40:04','2024-09-20 14:46:47',NULL),(197,'4f7ab4f588c0bf25f1edba8a15012d2b','announcement',1,23,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(198,'395c53376df8276285e8b0dca716ab67','announcement',1,24,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(199,'ffc043e929c6b8ecfee903a1935335b9','announcement',1,25,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(200,'bd7a77d7416a93098e903e0f118eb5ee','announcement',1,26,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(201,'55fda29943ca7a7d7bd8f08533748546','announcement',1,27,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(202,'08425defe29b469ecbd6ebfb546790bf','announcement',1,28,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(203,'1d6a2f01da3e4df71c4b8720b5e365c7','announcement',1,29,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(204,'c2a593c3df975e5bd1947cf2783e3ef8','announcement',1,30,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(205,'185360f682dfa0c17acd9a8da4f9494c','announcement',1,31,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(206,'27487cb20a836dc369c1d7b84c14d184','announcement',1,32,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(207,'a893c255ee72da2b38ec23549f17b8db','announcement',1,33,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(208,'055fcca02f3f07b6c34d167d90a59ccd','announcement',1,34,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(209,'0f390d211b1dd534409b7a219e221ab4','announcement',1,35,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(210,'eaabc62976e1361d60619794df6d6a8c','announcement',1,36,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(211,'43b4f3e48f48c5062cc2dd9095542866','announcement',1,37,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(212,'7ed3fd41979bf4ec366d576c651f1c70','announcement',1,38,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','1','2024-09-17 11:40:04','2024-09-18 10:35:36',NULL),(213,'f9f592fcc371ede955bce0736ca1a799','announcement',1,39,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(214,'7a4732f651f56a348da05a5a0325bd54','announcement',1,40,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(215,'6c456e46587cf04a7ca8bd506d8f9832','announcement',1,41,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(216,'ed39e223b6fb94d929c88fa697db0c46','announcement',1,42,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(217,'1e92dc5daf8bc1410f86966b200cd59a','announcement',1,43,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(218,'86e08f72763d98bc9c444f5f5308a244','announcement',1,44,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(219,'ff845d4fb8400d30e017aff9537db32e','announcement',1,45,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(220,'eb9dbcfc2fdf3b1dd49363625300d3b1','announcement',1,47,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(221,'55b1d28fcce02dabd2df527d2c70d353','announcement',1,48,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(222,'e9b640a77d4b32a73f0a2778c678ea59','announcement',1,49,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(223,'7504f3ee7f59b8ea1539f66457c33219','announcement',1,50,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(224,'9342b94dd9074899b9537f29a5bc256f','announcement',1,51,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(225,'78dc513ee27ed65009e30a8fd54add67','announcement',1,52,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(226,'1eabbbfe2fab8f787e515b36803c8c4e','announcement',1,53,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(227,'5f48e571f06667e647cf0aaae65c9cb0','announcement',1,54,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(228,'e50fd9e088a78a979453b46dc3215f58','announcement',1,55,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(229,'96063e91243397457797a59ff059203d','announcement',1,56,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(230,'bac5bbab1a7f955c9b6bddeec7e79a68','announcement',1,57,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(231,'bc3799df248a01114c1bdb0cb56ba9f8','announcement',1,58,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(232,'13c2e4cbeb07a892614332640f9edd6f','announcement',1,60,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(233,'ddcba6418690696559899523c9f26090','announcement',1,61,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(234,'11d1887c308d52c361865621dc581573','announcement',1,62,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(235,'73645eb5d35c7999d1f310f699ca273a','announcement',1,63,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(236,'6830ebdb3828598d24292f245d3892e9','announcement',1,64,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(237,'7293b0e355c71e15c77a9ea26587edae','announcement',1,66,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(238,'6bf052e07475753df0d3940c0f267b37','announcement',1,67,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(239,'4469ba0485c8b75d49b0c7da83e356e3','announcement',1,68,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(240,'a54919d2abf77c5102600e417dd9ed52','announcement',1,69,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(241,'9fb40dbcc29796f83ccb4f6b5d61d3a0','announcement',1,70,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(242,'ab40a6f3f5b14ebfba641941363077a5','announcement',1,71,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(243,'29b73b9fb8857708636e06569837dc6d','announcement',1,72,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(244,'47a990e6dec97f8970cab786ea71fbf7','announcement',1,73,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(245,'12452cd625283ad6f6e71fcda8d89c23','announcement',1,74,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(246,'00dc1345bd5d0cac6d591ea56139af45','announcement',1,75,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(248,'010691532535a2b0f67ffaa60e0a674c','announcement',1,77,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(249,'26cb6d470d703f55e66c11cc721b5521','announcement',1,78,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(250,'95a884434f5e0c1c24821988a17cee67','announcement',1,79,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(251,'713c67bdbffcbf189d2600f7e0c94b4a','announcement',1,80,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(252,'6448a6e15309f6a30f2dedd5f4626673','announcement',1,81,'announcement',0,'0',NULL,NULL,NULL,'Kingdom Couples','Test Announcement\r\n',NULL,'0','0','2024-09-17 11:40:04',NULL,NULL),(253,'c754ecabfb9892375c1a8aa99ee457af','daily_quote_added',1,3,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(254,'44b794f1f0e5102fea84adb1504a68ab','daily_quote_added',1,9,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(255,'135b6ea4cc057f883ee271b4b74e3ccc','daily_quote_added',1,10,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-17 11:42:29','2024-09-19 10:50:09',NULL),(256,'e46246010602413e416529c249404ea7','daily_quote_added',1,13,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(257,'a8019dbcc9558ebf6cc7921c1ceb88da','daily_quote_added',1,14,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-17 11:42:29','2024-09-19 09:51:39',NULL),(258,'4a9ad09e415aa6cebc1b8be10765a8db','daily_quote_added',1,15,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(259,'b64019fe2bca312ff24c1544f3824524','daily_quote_added',1,17,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(260,'4d0c10db3ffbdadd8f93643dde485f11','daily_quote_added',1,19,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(261,'050bb656766db9d50c18db3ac48024b9','daily_quote_added',1,20,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(262,'b7a55c29d6be3d7522ebe05ce5e410fe','daily_quote_added',1,21,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(263,'5412febe7abfe1e45d219df9cf7a5a3b','daily_quote_added',1,22,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-17 11:42:29','2024-09-20 14:46:47',NULL),(264,'2f0e5f0aa1ab8f310de44fa381d5e4d1','daily_quote_added',1,23,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(265,'057e48a610ec2367d522f53a5c1f71a6','daily_quote_added',1,24,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(266,'eae77dc6611ba4c33fc911f03bd2885a','daily_quote_added',1,25,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(267,'eb058f467140d543e87650d8f88170e4','daily_quote_added',1,26,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(268,'bdcc7ff922badc98b218ce998cd8af72','daily_quote_added',1,27,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(269,'c12b60be56500e66c77fc3f9ad765b4a','daily_quote_added',1,28,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(270,'a8028fffdbbabf343403785910a21399','daily_quote_added',1,29,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(271,'ff91fb59c10b86c8c5fba611d0344363','daily_quote_added',1,30,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(272,'b50f6ef9ded66244409fa3cac545657e','daily_quote_added',1,31,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(273,'26fc31c50d8e48156a6cce35ad95cda6','daily_quote_added',1,32,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(274,'2abaff9d0e5ade4084ff711b1b21f172','daily_quote_added',1,33,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(275,'c46808f9817c5b386c52bc982cbce032','daily_quote_added',1,34,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(276,'ae8ae94959a311f73416dd95bcef8f90','daily_quote_added',1,35,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(277,'7568bf636aae447ae2883955c6b4c638','daily_quote_added',1,36,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(278,'29c0d886b171f808e100f6ce3f7bd040','daily_quote_added',1,37,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(279,'d0c62d30b9c1ca9e2b436eddb986dd40','daily_quote_added',1,38,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-17 11:42:29','2024-09-18 10:35:36',NULL),(280,'a760dcb6b7eea80a10a0e9d4115f0890','daily_quote_added',1,39,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(281,'df85fa6e243f11835427c4c1fd45e029','daily_quote_added',1,40,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(282,'ab671d0be3ddc3851df039cb94d5e8fb','daily_quote_added',1,41,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(283,'8f1a481ea72292ffef58f5bc4b85c9eb','daily_quote_added',1,42,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(284,'4e0aecca14d38f125b4e21795aa0be1e','daily_quote_added',1,43,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(285,'d94c49e31159b3fc5d9d867500714dc4','daily_quote_added',1,44,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(286,'a22ac0c72e388dcbf468e6db7ff72205','daily_quote_added',1,45,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(287,'52274fb2a0f910704105d07b2108de63','daily_quote_added',1,47,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(288,'cb1839207d1c6f8c88c838dcd3232eb2','daily_quote_added',1,48,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(289,'4dfff052f47fa687376e3b87c5361d16','daily_quote_added',1,49,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(290,'977333e374fb166144fd6c5bdc2ea258','daily_quote_added',1,50,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(291,'4e046451312b545ac82588e0b529d51f','daily_quote_added',1,51,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(292,'b34f24a50ca711f73a2ab3e65d4d1ae2','daily_quote_added',1,52,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(293,'6feffcf354b2faa40bee15067467cfac','daily_quote_added',1,53,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(294,'759cd6bac0703fe26fa5dc07be3e0997','daily_quote_added',1,54,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(295,'f627ae72c846b5a1173205b4bcb26677','daily_quote_added',1,55,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(296,'2e99bbc05b23b727c8a2d01ddc8323ce','daily_quote_added',1,56,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(297,'4d69f1ccca8fd0e41f117bcf5782e9b6','daily_quote_added',1,57,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(298,'29dcda52fd9a986cf76acc8347dbbaae','daily_quote_added',1,58,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(299,'93a8313db0a8b21228bca60ca656a800','daily_quote_added',1,60,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(300,'d18d6edf2c0250c085ced735e4085610','daily_quote_added',1,61,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(301,'15e50e0326976e429a56b0b4a9d2187d','daily_quote_added',1,62,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(302,'1dbe22b3962d228b38945f4e651197c5','daily_quote_added',1,63,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(303,'c83d31ef25e5800520960c03e78f61f9','daily_quote_added',1,64,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(304,'7eb1b028567e90726a270b2fa34c46cf','daily_quote_added',1,66,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(305,'132fbe3ceeab689d5976eba1a261e825','daily_quote_added',1,67,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(306,'1326512ce6d163897e7753148bf04d6c','daily_quote_added',1,68,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(307,'4b067f87418efa6ae0e8efab00bcd378','daily_quote_added',1,69,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(308,'0ba272cb6358d620030f62044236bea0','daily_quote_added',1,70,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(309,'706bea981e9073ea1d9c9ef99ec4bb45','daily_quote_added',1,71,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(310,'be524b74518636e6040f6eb976fdce47','daily_quote_added',1,72,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(311,'fca2797b5630edba56e14e9231271e53','daily_quote_added',1,73,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(312,'90bd7319aef33c71d971ee087d757c8a','daily_quote_added',1,74,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(313,'f402b6bd21e6dca61fc8372e0c09f1c0','daily_quote_added',1,75,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(315,'dc14eb4a79b3df1f85ee70dd633494c7','daily_quote_added',1,77,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(316,'14ad80f6a73722934a4aed2462ef1ba4','daily_quote_added',1,78,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(317,'93b06cf15bd7f0910b3693e141751e4a','daily_quote_added',1,79,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(318,'81e4778bb46592bff31ef6a3db9fe031','daily_quote_added',1,80,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(319,'09b0b4d933ba1a2404d1be421bc5cc59','daily_quote_added',1,81,'bible_quotes',14,'cju48lvm16d6yf1',NULL,NULL,NULL,'Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-17 11:42:29',NULL,NULL),(320,'ca8a8b421a48b9786f3cea3eca4781fc','daily_quote_added',1,3,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(321,'205b7a8a290e49a2744386be96e0ad3a','daily_quote_added',1,9,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(322,'37d6f937291ec0ec550429da036968d4','daily_quote_added',1,10,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:41:30','2024-09-19 10:50:09',NULL),(323,'1da51c303e5a7542b2780bebab8d612c','daily_quote_added',1,13,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(324,'763132ec50898e6e4b16c28d0204cdd2','daily_quote_added',1,14,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:41:30','2024-09-19 09:51:39',NULL),(325,'65c3b8b560bd1880c55cf0ae931551bb','daily_quote_added',1,15,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(326,'a1de1830d6c1b036494dd9e576034677','daily_quote_added',1,17,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(327,'5087a7db0f4b8163b998c90359346020','daily_quote_added',1,19,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(328,'71d38f02eea85c6b606ad8bd5066ccc1','daily_quote_added',1,20,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(329,'0877bbfcc56ab772bc0a11935d53779c','daily_quote_added',1,21,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(330,'c2ed4645960b18310dca5efa534856bc','daily_quote_added',1,22,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:41:30','2024-09-20 14:46:47',NULL),(331,'3178fdb9f454b718cb5e8553eaf5e78e','daily_quote_added',1,23,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(332,'037f0ac11f38477a08e80d21beba2380','daily_quote_added',1,24,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(333,'57ea1507d6de8c2eb03f371471a8415e','daily_quote_added',1,25,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(334,'6efadc6b483197fca5aa7275f3fa9f64','daily_quote_added',1,26,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(335,'2eddb7741962027f62470231bbd4617b','daily_quote_added',1,27,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(336,'1d2d5da74a6ee1fe95bf74a5ebe10f47','daily_quote_added',1,28,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(337,'57a91e0ff40c8b365a40f2bed1f23bb1','daily_quote_added',1,29,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(338,'61ec114c8d315f60d8102ebcdca8dc21','daily_quote_added',1,30,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(339,'af1f322feaf916c3911677b479ecbe29','daily_quote_added',1,31,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(340,'13ab8d435b67e1c31edf4d882622f0ee','daily_quote_added',1,32,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(341,'8a08fa4315ea5e05d3d92706c3c45b65','daily_quote_added',1,33,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(342,'fb5e23833780f06ef808f5b406bf3715','daily_quote_added',1,34,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(343,'4e38540a6cc484b7cfe344cea5422655','daily_quote_added',1,35,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(344,'83df53b2c33a34ffdce85824f50f182c','daily_quote_added',1,36,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(345,'67eb85f1b569ed615ecb9150a1de93b7','daily_quote_added',1,37,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(346,'d86762ba012ae03ca2c20dc5744fd913','daily_quote_added',1,38,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:41:30','2024-09-18 10:35:36',NULL),(347,'a0a8d37355f301873e13fb8a133c559f','daily_quote_added',1,39,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(348,'e66daab10a762caeab77cf2945c0dccb','daily_quote_added',1,40,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(349,'6ad2e136423bb196756c68700226c433','daily_quote_added',1,41,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(350,'13b0a874b55b6bee12540c2313007a11','daily_quote_added',1,42,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(351,'95caae9c13571cd1b58ca189d4ea16aa','daily_quote_added',1,43,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(352,'9e281926c3516abc813bde50868bc15a','daily_quote_added',1,44,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(353,'81eace9069755c40dea82aefd0ef066d','daily_quote_added',1,45,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(354,'64bd1de35eb5631239b09590cd2c6c80','daily_quote_added',1,47,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(355,'5a7b3ce70d280d3246d16696adf998f5','daily_quote_added',1,48,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(356,'cfc3ae47cfeb5b7580c51dfbe7209f69','daily_quote_added',1,49,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(357,'3beb9fdf4aa588a52f3d1053d117e598','daily_quote_added',1,50,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(358,'84ebcebb09bf2e79f160997f338f252e','daily_quote_added',1,51,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(359,'b0a42f86d2a955d249fb0426843cf1b2','daily_quote_added',1,52,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(360,'f51b1b9c1cd0e56377280bb98e96542a','daily_quote_added',1,53,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(361,'f6416c2c3b92c2bfb9e0294fd430b0ed','daily_quote_added',1,54,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(362,'e82fce71ccf8c3222e4b01577ef47188','daily_quote_added',1,55,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(363,'5aa7b80f15e9ac860424f24d0aeb8d8f','daily_quote_added',1,56,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(364,'1a778cb857992dcdf5eadd04c302c52f','daily_quote_added',1,57,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(365,'7b3c3bda52187a809909eeeb61946614','daily_quote_added',1,58,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(366,'995ef29238da064b52a77f4e75b779f6','daily_quote_added',1,60,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(367,'210172d075d0174509e14de6476b0dd8','daily_quote_added',1,61,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(368,'69ebae6237f66c9aa7815655bebdb103','daily_quote_added',1,62,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(369,'d1ca934ffd5b353c5b7aa5bb69b5e184','daily_quote_added',1,63,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(370,'9a853e0c44ead42ece4cc3ca34fa0d82','daily_quote_added',1,64,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(371,'37ddc4e2eba7667096ad453d0bf9650b','daily_quote_added',1,66,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(372,'c143f8e343a7d22a458cfbfe7032ffb0','daily_quote_added',1,67,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(373,'4b85638fd6e70fd84e7f2407b49c1698','daily_quote_added',1,68,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(374,'1dceeaa4ed4a0fbcc24c0bdfd1e1e547','daily_quote_added',1,69,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(375,'298a6fbcbfdf92def416e92236eb76a0','daily_quote_added',1,70,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(376,'05750d065da4ffb8ba7fdb5c070b1f34','daily_quote_added',1,71,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(377,'35fe53718c232c683bf661dcdced3e0a','daily_quote_added',1,72,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(378,'46430be776248e2c2dd65a0fc17f1ce6','daily_quote_added',1,73,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(379,'320c0f7344fe2878e7259564043f4ec8','daily_quote_added',1,74,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(380,'4aba0976364506e1303a0756ba74b3d7','daily_quote_added',1,75,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(381,'fa13f11b6936ce4fcccb770baaa7322d','daily_quote_added',1,77,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(382,'6b32d1453a00621246ed6545882f4112','daily_quote_added',1,78,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(383,'2ce51093c9c84ecee118ceb790398fa6','daily_quote_added',1,79,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(384,'1f5e05b3975cc40381a4a9f0a4e8b3cc','daily_quote_added',1,80,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(385,'169ef05630fce1cdf84806e287015520','daily_quote_added',1,81,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(386,'e5702757a3db3c765ea48efe206cb785','daily_quote_added',1,83,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(387,'5d251dcc7e3acc6d9adbb8716c9981f3','daily_quote_added',1,84,'bible_quotes',15,'cju4b8xm17k0whi',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:41:30',NULL,NULL),(388,'abeb7aac3b7939069882248cebe020ee','daily_quote_added',1,3,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(389,'1337fc1d4f544fb092905dc7197fc1c6','daily_quote_added',1,9,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(390,'7d827b1e4b30d6ebcfca9d7281c73572','daily_quote_added',1,10,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:42:40','2024-09-19 10:50:09',NULL),(391,'9527303f8fba8084f88c9929ceaba526','daily_quote_added',1,13,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(392,'8f91a86c46aa053c7a8e2d002691f94d','daily_quote_added',1,14,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:42:40','2024-09-19 09:51:39',NULL),(393,'64020b227e280c7c86c86612d182cf28','daily_quote_added',1,15,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(394,'f60d4ba4777310e0e84f3e22f9cfde7c','daily_quote_added',1,17,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(395,'7ac82bc61a597f04a24950daf2b044ad','daily_quote_added',1,19,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(396,'11f3caf58222eeda216ac167c659df37','daily_quote_added',1,20,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(397,'ea59bbc2412bf4869fdae65c1caed874','daily_quote_added',1,21,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(398,'e33b98616f89f62e7fe0af97d694afd6','daily_quote_added',1,22,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:42:40','2024-09-20 14:46:47',NULL),(399,'46e7525c6633ff882b183c08a8687993','daily_quote_added',1,23,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(400,'6043f7df56cfd3e6fce8f7c3833e5f39','daily_quote_added',1,24,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(401,'559ef518831533efdbf61affa11bd2b3','daily_quote_added',1,25,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(402,'50ab1ba40e92b62c35fbc6fa9809b9d9','daily_quote_added',1,26,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(403,'500868c7db4f9d100e6a9ed6e01d3353','daily_quote_added',1,27,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(404,'50395b416fc04a81492ec072725a73c2','daily_quote_added',1,28,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(405,'17249e36f08d5c473fbdd2f4ad8dab1e','daily_quote_added',1,29,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(406,'0dfcb19585da67b297a77b01e7fefaef','daily_quote_added',1,30,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(407,'a6291679effb282c5c7b21ea0ce56be9','daily_quote_added',1,31,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(408,'6d4ef6e5c849c51236c4b70b9b03d315','daily_quote_added',1,32,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(409,'2fdb1ee2b3cdc8ec99761a09b47e30c2','daily_quote_added',1,33,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(410,'969270eafcb112967b1e68e366fba907','daily_quote_added',1,34,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(411,'cd070ef8812a2351771f4d3c7e202233','daily_quote_added',1,35,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(412,'c0b126d8c37af590cf07e0d532fdce23','daily_quote_added',1,36,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(413,'b0c62415244866a2bd566debb85743b8','daily_quote_added',1,37,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(414,'a1167eca8fec14e8d9a2ca9848f75351','daily_quote_added',1,38,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:42:40','2024-09-18 10:35:36',NULL),(415,'0fc55c814393e572b9830ad52a4b207e','daily_quote_added',1,39,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(416,'3b771b3bd1c6ef011ae8c336e252bc03','daily_quote_added',1,40,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(417,'d6fc08110a2c184ad199f30424f4e093','daily_quote_added',1,41,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(418,'0b98fce977b1f34a88f8b116941a66b1','daily_quote_added',1,42,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(419,'13127dfc2b6b11127998b4c78cd87743','daily_quote_added',1,43,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(420,'05a8219bc6c8e66ccdb251cf2d1dd6ee','daily_quote_added',1,44,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(421,'208312492541511186393c2a4414d28b','daily_quote_added',1,45,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(422,'1693f2510c6284386c4b55dd3a04020c','daily_quote_added',1,47,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(423,'5e8c1c8fbfe7b578cbf9a7ff3fbce9ca','daily_quote_added',1,48,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(424,'496df1e19463d75864eed1dafc8de342','daily_quote_added',1,49,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(425,'4db6b4b4dd8f1d6cdc2a8e8d06aad94e','daily_quote_added',1,50,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(426,'1f6d33414b8c1bbae74b886bedd2673c','daily_quote_added',1,51,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(427,'6fb9e943768e781ec271ded9451a0e84','daily_quote_added',1,52,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(428,'b08d0214ca4d2ece8c1e5b9f3308d416','daily_quote_added',1,53,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(429,'121d6d257824b1d6faf0ddc0e634c934','daily_quote_added',1,54,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(430,'972a352a4f295cc91ae8bf000d872ac9','daily_quote_added',1,55,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(431,'f52cc6cb96f97473a4e44f86b98d983c','daily_quote_added',1,56,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(432,'ca58388f455c093f1debeb5dea871efb','daily_quote_added',1,57,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(433,'10ac4001262407dc6fd71d786170fc83','daily_quote_added',1,58,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(434,'e225a1b2c4b432974594037ad28894c1','daily_quote_added',1,60,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(435,'860e04c21c1055fab31463705fe1a127','daily_quote_added',1,61,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(436,'b0edf63a6c902c24900aa42399ca045f','daily_quote_added',1,62,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(437,'7854edfae0bc2215d6bb7d77912cc68b','daily_quote_added',1,63,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(438,'224b92062d04193bb27245462aa35dbe','daily_quote_added',1,64,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(439,'cac1cb81056812f14868b2197b81f41f','daily_quote_added',1,66,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(440,'3a1499e3e3db76ed6fa005d6a951f348','daily_quote_added',1,67,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(441,'05a9bc63feb3476a9295a5ace718b156','daily_quote_added',1,68,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(442,'84abbd23eed7d2ebc7e90986c12ba1cc','daily_quote_added',1,69,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(443,'55ac6be21697f3030c9d19c137431824','daily_quote_added',1,70,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(444,'96fef7d4409cf617468f13e8c90cb817','daily_quote_added',1,71,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(445,'c4a867872bb3b383a8d299d27f6d0c70','daily_quote_added',1,72,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(446,'70601b4b84251cc354d6cf333c4b896d','daily_quote_added',1,73,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(447,'97a641ee6aad2e8632cc15ddea85342f','daily_quote_added',1,74,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(448,'a960f96438fb365786fa89e02ca29d59','daily_quote_added',1,75,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(449,'a20faa4485cc913d117ce39dbd44535e','daily_quote_added',1,77,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(450,'1c22d6bd1419b2be445e052024db14d9','daily_quote_added',1,78,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(451,'491ca5cad256d5b47f5aa2cf3c5db80f','daily_quote_added',1,79,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(452,'ba2609d4143f6b0fbae3da6b5001e0e0','daily_quote_added',1,80,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(453,'2e1fab609b0bb603aad6281fb3eb5151','daily_quote_added',1,81,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(454,'78d949d426deb1c23bd427898f3ffc80','daily_quote_added',1,83,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(455,'aa5a198cf1a943af645ec81a140253cb','daily_quote_added',1,84,'bible_quotes',16,'cju4b8xm17k2e0u',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:42:40',NULL,NULL),(456,'94d9cddbb2656efdcbc6831f64942e4f','daily_quote_added',1,3,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(457,'26fca2ee0071146a70317d355204f139','daily_quote_added',1,9,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(458,'e771d722d398f80d420727ae233fa488','daily_quote_added',1,10,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:50:21','2024-09-19 10:50:09',NULL),(459,'4b069f6b1111be9793d7b8ce5371ae86','daily_quote_added',1,13,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(460,'fd1eb42faedb9f5c360e4a07e110619a','daily_quote_added',1,14,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:50:21','2024-09-19 09:51:39',NULL),(461,'9298cf4e7f7b362e930d81edd007d2d7','daily_quote_added',1,15,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(462,'6b814de9ee444bb05a091f1270595fa5','daily_quote_added',1,17,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(463,'7c6551736b527890eba104b4bf0fc1b5','daily_quote_added',1,19,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(464,'4a028a0dd0ccd023755e12d35a259223','daily_quote_added',1,20,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(465,'026e9ec553ec8fceaf81d756a6ff4a6b','daily_quote_added',1,21,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(466,'ea57f4ed9067e7b861a243da8ed4cc1c','daily_quote_added',1,22,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:50:21','2024-09-20 14:46:47',NULL),(467,'fc0321d88fc69c3a41b3e90381f06a7b','daily_quote_added',1,23,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(468,'39ba490a64643c4f4797639faaa6f78c','daily_quote_added',1,24,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(469,'f2bb7777c2ddd1418fffa5cf154747fc','daily_quote_added',1,25,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(470,'5b485e5de84b9024e2ef0db28ad70e9a','daily_quote_added',1,26,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(471,'fdbb61779fc8455c42116d17646baf20','daily_quote_added',1,27,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(472,'9e619ada4c93098892c5fb836df3e753','daily_quote_added',1,28,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(473,'52612177583be06e4c5ad162a835d696','daily_quote_added',1,29,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(474,'f5cf4b964f5e86328532fddf981c90ed','daily_quote_added',1,30,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(475,'5aed1a9f002984c0e92c19779de97729','daily_quote_added',1,31,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(476,'882dcd11e3d34d8f84c7ddb9708d5a0e','daily_quote_added',1,32,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(477,'99ab991cb42476288d3dedec512808e1','daily_quote_added',1,33,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(478,'2822d820f79369fb12e5b5e81534f7a9','daily_quote_added',1,34,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(479,'b86ed918ea4d60f6d3f83de4488bb28d','daily_quote_added',1,35,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(480,'cddab667497ce0b7edf63841ab3c76aa','daily_quote_added',1,36,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(481,'35d91f01b8f92a3d83bac2e12967760b','daily_quote_added',1,37,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(482,'3196582b33be9a299ddf1aeb41a5d2e8','daily_quote_added',1,38,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:50:21','2024-09-18 10:35:36',NULL),(483,'f8630bd84e7003be5bb097bb715f5ad6','daily_quote_added',1,39,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(484,'8b893b822a10358ed9a8c0c63f9d0301','daily_quote_added',1,40,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(485,'1c49decd376b80626da6358671bbc72e','daily_quote_added',1,41,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(486,'fa073713a104ad3bfd492de5be5dc560','daily_quote_added',1,42,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(487,'8bac6036341b8c08b0d1a52c0c30bd4f','daily_quote_added',1,43,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(488,'153ddd69b74a479c3c65287afbae8834','daily_quote_added',1,44,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(489,'e970498f3a4caf7aa03445521f3ad355','daily_quote_added',1,45,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(490,'be6c9065b2bd544b315068267180766e','daily_quote_added',1,47,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(491,'ab4ce580563a80c2d13992fb8f887c7c','daily_quote_added',1,48,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(492,'402fa0ffd3b02ffb58fb021e7ba03dda','daily_quote_added',1,49,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(493,'1eb64cecd43fb567c974d775f4c85d8a','daily_quote_added',1,50,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(494,'5d6185aadacf66b96b895c8b1b930c20','daily_quote_added',1,51,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(495,'a859d6ffb2a50d034cb6c672d68dcfe6','daily_quote_added',1,52,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(496,'715d6fdd205a2f56f963f3bca41d9635','daily_quote_added',1,53,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(497,'78b6b7c40dcc29fb03ff975e73ee50f0','daily_quote_added',1,54,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(498,'64dd7efce30ae4df266340caf1f5f3e3','daily_quote_added',1,55,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(499,'fb2b1b57a8999c1365429e0e80596ebd','daily_quote_added',1,56,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(500,'087fd500fa2b2b93c021b122bd544207','daily_quote_added',1,57,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(501,'2e79b4cb8cb40d6d38e725601c8d7450','daily_quote_added',1,58,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(502,'8d357e5c79a10881d38a3697657b1e5d','daily_quote_added',1,60,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(503,'8175505fbad51e7bb5a5ef73f2aafcad','daily_quote_added',1,61,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(504,'aa61ada726a41eb62c180e28978ba354','daily_quote_added',1,62,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(505,'f130987d2bf6db71d9983e429546c782','daily_quote_added',1,63,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(506,'fcfd1c7d4700aae9b686f016da1e1f51','daily_quote_added',1,64,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(507,'5ed760bac4b5a8460d952ac01e423b05','daily_quote_added',1,66,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(508,'a6d84e2e60353094b4103798eb2a01d6','daily_quote_added',1,67,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(509,'d45eddfba1b05d23f8bd7205e089cea4','daily_quote_added',1,68,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(510,'30065512e83a4dadd0435c8d4ccb962b','daily_quote_added',1,69,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(511,'42472876d46d7f43c4fbcb09471b0e45','daily_quote_added',1,70,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(512,'e57d277bb1c2b4590731cdaf97f171dd','daily_quote_added',1,71,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(513,'b75d65f5364df56b400eb8401227cb6d','daily_quote_added',1,72,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(514,'03019e26b80357828b0fbb843ece6612','daily_quote_added',1,73,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(515,'f7255e3e8e0074bbd85266a7443d92d9','daily_quote_added',1,74,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(516,'1c10737d866b860fbdf20fc91648ac50','daily_quote_added',1,75,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(517,'79f21febd94fc408f4b76828a847cd37','daily_quote_added',1,77,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(518,'da28bdba4f22fe635ce194624f524d22','daily_quote_added',1,78,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(519,'1c769725fe474dd71db6269123c7e174','daily_quote_added',1,79,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(520,'307177e423a11e6a885689ca4c3297a5','daily_quote_added',1,80,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(521,'3a312216b7f87d08a7504875469008e6','daily_quote_added',1,81,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(522,'6a92c4722f75c0f818fcd33578d9e85c','daily_quote_added',1,83,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(523,'0bca6db919c6403e70ec19726b04e61b','daily_quote_added',1,84,'bible_quotes',17,'cju4b8xm17kc9zd',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:50:21',NULL,NULL),(524,'609f55a70521937c09698335e8f0a6ab','daily_quote_added',1,3,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(525,'dc5d4675cb4134c54df4d4737e17d676','daily_quote_added',1,9,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(526,'be8d5560d3878c4ccdcb647f463a95e5','daily_quote_added',1,10,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:51:51','2024-09-19 10:50:09',NULL),(527,'a53cbf30c1c48c7bda4d92b9b04a454f','daily_quote_added',1,13,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(528,'3d0da5094fda6ceebc9a90add554c697','daily_quote_added',1,14,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:51:51','2024-09-19 09:51:39',NULL),(529,'d9db2ce211777b1eef77c13d1da7f1da','daily_quote_added',1,15,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(530,'5569bda5d53aba1d86d5f2c8b18dd655','daily_quote_added',1,17,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(531,'c793a28c733f46627dd64583101f8744','daily_quote_added',1,19,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(532,'5005918c27def0ae20bd6573a7fb17f1','daily_quote_added',1,20,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(533,'628b758470009f6fcaf66afcb01ff128','daily_quote_added',1,21,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(534,'da81aefd1f9f0abde727484ec69bc0ab','daily_quote_added',1,22,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:51:51','2024-09-20 14:46:47',NULL),(535,'65bb26ba8f6fd5ae565085bab4ede9e1','daily_quote_added',1,23,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(536,'645b0bf6d13c347f67b444f1e673fce2','daily_quote_added',1,24,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(537,'5771a2cb16113d774d5d784c09b0da36','daily_quote_added',1,25,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(538,'ecdfedd7909124f76b4116a8a16ca00c','daily_quote_added',1,26,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(539,'d5f68c0ad189983377195853a50922a6','daily_quote_added',1,27,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(540,'1cff6f4f615a084e50d527e726a2267c','daily_quote_added',1,28,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(541,'84ea8a4c2bb7d7ab5081e13de3f40475','daily_quote_added',1,29,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(542,'555289fd0d6df25c199ae543c1290a90','daily_quote_added',1,30,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(543,'a449b20ed0b27d03d80c164bc8f58998','daily_quote_added',1,31,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(544,'d1a5625a427b03b2e65d41ce6d0411c3','daily_quote_added',1,32,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(545,'df569a130d175e61660ad8c8c807c8c9','daily_quote_added',1,33,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(546,'6bbc4def06bf470694eea95d8fd77a68','daily_quote_added',1,34,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(547,'829329a24a542d5f707e47d7633d2dc2','daily_quote_added',1,35,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(548,'b88917b25664b59926a791d64554d4aa','daily_quote_added',1,36,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(549,'c0671b1e57750a7c539472f85e30dd16','daily_quote_added',1,37,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(550,'cd4340fc15566fa685d2fb9461ef1520','daily_quote_added',1,38,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 07:51:51','2024-09-18 10:35:36',NULL),(551,'fe74369ee6f7838a908dd56ceabf538c','daily_quote_added',1,39,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(552,'9a224c4f41aa383cb48b4a675d56fff0','daily_quote_added',1,40,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(553,'f25d0deff9dac08300ff1410af8f7cc2','daily_quote_added',1,41,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(554,'b12917405a8d313e3008bc86ea8ed3d5','daily_quote_added',1,42,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(555,'3ec183988bda39dd7688bbc0077a72db','daily_quote_added',1,43,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(556,'271e7ac7a1d34efe3df402792c3ff0c0','daily_quote_added',1,44,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(557,'9e1cfccc9ae76f099720a34a7c686706','daily_quote_added',1,45,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(558,'4a3fce20de882e5ffc5b36341d057ebf','daily_quote_added',1,47,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(559,'8025291b078efeb06b2878c318af3d6b','daily_quote_added',1,48,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(560,'2303b5c259eddba474ee3aca3f25b3b6','daily_quote_added',1,49,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(561,'c60cac0f815ea2716b8cc6647df41077','daily_quote_added',1,50,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(562,'54c4f354c281d03984e9f84c0aa2c7c8','daily_quote_added',1,51,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(563,'c9ad026599041c625dd8c131374379da','daily_quote_added',1,52,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(564,'7653e9d3e6522619885e97e9d50c0a05','daily_quote_added',1,53,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(565,'8bbf4ea8d29130734335cb625c5b4bd4','daily_quote_added',1,54,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(566,'49fd25ac8bd68b2aa46a1ec6a54924d5','daily_quote_added',1,55,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(567,'cecdbc6eac2d4b00a9fef36b80f77cde','daily_quote_added',1,56,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(568,'ccc0d9a44a4868232a6ce3fcd0baba5a','daily_quote_added',1,57,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(569,'2ce503bd7d05d83cb31da0cb6bf86341','daily_quote_added',1,58,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(570,'b1728a624c20b1c1e5d378d6c3b0ebc3','daily_quote_added',1,60,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(571,'b9447aa9561aa07f265fdb38a7fa67a3','daily_quote_added',1,61,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(572,'024b998d193ae585409069b13b4df5b1','daily_quote_added',1,62,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(573,'8480fd097d857b0a5cba92ed5ab77878','daily_quote_added',1,63,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(574,'b44ddd6dd968cef33b6d65c4566e9399','daily_quote_added',1,64,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:51',NULL,NULL),(575,'d22c6017869f17ad361771ee1a811665','daily_quote_added',1,66,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(576,'13ad34bd5c440e4c645e7020c9f619cc','daily_quote_added',1,67,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(577,'2302e53c45e4dd36c9038187032b2f8e','daily_quote_added',1,68,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(578,'f0aa030794b33e74dbea7611b6903858','daily_quote_added',1,69,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(579,'c058a3a951353d1e0292e0f93742c739','daily_quote_added',1,70,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(580,'b0c910820f23a19641980a64cde81058','daily_quote_added',1,71,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(581,'5e2a3f605c197e1c7998fb74bd8aaaf3','daily_quote_added',1,72,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(582,'eed82c97a591bc5a69c7fad7bccc6f4e','daily_quote_added',1,73,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(583,'ed32e13f82744b17399dd2fb29897d2b','daily_quote_added',1,74,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(584,'aee5ce4011ac6e28b233c4e9e76476c0','daily_quote_added',1,75,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(585,'fb2c05ec26145dd39234a533f627aa4e','daily_quote_added',1,77,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(586,'e4863d061e416e1e953209714081bf35','daily_quote_added',1,78,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(587,'344c708a41d07101da6773a57626bb22','daily_quote_added',1,79,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(588,'0f75c0976c7be286eec9db06678b9ada','daily_quote_added',1,80,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(589,'e2438cfcb107fbc4cfac812ba0778fe3','daily_quote_added',1,81,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(590,'733c42edfae9d30c36b7c6e0b6c3e6f5','daily_quote_added',1,83,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(591,'276cd1e33cb7f3b2a6716076fca81d21','daily_quote_added',1,84,'bible_quotes',18,'cju4b8xm17ke7t8',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 07:51:52',NULL,NULL),(592,'be5ac8f6360da32d81489739f3d62ca8','daily_quote_added',1,3,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(593,'26cbef21c84f2904c32a141fbe87b9c1','daily_quote_added',1,9,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(594,'27c5705b48a2593cecd574bcd968e208','daily_quote_added',1,10,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:08:20','2024-09-19 10:50:09',NULL),(595,'e9087c9272bad50e5a7cd6c1c2591ca6','daily_quote_added',1,13,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(596,'2d1ddbc2733c90ca5d011fffd820e7a5','daily_quote_added',1,14,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:08:20','2024-09-19 09:51:39',NULL),(597,'59e89259f670b45a159d62bedd118660','daily_quote_added',1,15,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(598,'2f9accad579f823335d6e5185929ed72','daily_quote_added',1,17,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(599,'798fffe86a7604033fe686493e66c822','daily_quote_added',1,19,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(600,'cd67331606689c6496f57755c46743e5','daily_quote_added',1,20,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(601,'b28fab35606ea3e6127e28ff3efd1490','daily_quote_added',1,21,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(602,'0a362a27a50607e8c4e4fc64db7b7448','daily_quote_added',1,22,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:08:20','2024-09-20 14:46:47',NULL),(603,'07179f028c6a62733c8df5bfa0237f0b','daily_quote_added',1,23,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(604,'9f56ba68f14e52e4f8b7728e4db5acff','daily_quote_added',1,24,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(605,'2388ddf898b76bc4ce9d642e725d2f3e','daily_quote_added',1,25,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(606,'a1dfafa95a7b5c6a8544c919057fc80c','daily_quote_added',1,26,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(607,'5cee562027310e8e53c90d364482fcc2','daily_quote_added',1,27,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(608,'13cafebc1e6ea73b405989ce795665cc','daily_quote_added',1,28,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(609,'c4a3406b6de6f4543d50b856627f33d7','daily_quote_added',1,29,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(610,'ec46421a6e1b1a252d56712e730261e3','daily_quote_added',1,30,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(611,'47923550c9292418c882fc206c56b2d1','daily_quote_added',1,31,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(612,'4a40d2a1cb3b777d3e50d0dba35f275f','daily_quote_added',1,32,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(613,'ca43874780aded533f14713401b330c5','daily_quote_added',1,33,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(614,'2026df4f464b4cd705aef81f6ee1a0dd','daily_quote_added',1,34,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(615,'729a916ca37b6a03d20c18da4958fee2','daily_quote_added',1,35,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(616,'b72ccc7b6efae120af12c55b8dbaf11c','daily_quote_added',1,36,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(617,'78d03683167bb793894fdb252c71e676','daily_quote_added',1,37,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(618,'305427356e0372720fdd176546f9a8e5','daily_quote_added',1,38,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:08:20','2024-09-18 10:35:36',NULL),(619,'c797d28bfda32d1a3e408a713b38d0ea','daily_quote_added',1,39,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(620,'cb096a779f79528c8abcd6e54aeb0d9c','daily_quote_added',1,40,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(621,'8a69a1c5241b5a8d5506e580def334cc','daily_quote_added',1,41,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(622,'0be79ea04f415cf536e32fc83f83fcc8','daily_quote_added',1,42,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(623,'6facf3ef512d922b1e23db11ad9f2c13','daily_quote_added',1,43,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(624,'9d0abc8f5db4b56524b67a9affe0485b','daily_quote_added',1,44,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(625,'0e84467010d157a4ebb839eeccc851f1','daily_quote_added',1,45,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(626,'304296754e2e05afcf414a1385c4b728','daily_quote_added',1,47,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(627,'5405a781309cc56502304b584be17749','daily_quote_added',1,48,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(628,'91f11c427e0cadd80119e2c49d2d6788','daily_quote_added',1,49,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(629,'1a5119a44573b1b92324f97768a97996','daily_quote_added',1,50,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(630,'6eecbad6650d7008993b2229bb97bce8','daily_quote_added',1,51,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(631,'9dc634c02721ed195c5b8bc5aa0286c4','daily_quote_added',1,52,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(632,'a9ecac6beab5531ab2af9951996cf1a7','daily_quote_added',1,53,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(633,'4db202d0834ab4bbbf3a9f9053c48877','daily_quote_added',1,54,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(634,'fd138e15ef06c6a655e2f221fb16f015','daily_quote_added',1,55,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(635,'76435e85d0d8f4963577bdf901195718','daily_quote_added',1,56,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(636,'d5bcc40c23e4cb005d88d6490255d98f','daily_quote_added',1,57,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(637,'c3ee7bfce7e8d610bbe362de79990abf','daily_quote_added',1,58,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(638,'e835b4ff2b9788e639ca928d02133d68','daily_quote_added',1,60,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(639,'f8d9a3feadd372b065232c744e8358b3','daily_quote_added',1,61,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(640,'0db8764b46a627c705911ada45b86cdf','daily_quote_added',1,62,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(641,'ac2fcbe0ff83b19bef6fd62ff31247f7','daily_quote_added',1,63,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(642,'2845baa3c3f7aa2da70294b038981608','daily_quote_added',1,64,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(643,'e8c6c3a70bc65d9f72c5db2b23eeac8b','daily_quote_added',1,66,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(644,'53c03607d437d2125dca2134d822de7a','daily_quote_added',1,67,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(645,'f878730224d40d89111c7200da15c99a','daily_quote_added',1,68,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(646,'c49b2badf6542bceb46258af8e12913d','daily_quote_added',1,69,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(647,'a38d32748e6b8843d0e0877964b0fc39','daily_quote_added',1,70,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(648,'72abbf731a04e82c3b0f2970910069ca','daily_quote_added',1,71,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(649,'732842d2ca17a4603e1d4601306a785e','daily_quote_added',1,72,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(650,'2d4791a403e3c49383a9a5019ca67928','daily_quote_added',1,73,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(651,'35e0820b41baa286206b3802dccd8e0a','daily_quote_added',1,74,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(652,'42c0ff8c2b62b04935fb2ab8c9451763','daily_quote_added',1,75,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(653,'0a83362bb99b7aebdbab341035c1f8a8','daily_quote_added',1,77,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(654,'adb9617492ef7696a74d324b8b4937b0','daily_quote_added',1,78,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(655,'7e42661a34bdf2a11ed68f62479d6192','daily_quote_added',1,79,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(656,'9864f1b09e32167af27e6489cc8eb8c4','daily_quote_added',1,80,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(657,'df4b588fe6d509744659cadd43ebefc4','daily_quote_added',1,81,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(658,'dd6e99db1698181c47a3a52b8c1a58b5','daily_quote_added',1,83,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(659,'3507da4c657a98afcd4a08c93eb8288b','daily_quote_added',1,84,'bible_quotes',19,'cju4b8xm17kzej9',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:08:20',NULL,NULL),(660,'db1259550a163aee760096a0b726b4b4','daily_quote_added',1,3,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(661,'2d2798eb0e36a13f564834f31c59415d','daily_quote_added',1,9,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(662,'826ef6492fcdf7308344521d0e98ebeb','daily_quote_added',1,10,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:10:09','2024-09-19 10:50:09',NULL),(663,'3feb667533bb878ac98baf5318b331c3','daily_quote_added',1,13,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(664,'ee6957d3394f3654511896e12272e4fc','daily_quote_added',1,14,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:10:09','2024-09-19 09:51:39',NULL),(665,'aede428f374b2b2b714ea0ceac08a3a6','daily_quote_added',1,15,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(666,'3fd3c4a4ee2c502cdab20c763a3072d5','daily_quote_added',1,17,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(667,'5064e5ff698800da02d608781fca0d6f','daily_quote_added',1,19,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(668,'1a1757285ebea1527aa576e8d9e73cae','daily_quote_added',1,20,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(669,'260b4c6f43552a578385cbcd9bad72a1','daily_quote_added',1,21,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(670,'300d64b8e73e0e90a1c62e4e3fcb4949','daily_quote_added',1,22,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:10:09','2024-09-20 14:46:47',NULL),(671,'0685e235044a9ac8b5a0661a0bba6ad0','daily_quote_added',1,23,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(672,'5ce423bff2de2e78ece22f122e7bf0cf','daily_quote_added',1,24,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(673,'b3032f087bfe44a6f44f5e2cea2a7106','daily_quote_added',1,25,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(674,'828739ee8f18730703a5f805a60d03af','daily_quote_added',1,26,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(675,'417093c5cf0c518f5715b1f813914e45','daily_quote_added',1,27,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(676,'d13f312e8de02598330d809c8334b16e','daily_quote_added',1,28,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(677,'cecfa71eae91816501e045f99ec754b9','daily_quote_added',1,29,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(678,'330a8a7fadc5aa245a5f35bf0e907589','daily_quote_added',1,30,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(679,'378557207119fe762787f38aee786256','daily_quote_added',1,31,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(680,'19c5d50d926684d036b17eaac0353490','daily_quote_added',1,32,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(681,'7c40bc418092c1472ff372f69a34d081','daily_quote_added',1,33,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(682,'f435986e4f75843da875020ce37fbfc1','daily_quote_added',1,34,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(683,'07a5f9432c300cf786154c4546ded4d0','daily_quote_added',1,35,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(684,'a66ece1e490c176dada5567a9ccac23f','daily_quote_added',1,36,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(685,'90d5c5407c3dfe2a4dbf397ad8ba10e5','daily_quote_added',1,37,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(686,'7306fdd4f3413ff3ce0ca2fad1f2caed','daily_quote_added',1,38,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 08:10:09','2024-09-18 10:35:36',NULL),(687,'4c3cd9230ebb771fb8229cabe8c84601','daily_quote_added',1,39,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(688,'fe11b8225e0f5b8513f56e0cbea62ee6','daily_quote_added',1,40,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(689,'5808263a4e4d5d4d0be9c6f135676809','daily_quote_added',1,41,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(690,'2976bf3a2915bda10e478b9cc4fb34f2','daily_quote_added',1,42,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(691,'46e6c9a8ff0eff12ca4e8ed503915448','daily_quote_added',1,43,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(692,'7ae77fbb6bf011a311610dff8bcd1892','daily_quote_added',1,44,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(693,'9494636a70704f8e475474ec1671ad78','daily_quote_added',1,45,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(694,'7cd9f7ac598b6654c93867da8bcee6b3','daily_quote_added',1,47,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(695,'7b4d04a0f8e4021644c1fade35a01045','daily_quote_added',1,48,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(696,'5337de5e306b5258be6dd6413d2519c8','daily_quote_added',1,49,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(697,'8eeabf7968fa96d7f09e9afe493aae72','daily_quote_added',1,50,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(698,'3a4caf1b4452aa86eab3894c066cdbcd','daily_quote_added',1,51,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(699,'ebefa023a64b2f35274f58fb9f585701','daily_quote_added',1,52,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(700,'c7bba451e5135b6d965a10be5643d164','daily_quote_added',1,53,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(701,'2356121a732e3d1724cc477b7d957266','daily_quote_added',1,54,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(702,'d6ea00e65fae1fd147db6554d11b84d4','daily_quote_added',1,55,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(703,'67c9c37475a11439583661ac49931a83','daily_quote_added',1,56,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(704,'59c57b516ae4204220880acbbba4f547','daily_quote_added',1,57,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(705,'f25cfec5cfcb37170926a2f1afd754e0','daily_quote_added',1,58,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(706,'ae673e7b880f5d505bd2afa07a31a83f','daily_quote_added',1,60,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(707,'71d3c575bb39cc9452f79d9ad0873aa8','daily_quote_added',1,61,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(708,'0b62e62bb3a28ac29d31f230ee01bbff','daily_quote_added',1,62,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(709,'e5fa2ec9265762ba8be987601793ce17','daily_quote_added',1,63,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(710,'900775544d2858eda1a794ce2535924e','daily_quote_added',1,64,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(711,'93aff6c29160321459fe3df1df95d565','daily_quote_added',1,66,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(712,'181eecff4a906eeec941a36d3f16dee3','daily_quote_added',1,67,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(713,'423093da7d8d260a071f2c25c4d39efd','daily_quote_added',1,68,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(714,'960dde28f6d6e712788f583f372e4855','daily_quote_added',1,69,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(715,'819711ddfe24d45f42067d585e24cc3e','daily_quote_added',1,70,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(716,'4812a06ccce3d8fd18f6eb0b3fc30493','daily_quote_added',1,71,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(717,'64b54458d2fb4ea8076795fa13c86b2d','daily_quote_added',1,72,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(718,'2558baabd9f5bc8db540d5e6b9c20746','daily_quote_added',1,73,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(719,'bc8f03c8596d2dcf92db17f72cd580de','daily_quote_added',1,74,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(720,'bec3880d2b744cf4891a60030bbc6473','daily_quote_added',1,75,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(721,'9e524941aad5eff1809ad627bbdd00d5','daily_quote_added',1,77,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(722,'b9343f056ef624530cd965dd932377f0','daily_quote_added',1,78,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(723,'acdc0327554f9c23280af1a26518d6f5','daily_quote_added',1,79,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(724,'a068e856293fd221db014c6688e382fb','daily_quote_added',1,80,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(725,'231e719f18ae13e6a6887496550c2b11','daily_quote_added',1,81,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(726,'b0ba61d969e9a9cca42b31adf44c0d87','daily_quote_added',1,83,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(727,'6be22c0c21e531fd208c9eb9d6743ec0','daily_quote_added',1,84,'bible_quotes',20,'cju4b8xm17l1qs1',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 08:10:09',NULL,NULL),(728,'6be33a2c2e40785467d31f9a790389e2','daily_quote_added',1,3,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:22',NULL,NULL),(729,'5cafc4d863ddfbda87bc061544fb89d6','daily_quote_added',1,9,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:22',NULL,NULL),(730,'a878cfbc36267e633cd75fb8772388ee','daily_quote_added',1,10,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 11:43:22','2024-09-19 10:50:09',NULL),(731,'b7a6acba7e4ea6931b2b5e2dd14a9c8b','daily_quote_added',1,13,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:22',NULL,NULL),(732,'db3b2a0710646ac4e2d538837cb3b573','daily_quote_added',1,14,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 11:43:22','2024-09-19 09:51:39',NULL),(733,'971d6457d054000c5daec006d2c948ff','daily_quote_added',1,15,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:22',NULL,NULL),(734,'a79c222c62bfba3956502b33a28271f9','daily_quote_added',1,17,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:22',NULL,NULL),(735,'268ae2d8b7308162e48479a57abc2a41','daily_quote_added',1,19,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:22',NULL,NULL),(736,'0a6d81c180b4689280116abb42a9f3ea','daily_quote_added',1,20,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:22',NULL,NULL),(737,'63bb0873ed62caf8b1a03196087ee790','daily_quote_added',1,21,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(738,'196536c712422bae2e1fd7b6a3498844','daily_quote_added',1,22,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','1','2024-09-18 11:43:23','2024-09-20 14:46:47',NULL),(739,'fd30114fb2f16ecb0dc9111790e0b149','daily_quote_added',1,23,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(740,'7a519f9283b95d97c6d42efaca0bb682','daily_quote_added',1,24,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(741,'04cab7e9f1f8a9cdb73679434413df33','daily_quote_added',1,25,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(742,'b05ba87109d5105614a5648ca04cd049','daily_quote_added',1,26,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(743,'9183a87eed0a623d3ae9487e7ba1d19b','daily_quote_added',1,27,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(744,'02fcb037be7a9e56d098924f46c7a774','daily_quote_added',1,28,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(745,'de0f211d3783dab7635055b75d6cec85','daily_quote_added',1,29,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(746,'31e4126c265de68b6714b33321339524','daily_quote_added',1,30,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(747,'2181d428bfc737f833e8a3b20aba37b9','daily_quote_added',1,31,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(748,'6a5dc28d54961d71e693c2c7e385426e','daily_quote_added',1,32,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(749,'7dc9fec5c1ee459474ee82529d252e2d','daily_quote_added',1,33,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(750,'19059c895f7b49b7758fd2f1e466d915','daily_quote_added',1,34,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(751,'6c5958505883cb33f837b20e18841cbf','daily_quote_added',1,35,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(752,'c07cdde1036a9c92651a3b85eef9647e','daily_quote_added',1,36,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(753,'3f9b1c462f570a8072a5e12e99470cf3','daily_quote_added',1,37,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(754,'4e4a80d733fdff6761a97d9c2e3386bc','daily_quote_added',1,38,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(755,'58406ff92babe439eb233e93e5e66222','daily_quote_added',1,39,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(756,'fdf81632d6e6bb159a15eb9b872155f1','daily_quote_added',1,40,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(757,'27d54d931bd777fb3c7f477f86fb9d62','daily_quote_added',1,41,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(758,'c3ab834fac09ef724d5ce0959b78a240','daily_quote_added',1,42,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(759,'4650c3b1dbb6dc6e9e74741d89294012','daily_quote_added',1,43,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(760,'5fd98f3930d175432b1f2d5c9729d24f','daily_quote_added',1,44,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(761,'b7e231cfae820f123714a5ae1d25a21c','daily_quote_added',1,45,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(762,'a2c72412e13cc7c45fe41bfb0933de09','daily_quote_added',1,47,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(763,'1faaffce04b5827f2e4800428dad53a0','daily_quote_added',1,48,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(764,'e7877b0820465caad28eb64e6903e434','daily_quote_added',1,49,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(765,'6390d9178fc85eab7685c48851ffad39','daily_quote_added',1,50,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(766,'728be60bcf38c3af884a8b254a862d95','daily_quote_added',1,51,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(767,'0825f6ef11beaca4dc40bb47681db629','daily_quote_added',1,52,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(768,'afd4f553a073eb40f784a333be590861','daily_quote_added',1,53,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(769,'bfd4e6875e596debc6bda975aeec2d0b','daily_quote_added',1,54,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(770,'da9d5f6cc0274cc5249f81a600e037af','daily_quote_added',1,55,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(771,'e71ed9ad7384cf09113a8744c6b03f6f','daily_quote_added',1,56,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(772,'7b952918027d27b2b71155e96e848cf2','daily_quote_added',1,57,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(773,'be98abb8744eec7e9830c7d9c1f85dd1','daily_quote_added',1,58,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(774,'95f8171ca0b79d07e23c42d060f8736f','daily_quote_added',1,60,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(775,'a214f93365a6c80af1c134cc7565c797','daily_quote_added',1,61,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(776,'0cafe5523cf4c365a7d554acc0cec2ad','daily_quote_added',1,62,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(777,'ea40d2642fa127bc0c6e06d974b419a6','daily_quote_added',1,63,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(778,'c5bff526ceb06342324644e1cd74b076','daily_quote_added',1,64,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(779,'c24662c622f9bc23032e3edbf19c4d36','daily_quote_added',1,66,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(780,'044459a4a35cf8d70562cc9cc7a485d5','daily_quote_added',1,67,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(781,'b7fa202c1299371fbe45076c530952b4','daily_quote_added',1,68,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(782,'7a84203d0d9d4db882b85e5dc94c349f','daily_quote_added',1,69,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(783,'b5ddf15b5f42ad50bf9847badff1abd4','daily_quote_added',1,70,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(784,'762387e1870c568d28528bb545980bb7','daily_quote_added',1,71,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(785,'42ed2865dd8f31e73da3f06d71acf36b','daily_quote_added',1,72,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(786,'13501d7696ee2c8bc9a189d5467b01df','daily_quote_added',1,73,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(787,'669c9d644988171c46751ee156b4c1a0','daily_quote_added',1,74,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(788,'ef4f7c79a03e369e22cd4704f97670a2','daily_quote_added',1,75,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(789,'34113d90253ba443c4293d51009dd156','daily_quote_added',1,77,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(790,'b4c9eacc78c63ae05e1e8b6b2e300798','daily_quote_added',1,78,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(791,'2860147dd423f1961260651351c2f564','daily_quote_added',1,79,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(792,'99692046e8d466f6b94b773ec4e67808','daily_quote_added',1,80,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(793,'1854c3af35434497905ba04e5bd6e57e','daily_quote_added',1,81,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(794,'524be41ad84e554d72684089d09111fe','daily_quote_added',1,82,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'1','1','2024-09-18 11:43:23','2024-09-20 14:51:09',NULL),(795,'cb7691051afec813cb88e5c7e2fd78db','daily_quote_added',1,83,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(796,'657d01c8cda6248db12d4328b4afdab2','daily_quote_added',1,84,'bible_quotes',21,'cju4b8xm17snyab',NULL,NULL,NULL,'Daily quotes from Kingdom Couples','Explore our latest quotes now!',NULL,'0','0','2024-09-18 11:43:23',NULL,NULL),(797,'380a28c3974fc45be00ebe7469c32eac','announcement',1,3,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(798,'bbae0c65787bd0ad4ac206014397d94b','announcement',1,9,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(799,'5f576f6ed53838667fbb06265e0f156c','announcement',1,10,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','1','2024-09-18 11:43:59','2024-09-19 10:50:09',NULL),(800,'c3ee75a4dad41f65e51cc7f33c46e6e9','announcement',1,13,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(801,'18cb5252c65e409e5726b32f20821d45','announcement',1,14,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'1','1','2024-09-18 11:43:59','2024-09-19 09:51:39',NULL),(802,'3c1c16d728cd9103bc39c09a68d9c8bb','announcement',1,15,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(803,'c69e5ce575adeaa1d86c6edb165d5833','announcement',1,17,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(804,'82ada6024f7583671d28681a171ac939','announcement',1,19,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(805,'33cb7578acafab9d19a4606afbadac91','announcement',1,20,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(806,'e43b4925a612bc64d9caaa46199a3d18','announcement',1,21,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(807,'fb93dcfb3eb3577ff74458cdddbfb7ef','announcement',1,22,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','1','2024-09-18 11:43:59','2024-09-20 14:46:47',NULL),(808,'a1af71be6f0debb4d7308ef14c51a528','announcement',1,23,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(809,'b464c1f8b8badadd7ae07f8d3c486949','announcement',1,24,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(810,'68bb6a258b6efc6d2de86e2d7824a7ee','announcement',1,25,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(811,'62170af3c2183a739f726ea2e320d4dc','announcement',1,26,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(812,'520d44e72719ce9c317b4de4c770a204','announcement',1,27,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(813,'c6e6b5abda200c536ab598deecc2e353','announcement',1,28,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(814,'54513a3d8b0c2e42869904d7a6e721bb','announcement',1,29,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(815,'687e026447e2deccb2557b19bc66fe43','announcement',1,30,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(816,'7c9637489db97ae704c694bc070f0d02','announcement',1,31,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(817,'db3081f49edb2a59e562fadaede5bbb9','announcement',1,32,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(818,'d1403348e4493cebf3565f089264b50c','announcement',1,33,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(819,'87296d82dd515a0c6537a999b98cf0dd','announcement',1,34,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(820,'9e2653dec0ed3422d35dfa4291f7918c','announcement',1,35,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(821,'9d03afdacdb7f3ba772ac7ccf7a0b4a3','announcement',1,36,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(822,'27105fe737a011cdb4721566e80e6f8c','announcement',1,37,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(823,'cec646fa9a4a1452e9ce76c2e91948e9','announcement',1,38,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(824,'c8adaea2fff36030ad398dff004bdd72','announcement',1,39,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(825,'f8263a49b5a8aa0a93ae5331a8907d4f','announcement',1,40,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(826,'435b873a92e46044585cc0fa69352928','announcement',1,41,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(827,'0f490b4fef406830f76c31b9b4d66889','announcement',1,42,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(828,'aae38bf5dcf086b1f68ff275bd003007','announcement',1,43,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(829,'98c1128f03f97ece9c5c08d909abfb84','announcement',1,44,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(830,'770be65421f3e1f24ae80e949de6255b','announcement',1,45,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(831,'b41287d2cf678d02b6993c0cf581a943','announcement',1,47,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(832,'e8a87dbc3d18d4228951bca6e79e255c','announcement',1,48,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(833,'b41d2c8c703d8daab0649e0e1e02b0e6','announcement',1,49,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(834,'5f239ad69f9fc5493e7da01c4b9eb87f','announcement',1,50,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(835,'648253f1782a54941b3ca5b2caf28849','announcement',1,51,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(836,'ae35edaade56d0e92a4b4bc02a00f739','announcement',1,52,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(837,'3ebaad8ccad58e2bd7d6cc25332be95a','announcement',1,53,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(838,'e09d328191f6cbd72ec4a146e0a671b2','announcement',1,54,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(839,'6914cd8dac6500bf7438489bec337e0c','announcement',1,55,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(840,'9f42f09070e432e685a40a2bfde44c42','announcement',1,56,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(841,'b306683f4aaa7835f8047250960ead77','announcement',1,57,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(842,'2667c3a44fc1b0223d1e22a919840cb2','announcement',1,58,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(843,'f0f1db70b61917e7c117d8e6f46efaeb','announcement',1,60,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(844,'d860b755fdd72cda437eb0bcbf6bd2fd','announcement',1,61,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(845,'cc8c9d1f6128440301967cdab3340fba','announcement',1,62,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(846,'1e8567e2428bed00ca682eaa902f51fe','announcement',1,63,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(847,'7f78da312ad15d571567bee0af8f85c2','announcement',1,64,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(848,'120e839c70263a2a8526606b32332ff0','announcement',1,66,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(849,'e59d02d48e863e4d9047bfe4647509be','announcement',1,67,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(850,'d0de9553b4123a71a8386797db2fac9a','announcement',1,68,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(851,'94ac9ec7ee890c828920f31830d0ff43','announcement',1,69,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(852,'94cd2c9606402f785023d658fdf3e8dc','announcement',1,70,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(853,'1e0a3b3d2478d4dcd1307c31615e82b4','announcement',1,71,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(854,'bc2cf7f7029ce369e3d53849be142b9f','announcement',1,72,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(855,'8902afb25b5b907f53a12c4906d87d8b','announcement',1,73,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(856,'a7ec948fbb4ca93824d208708f6a8d33','announcement',1,74,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(857,'76b3afcdb15d55828c5950a352ebb376','announcement',1,75,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(858,'aa0c27ae08a564a3d9dc20a54e35e549','announcement',1,77,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(859,'02d52407ae481b60b271e19410545e6e','announcement',1,78,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(860,'d5b2e48121698a6a661a47a200c5946d','announcement',1,79,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(861,'da02c2115558b630ef7dc21f8f862e96','announcement',1,80,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(862,'6726cd34262c611b6544b405cf4eb7c0','announcement',1,81,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(863,'4b3fa9ebd4e4e7bfab79ecfa2a388627','announcement',1,82,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'1','1','2024-09-18 11:43:59','2024-09-20 14:51:09',NULL),(864,'1bc614c8c32603d547a8e358684655eb','announcement',1,83,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(865,'d44d1279eeac62b1f991683ca45d95f2','announcement',1,84,'announcement',0,'0',NULL,NULL,NULL,'Announcement from Kingdom Couples','Test Announcement',NULL,'0','0','2024-09-18 11:43:59',NULL,NULL),(866,'e00b332fed372c311fee1a166528663f','announcement',1,3,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(867,'d3b7af19b2ff8828a28cee50ed467f01','announcement',1,9,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(868,'8b84d947e1e2584cd89859e30b6bd92f','announcement',1,10,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','1','2024-09-18 12:22:29','2024-09-19 10:50:09',NULL),(869,'4b8b238570786fb6fe27f14e1f958450','announcement',1,13,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(870,'828f294e07e18229b963ceae5d601a3f','announcement',1,14,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','1','2024-09-18 12:22:29','2024-09-19 09:51:39',NULL),(871,'a2cb8a33b63b9305196a971c7a8f3f32','announcement',1,15,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(872,'6706992bf24470d15e98d7f587287d77','announcement',1,17,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(873,'2929ea875cb614ccb1ccc2308d4e6f85','announcement',1,19,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(874,'bda2b6acd7e9ce4a9c1395e05b26ae3a','announcement',1,20,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(875,'d11deaa1ded6edb3c6f94b92361ed3c4','announcement',1,21,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(876,'2ee85a07ce633846e6ceed882afb13a9','announcement',1,22,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','1','2024-09-18 12:22:29','2024-09-20 14:46:47',NULL),(877,'040026cd6d201adea339912dffdca4d8','announcement',1,23,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(878,'f98e82e97ccf08e459a9ff23230c12d7','announcement',1,24,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(879,'ca27d6c5258a0ce1f7e86b0ac86a1e5e','announcement',1,25,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(880,'2f892fd4a70ba803799e4aba11440c32','announcement',1,26,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(881,'10ccf7c90be42a52fcaef96891eeadd0','announcement',1,27,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(882,'4a87ac7e904d98cc85d753752e7996f3','announcement',1,28,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(883,'143dc95ecf9ccfc0b731b0a7179d96d8','announcement',1,29,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(884,'554abb70ce80324ebec30118b90f7b1f','announcement',1,30,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(885,'c6dc5017a97dc37f55685f80d19ffa07','announcement',1,31,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(886,'858524b9cfdca297465425579bbc26d3','announcement',1,32,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(887,'ec9f7c58acfbca330cdd46f8e317c279','announcement',1,33,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(888,'b4c77722804082efc1ee0017d71dfc8d','announcement',1,34,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(889,'35725858dac06a6a07145605eb00a281','announcement',1,35,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(890,'5ff18b6f9a07ba18dd8113055810d7f5','announcement',1,36,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(891,'904db8ca522f683bc7f6bab53bd75b3c','announcement',1,37,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(892,'0b5973269a028d02cd43a8ae0ef46955','announcement',1,38,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(893,'73c452a9215a0310f4d4d26b29e0c466','announcement',1,39,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(894,'47cd0c80ec8dc4b61d3e0b34f2d8d403','announcement',1,40,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(895,'b21e68ccf02139f6f8c950dac7d13d96','announcement',1,41,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(896,'536d6ea9c26e7abe5514fe276f336b97','announcement',1,42,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(897,'80465ba6c2990725cae33a2c31b968d6','announcement',1,43,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(898,'6e86d3d663d0510db35838c6ce181cf6','announcement',1,44,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(899,'656434d5dc41126b5257b17e29c2ee5b','announcement',1,45,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(900,'f828efd7b89be89ad22f430c3a38fecb','announcement',1,47,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(901,'8cfb1506e5e2bea917223986cb370878','announcement',1,48,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(902,'9d7ebbcd35f74ac43a6e85324ec3445b','announcement',1,49,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(903,'7c19d1c921979aab72c11184f95c8ccc','announcement',1,50,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(904,'78c31778731af17a18262882e2a57ab9','announcement',1,51,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(905,'3a39a5b896a3f2358740dd0f4efc185f','announcement',1,52,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(906,'e7b01b03ea243185cbcb14ac8f008be9','announcement',1,53,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(907,'fff6b6bb10f31578fc504420747f36fb','announcement',1,54,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(908,'7729f7d1aebf72efa8d6038fc4cb7d11','announcement',1,55,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(909,'73c0ff18381e7b9152cbfeec469ecf9a','announcement',1,56,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(910,'0ba508d823d1583a861bfa1737008b83','announcement',1,57,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(911,'554aedf0e7f690ce018ab9075c8de838','announcement',1,58,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(912,'8146bc9e56d04f2813d18a5701856b0c','announcement',1,60,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(913,'d2906f824ef07753667f09aebca419dd','announcement',1,61,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(914,'49cf17d5109d1171105134f343106d2d','announcement',1,62,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(915,'6fabe4baacd5b1412635fd12954c83d8','announcement',1,63,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(916,'081f07a52dca3a7c7e92c9779a3a84dd','announcement',1,64,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(917,'2aba89af56006255e9f664ebee8878b4','announcement',1,66,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(918,'4507026157047c32e2df564595effebe','announcement',1,67,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(919,'8bb4902660cd7ab9f559e67ff800d921','announcement',1,68,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(920,'4bf6397ed4d082f81902f83feb7f55d9','announcement',1,69,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(921,'af6b990d4cfa97d2759f8a32e929cf20','announcement',1,70,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(922,'226de411c24671aec5be5d47b588b6bb','announcement',1,71,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(923,'405f20f54ce6f0880cedd32197adf910','announcement',1,72,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(924,'bd414a19a2656417b3ddc7e4dd6f9f1f','announcement',1,73,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(925,'1f630e9263f3ea4b178d0423067e25f4','announcement',1,74,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(926,'05e4d34e91943274c980373e26425acd','announcement',1,75,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(927,'25611b9104bca50faae5f94576b36ead','announcement',1,77,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(928,'394131413d04344bd349a3496c2ee19a','announcement',1,78,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(929,'bccd6f6e314ae9f0f0ad505106253511','announcement',1,79,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(930,'3e8a81b9d7fd8c7a12798bf4dc8569ea','announcement',1,80,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(931,'0186b4f1ba8248fb9735d7b67080aa27','announcement',1,81,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(932,'eca8dd355e201d84b89a193e62fec364','announcement',1,82,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','1','2024-09-18 12:22:29','2024-09-20 14:51:09',NULL),(933,'ccc53e7d7a9aed9343fbccd8188d992e','announcement',1,83,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(934,'70a509af4a12f5a6ebfda484a97bcc74','announcement',1,84,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(935,'0c57688aeb7a29bf0361f6ec82e14bdf','announcement',1,85,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','Test Announcement by the admin about the app',NULL,'0','0','2024-09-18 12:22:29',NULL,NULL),(936,'fa3d243af1c88ad752d974aac24fa9d0','daily_quote_added',1,3,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(937,'94585c14b0e54ee3eecf834a4a6d32cf','daily_quote_added',1,9,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(938,'7369c03dfe9ce5020cbb4ec435e34757','daily_quote_added',1,10,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','1','2024-09-18 12:23:28','2024-09-19 10:50:09',NULL),(939,'2206da902c5efc8be059fb632c939388','daily_quote_added',1,13,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(940,'bef61d2fd314e466b624f8906d37f540','daily_quote_added',1,14,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','1','2024-09-18 12:23:28','2024-09-19 09:51:39',NULL),(941,'a10bb8fcc9c5cbf9596d91632d52dfc6','daily_quote_added',1,15,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(942,'f90a3957dc3a1f2ddcc12800dbc2e991','daily_quote_added',1,17,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(943,'3203c5315006a2132a73bd10973dd99b','daily_quote_added',1,19,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(944,'7afbd28f2fa0a8b1de85c3b01e44d718','daily_quote_added',1,20,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(945,'45325e12c31416d70bf5cae24f2f2250','daily_quote_added',1,21,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(946,'5e92e76c4f23e7c2912eec5f34d98a0b','daily_quote_added',1,22,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','1','2024-09-18 12:23:28','2024-09-20 14:46:47',NULL),(947,'be5df70f89e253b74f12560da1a9afcb','daily_quote_added',1,23,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(948,'dc30a40a1a8831913044853a9bd6264f','daily_quote_added',1,24,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(949,'0e8d8001a53a7a1f2f5a93e5bc3e28c8','daily_quote_added',1,25,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(950,'8669495850be414d94f86832c7b8a735','daily_quote_added',1,26,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(951,'3008a639d8bb068f3bf9ca9ff104119a','daily_quote_added',1,27,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(952,'2e4e9e271487ec681704c32a75ce54f0','daily_quote_added',1,28,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(953,'f167918473357c0f3b329ee3a9672509','daily_quote_added',1,29,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(954,'4822163f88f4baad1b0dd71e3092ee62','daily_quote_added',1,30,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(955,'89b409dacdc5330b9ce712fd5869ddcf','daily_quote_added',1,31,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(956,'2753018222f640dbbeed80f2b934b30c','daily_quote_added',1,32,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(957,'92fdcf5d014ff3e7b806b17307f9b180','daily_quote_added',1,33,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(958,'6fd16caa469ac5f3aa50ecc040b98f96','daily_quote_added',1,34,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(959,'8ab9ea3f9d3773d0c42c5d0a64ae7343','daily_quote_added',1,35,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(960,'6fa8d8e87144609949f6918ffc4dc7e2','daily_quote_added',1,36,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(961,'53ddd82b718e8b6ac66527d9a979495d','daily_quote_added',1,37,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(962,'e63d11468b56589fcd09acbe259cfda2','daily_quote_added',1,38,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(963,'ac1b48acdab9eaf1e744e4ebc8462dd4','daily_quote_added',1,39,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(964,'bdac84b2d70a234c6e5ab571b65348d6','daily_quote_added',1,40,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(965,'2713689db17562551011ce2ba281c692','daily_quote_added',1,41,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(966,'e09f5bc11a601c03d962acd4a8e42514','daily_quote_added',1,42,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(967,'1373d4dee79cd500469ba24cbd9c3eef','daily_quote_added',1,43,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(968,'c1ed5e2cd9e34d0df057b143820c61b0','daily_quote_added',1,44,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(969,'de1d787761f802222cb9824304b035e0','daily_quote_added',1,45,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(970,'ebc324a470bdd92a6edac8863996790f','daily_quote_added',1,47,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(971,'62076a1bbdbca3930c1edb8af7668e4d','daily_quote_added',1,48,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(972,'7ef32b909f4302128cd9ff218defb77a','daily_quote_added',1,49,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(973,'8052343bce898e20b89be61a95fb7b46','daily_quote_added',1,50,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(974,'a0c2e9a5f829413bd19f53dc1897488d','daily_quote_added',1,51,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(975,'600d4935fd71cbab41341ef87c38e326','daily_quote_added',1,52,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(976,'d9243ebd0eedc600e480a0b4bb4fa731','daily_quote_added',1,53,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(977,'1e8f3122180e155d7ec96240a123039a','daily_quote_added',1,54,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(978,'a9f3810f9ca6a84fef93892984c7e97c','daily_quote_added',1,55,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(979,'edf0f0eb56990c8ff50a20bab619a097','daily_quote_added',1,56,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(980,'83f3fc76f1c269693292b7fc3274f27f','daily_quote_added',1,57,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(981,'d0d6911473f98737db74ccaa2198615d','daily_quote_added',1,58,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(982,'c30add0d89948b1016f3f3adb158d403','daily_quote_added',1,60,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(983,'168c4cd7add1884d7d1af26c4ff9ef7c','daily_quote_added',1,61,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(984,'8ac5446c35aa62df46ec65c33849ab08','daily_quote_added',1,62,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(985,'e2df36ac057a6186f3deea6b8534d3a0','daily_quote_added',1,63,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(986,'604e0d5fa08e65f505be88d8e7167901','daily_quote_added',1,64,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(987,'428bc6c7e4107e7fda420e3593e84845','daily_quote_added',1,66,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(988,'0e8c57bcf2b817eadac844a711e6f048','daily_quote_added',1,67,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(989,'5754d5d11851357df050e134ee799407','daily_quote_added',1,68,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(990,'ed9d990a70e29f5521a4dcd7074079d6','daily_quote_added',1,69,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(991,'fc25ae4900c54e9535b595ff876c5b98','daily_quote_added',1,70,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(992,'357b442192f0ac439e9c86fddaac9d4b','daily_quote_added',1,71,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(993,'546ef310e0d0cd571c0cf474692b380e','daily_quote_added',1,72,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(994,'e5b3160e03f12e09723430020f0e17e6','daily_quote_added',1,73,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(995,'ee75bc3a33bd71cf70e75ffa18c70387','daily_quote_added',1,74,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(996,'2a6321f51dacad3a34c73ce2998f5db1','daily_quote_added',1,75,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(997,'3d8b0667791ed634f7fcde0c4f08e232','daily_quote_added',1,77,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(998,'7b4e87aef7ee6a8afbff1b0a015a7e1d','daily_quote_added',1,78,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(999,'9bbcce16d0855bc81fe873a63529f4d8','daily_quote_added',1,79,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(1000,'cdde25c381532c193b86715ecbcd8aea','daily_quote_added',1,80,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(1001,'14b03c09a34415bb2d04d91682d9348b','daily_quote_added',1,81,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(1002,'6fa5fd7bd784b43c5db9b359c235f2ba','daily_quote_added',1,82,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','1','2024-09-18 12:23:28','2024-09-20 14:51:09',NULL),(1003,'81cf56cec2371cc5dc824a7bc75c1eb2','daily_quote_added',1,83,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(1004,'71e5f0f974a1608fbcefb7f2b502c620','daily_quote_added',1,84,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(1005,'133976fb155afb069be4bab2d6843e3d','daily_quote_added',1,85,'bible_quotes',22,'cju4btpm17u3i3h',NULL,NULL,NULL,'From Kingdom Couples','Check out the verse of the day!',NULL,'0','0','2024-09-18 12:23:28',NULL,NULL),(1006,'4b1a23a637f928295cb9a9ec2726d9fc','announcement',2,3,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1007,'8cf68910764fa582f05f8b0df60f66f3','announcement',2,9,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1008,'f079512eacea7e2a5b6572b341dae51c','announcement',2,10,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1009,'07907817ccb29487b04d3438802ce42c','announcement',2,13,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1010,'dc082febd9d5c7de28afba394dc75173','announcement',2,14,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1011,'506048d9c6e05f1adfae2222e747900a','announcement',2,15,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1012,'8125de31119d9c6d2081cafafa1d33bf','announcement',2,17,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1013,'fc97a19d6cc10ecf75608d3f6a22fb9a','announcement',2,19,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1014,'5c7178177c9139cce5623dd6c2a23905','announcement',2,20,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1015,'98d6d69ee9d3ff2a422731232d2f3b00','announcement',2,21,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1016,'efe6e5a3a9de36ec7f662bdb390888a6','announcement',2,22,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','1','2024-09-19 19:43:26','2024-09-20 14:46:47',NULL),(1017,'d058991a1e73212d217f63b5ade01901','announcement',2,23,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1018,'02d97e8062addd7337932dff55a8ab6b','announcement',2,24,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1019,'e7cd881d9b76c750e60b6f4eb4741b3d','announcement',2,25,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1020,'1532e61fd7d3d61ac49a5da6196b22d2','announcement',2,26,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1021,'0c13aa61f89f5978262df37f1de8f1f6','announcement',2,27,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1022,'1c44ae440e0dbdd61746ca6b04827e11','announcement',2,28,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1023,'76de4aef9bd5f6dfe77ebc7c6d01e7dd','announcement',2,29,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1024,'76666b05e2f81cf4d42a3bc4ecafec6b','announcement',2,30,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1025,'8125d87cece5ed9a99a93af244419c6a','announcement',2,31,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1026,'ff9e1619d5e79eefbdd10d97ea3f0e8d','announcement',2,32,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1027,'2a2e5398e8aecc8d9fe92be18a8b6309','announcement',2,33,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1028,'51639a5e252d4d7ea62cc3c102dba30c','announcement',2,34,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1029,'18942a89cb970b1300d5cd115386e6e6','announcement',2,35,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1030,'764345bde348dfee7c0684b16d499bb2','announcement',2,36,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1031,'fa9a2d9b6a30e9fcee58c2a0ae66da8b','announcement',2,37,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1032,'44c82bbcc6815f739f319820ba5cc13f','announcement',2,38,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1033,'936aa52908984469e3c1de1b5b0150b5','announcement',2,39,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1034,'64204cfeb8535a97807c0656779dab80','announcement',2,40,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1035,'dcfbf3a9f44b2edad52be5bdc4019903','announcement',2,41,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1036,'ef3e54ad769d3b404955ab0b2ab7a0a8','announcement',2,42,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1037,'99b23849fd4f8d28220326eb118ebb98','announcement',2,43,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1038,'52ea4ba2187b194884776c4101a552fa','announcement',2,44,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1039,'5ffe5d7bc30dc8f704ec2757b54b99e7','announcement',2,45,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1040,'91bca1efe0f104879db5a5c4487e1184','announcement',2,47,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1041,'8142fab84c9cf21f9c2743f9f0a4f4c0','announcement',2,48,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1042,'1998d0618845fedb2bec85336283e599','announcement',2,49,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1043,'b2033c5cc360ab6df12f3178b484bb4e','announcement',2,50,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1044,'35e2afa991945fa3ee8a351962ca1789','announcement',2,51,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1045,'002973cf4f12d2800a1bf0e307757c13','announcement',2,52,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1046,'9f85f785a174b5a1f01af81e6115a40d','announcement',2,53,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1047,'feff72f275effc25280c4f9980050087','announcement',2,54,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1048,'013a359ff82367f1f412279bee7ad70a','announcement',2,55,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1049,'db47adc7faca443b889f44b77aea7bb0','announcement',2,56,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1050,'fbac84c53a5802e5fa0506bcd3d60c76','announcement',2,57,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1051,'32e0b1beb1e18a23f568c21326337bab','announcement',2,58,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1052,'7c7833da7d20f924c504e82dd5189902','announcement',2,60,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1053,'97e6371735ef7c4b6a135107ece2c29c','announcement',2,61,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1054,'97960167f5869c4f35ce2d73ec7ec35d','announcement',2,62,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1055,'2268237d59ad53e201a9162cf61b283d','announcement',2,63,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1056,'52723e32112f7e9ca5bb9c2f70b65428','announcement',2,64,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1057,'a70390dc485cadfc8f0b9cbb97aedf5e','announcement',2,66,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1058,'b36afad6829053b68ef2171656d1d128','announcement',2,67,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1059,'c0018de03f8a25d3fcbd7ed40f2870b8','announcement',2,68,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1060,'a16b12dbb6c4b32e6c3b5dcb8af6690f','announcement',2,69,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1061,'1f7b2834d2e3277edaf160e6efb987ab','announcement',2,70,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1062,'64ea2e1ee738b1c4a22eeda455dfb313','announcement',2,71,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1063,'63b475608b5ba0c9fea4435fbc0c9186','announcement',2,72,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1064,'b3956295e547e1bd3436b8f8f68be59e','announcement',2,73,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1065,'feae5ecec706f0e976fe8ebe5098b2c2','announcement',2,74,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1066,'94a45267b4251978b7f9b584e6f3a0a7','announcement',2,75,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1067,'414d2fc1f291fee512bee3ca0411f872','announcement',2,77,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1068,'a061f3d9ed80701df713591639e6405c','announcement',2,78,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1069,'2da34e501c69aac0d818bc65afd9898a','announcement',2,79,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1070,'b86d2f00d18c176303c6871e37e5901d','announcement',2,80,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1071,'47e95887246e303ad57824579fa5c2e9','announcement',2,81,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1072,'198043f7315c25a5d3d967db680c2614','announcement',2,82,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','1','2024-09-19 19:43:26','2024-09-20 14:51:09',NULL),(1073,'06f9d3c19db55c34f2718bb8d9921ff7','announcement',2,83,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1074,'04d99c87f1486c70ff2be50da96c76ff','announcement',2,84,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1075,'723b0b73b96416b29c861b715032c473','announcement',2,85,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1076,'dd22c5504f087cbac217fcd0b90bccc2','announcement',2,86,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1077,'53129a6593b4d1c44d2d8795f844117a','announcement',2,87,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'1','1','2024-09-19 19:43:26','2024-09-19 19:55:48',NULL),(1078,'be969e63253ebc6aac7472058c0890dd','announcement',2,88,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1079,'79d12cff1f422b481a089515687ceba4','announcement',2,89,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1080,'63f8427c6c4550ff77b63bdf7e93110d','announcement',2,90,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'1','1','2024-09-19 19:43:26','2024-09-19 19:57:04',NULL),(1081,'7b36b6063dfc4a6505f79e3679bbca30','announcement',2,91,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','0','2024-09-19 19:43:26',NULL,NULL),(1082,'ea03df0afa4ca1d6282226275ee48553','announcement',2,92,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','1','2024-09-19 19:43:26','2024-09-19 23:23:22',NULL),(1083,'ceea58ab1df60c3bac2ce63eb6e1ded1','announcement',2,93,'announcement',0,'0',NULL,NULL,NULL,'From Kingdom Couples','🔥 New Series Alert! Your words have power—they can build up or break down. Check out the Fiery Tongue series in the Spiritual Growth section! 🔥',NULL,'0','1','2024-09-19 19:43:26','2024-09-19 23:15:41',NULL),(1084,'f80f0730ad123bc704d74509b8e98553','partner_request_accepted',93,92,'partners',93,'adam-beaston',NULL,NULL,NULL,'Partner added','Partner added! You\'re now connected!',NULL,'1','1','2024-09-19 23:15:46','2024-09-19 23:27:17',NULL),(1085,'49467cb2959420ddcf872bfb900504ec','new_event_by_partner',92,93,'events',28,'cju4oynm19x4923',NULL,NULL,NULL,'New event added by shana skeen','New event added by shana skeen! Check it out!',NULL,'0','0','2024-09-19 23:23:37',NULL,NULL),(1086,'0f9e9d9f8e47a084e44f208af64db890','partner_request_accepted',104,105,'partners',104,'madison-miller',NULL,NULL,NULL,'Partner added','Partner added! You\'re now connected!',NULL,'0','0','2024-09-23 11:23:18',NULL,NULL),(1087,'8bc9fc1d3b47b1d972378f7b02bd65f1','new_event_by_partner',105,104,'events',33,'cju4oynm1exc4wq',NULL,NULL,NULL,'New event added by Caleb C','New event added by Caleb C! Check it out!',NULL,'1','1','2024-09-23 11:28:35','2024-09-23 11:28:57',NULL);
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `partners`
--

DROP TABLE IF EXISTS `partners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `partners` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `user_id` int unsigned NOT NULL,
  `partner_id` int unsigned NOT NULL,
  `status` enum('pending','accepted') NOT NULL DEFAULT 'pending',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `partners_slug_unique` (`slug`),
  KEY `partners_user_id_foreign` (`user_id`),
  KEY `partners_partner_id_foreign` (`partner_id`),
  CONSTRAINT `partners_partner_id_foreign` FOREIGN KEY (`partner_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `partners_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `partners`
--

LOCK TABLES `partners` WRITE;
/*!40000 ALTER TABLE `partners` DISABLE KEYS */;
INSERT INTO `partners` VALUES (22,'cju2gddm0gqy809',14,38,'pending','2024-08-30 13:25:35','2024-08-30 13:25:35',NULL),(23,'cju2gddm0gqyqul',14,27,'pending','2024-08-30 13:26:00','2024-08-30 13:26:00',NULL),(24,'cju2gddm0grbob2',14,23,'pending','2024-08-30 13:36:03','2024-08-30 13:36:03',NULL),(25,'cju2gddm0q6nqlx',51,53,'accepted','2024-09-06 03:55:15','2024-09-06 03:56:15',NULL),(28,'cju4b8xm17l70rg',82,14,'pending','2024-09-18 08:14:15','2024-09-18 08:14:15',NULL),(29,'cju4oynm19w75x4',92,93,'accepted','2024-09-19 22:57:50','2024-09-19 23:15:46',NULL),(30,'cju4oynm1ex3q00',105,104,'accepted','2024-09-23 11:21:59','2024-09-23 11:23:17',NULL);
/*!40000 ALTER TABLE `partners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reset_passwords`
--

DROP TABLE IF EXISTS `reset_passwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reset_passwords` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(150) DEFAULT NULL,
  `token` varchar(255) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `reset_passwords_email_index` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reset_passwords`
--

LOCK TABLES `reset_passwords` WRITE;
/*!40000 ALTER TABLE `reset_passwords` DISABLE KEYS */;
INSERT INTO `reset_passwords` VALUES (1,'elan@yopmail.com','4%7C1721990701124','2024-07-26 10:45:01',NULL,NULL);
/*!40000 ALTER TABLE `reset_passwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `subscription_packages`
--

DROP TABLE IF EXISTS `subscription_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `subscription_packages` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text,
  `amount` varchar(255) NOT NULL,
  `trial_period` int NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `duration` varchar(255) NOT NULL,
  `duration_unit` enum('day','week','month','year') NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `subscription_packages_slug_unique` (`slug`),
  UNIQUE KEY `subscription_packages_title_unique` (`title`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscription_packages`
--

LOCK TABLES `subscription_packages` WRITE;
/*!40000 ALTER TABLE `subscription_packages` DISABLE KEYS */;
INSERT INTO `subscription_packages` VALUES (1,'cjuj7klz2jtsy5','1month','1 Month','5.99',0,'1','1','month','2024-07-26 10:17:43',NULL,NULL),(2,'cjuj7klz2jtsy6','6month','6 Month','34.99',0,'1','6','month','2024-07-26 10:17:43',NULL,NULL),(3,'cjuj7klz2jtsy7','1year','1 Year','69.99',0,'1','1','year','2024-07-26 10:17:43',NULL,NULL),(4,'trial','Trial','Trial','0',0,'1','7','day','2024-07-26 10:17:43',NULL,NULL);
/*!40000 ALTER TABLE `subscription_packages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_api_tokens`
--

DROP TABLE IF EXISTS `user_api_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_api_tokens` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int unsigned DEFAULT NULL,
  `api_token` text NOT NULL,
  `device_type` varchar(100) DEFAULT NULL,
  `device_token` text,
  `platform_type` varchar(100) DEFAULT NULL,
  `platform_id` varchar(255) DEFAULT NULL,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` text,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_api_tokens_user_id_foreign` (`user_id`),
  CONSTRAINT `user_api_tokens_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_api_tokens`
--

LOCK TABLES `user_api_tokens` WRITE;
/*!40000 ALTER TABLE `user_api_tokens` DISABLE KEYS */;
INSERT INTO `user_api_tokens` VALUES (1,3,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFzZEB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMTk4OTQ5MCwiZXhwIjoxNzIyNTk0MjkwLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiYXNkQHlvcG1haWwuY29tIn0.vHunRgrQIlVx3T8xL2nll_Hn8t_mNxXwOM1lUNGhI5k','android',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-07-26 10:24:51',NULL,NULL),(2,3,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFzZEB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMTk4OTUwNiwiZXhwIjoxNzIyNTk0MzA2LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiYXNkQHlvcG1haWwuY29tIn0.BKAqXsKQaTmy7SDtdWLMP9VkWZ4ONDf9NCjj-CdRFH0','android',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-07-26 10:25:06',NULL,NULL),(11,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjE5OTYwOTYsImV4cCI6MTcyMjYwMDg5NiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.Q0Mk75dXwdfEdtebUWldfUuZVnl624lol4BfuPSv8_w','ios',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-07-26 12:14:56',NULL,NULL),(12,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjE5OTYxMjQsImV4cCI6MTcyMjYwMDkyNCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.0tqaU7OqWXwo8CT1ldhMvRtMZGQdeG4ZUlnQK-IWZKc','ios',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-07-26 12:15:25',NULL,NULL),(14,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjIyNDI1NzksImV4cCI6MTcyMjg0NzM3OSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.VNpTFwJGk0DuTp0Oe5HXGK_GTJHBflFAF6HbN4tTqpY','ios',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-07-29 08:43:00',NULL,NULL),(15,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjIyNTkzMDksImV4cCI6MTcyMjg2NDEwOSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.bKUXy1_M2Iu1Qex5mq8N18t1TMXUysWgkPrRMJExEUY','android',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-07-29 13:21:49',NULL,NULL),(20,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjIzMjg5NjksImV4cCI6MTcyMjkzMzc2OSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.Cti_JD5h7hTUG6qq6D_zDE_mRgTZ0o6a_ztiKQwTvCc','android',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-07-30 08:42:50',NULL,NULL),(23,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjI1MDM5NDUsImV4cCI6MTcyMzEwODc0NSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.c6Mzu0NZvlGnspab5GPIpamxNwqkBq8-GcdHL-jVntI','android',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-01 09:19:06',NULL,NULL),(24,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyNTA3MjEwLCJleHAiOjE3MjMxMTIwMTAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.HSU_A6NBG-M704idk8oWxW02j4gjVjKFgmaojc3OBBU','android',NULL,'custom',NULL,'127.0.0.1','PostmanRuntime/7.40.0','2024-08-01 10:13:30',NULL,NULL),(25,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyOTM2NjEwLCJleHAiOjE3MjM1NDE0MTAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.LEvm9ZDxd_HINrm_fbBzg_Qmt6sY4rd8uJ77Arpl7dk','android',NULL,'custom',NULL,'127.0.0.1','PostmanRuntime/7.40.0','2024-08-06 09:30:11',NULL,NULL),(26,13,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIyQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyOTM2NzMxLCJleHAiOjE3MjM1NDE1MzEsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMkB5b3BtYWlsLmNvbSJ9.xi36YmAsYPWnkRk0anGWuHr-Oet9v9sC3DD3VAvurdI','android',NULL,'custom',NULL,'127.0.0.1','PostmanRuntime/7.40.0','2024-08-06 09:32:12',NULL,NULL),(27,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyOTQwNTAzLCJleHAiOjE3MjM1NDUzMDMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.wLvtipkHs2_AU5xxfhauAulUGapEH99JoMVKH_W-TVc','ios',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-06 10:35:03',NULL,NULL),(28,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyOTQwNTc3LCJleHAiOjE3MjM1NDUzNzcsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.tDjeOONzfy5pINvPijjSIXHxliRNWpPjcWnZ_Jpjzbo','android',NULL,'custom',NULL,'127.0.0.1','PostmanRuntime/7.40.0','2024-08-06 10:36:18',NULL,NULL),(29,13,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIyQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyOTQwNjczLCJleHAiOjE3MjM1NDU0NzMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMkB5b3BtYWlsLmNvbSJ9.ne4tARGzASBkfW2_1Y7-Uz-vd7c12gH9Udjc3gyNeDo','ios',NULL,'custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-06 10:37:54',NULL,NULL),(30,13,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIyQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyOTQwNzQxLCJleHAiOjE3MjM1NDU1NDEsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMkB5b3BtYWlsLmNvbSJ9.xdtI1py586nu4qGxcO613RRSGuG8Ej665nIdk7ag3MI','android',NULL,'custom',NULL,'127.0.0.1','PostmanRuntime/7.40.0','2024-08-06 10:39:02',NULL,NULL),(31,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzIyOTQyMjc5LCJleHAiOjE3MjM1NDcwNzksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.Fi2EJdu08Rhx-clyz3ECqjzpIu_gbmzS0ZbQCpNbApg','android',NULL,'custom',NULL,'127.0.0.1','PostmanRuntime/7.40.0','2024-08-06 11:04:40',NULL,NULL),(33,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjI5NDY4MzUsImV4cCI6MTcyMzU1MTYzNSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ._nQ7_UjneoTqBGRIFXG1Se7pzdvgrpoxkT5E6I2vRkA','android','do5ox7ejQsGSoJknme8Hhp:APA91bE32m4yzkDgdt7UVI7GzMPrcbPCxx6aM8Hkv-sZO6McLKJoVDAW40qL5up3feo8hdj3eRDIv0FhrTukER_Ncxn2RIsadg9qs1BSV1w0PdSSjRqY63X84kr85ikJaNtbbv1uYrCN','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-06 12:20:35',NULL,NULL),(35,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjI5NDgwNDYsImV4cCI6MTcyMzU1Mjg0NiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.LQ_ENm9ODKUFMbQ0qqvbM8sNY1r8RGl5LpKs2Ihi0V4','android','do5ox7ejQsGSoJknme8Hhp:APA91bE32m4yzkDgdt7UVI7GzMPrcbPCxx6aM8Hkv-sZO6McLKJoVDAW40qL5up3feo8hdj3eRDIv0FhrTukER_Ncxn2RIsadg9qs1BSV1w0PdSSjRqY63X84kr85ikJaNtbbv1uYrCN','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-06 12:40:47',NULL,NULL),(37,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMjk1MzU5NCwiZXhwIjoxNzIzNTU4Mzk0LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.6QWYTcbB_eakE_3UNbE3X_40i04N4hrvb8vw-E0NUOs','android','d_ACkRdOSXql4u6a2LkqSB:APA91bHHbzNgXiyX8T_VIi2p0zrQyFV5J-Shhqe6JHl_SYunnRlYg6176Dmxz8c-sSE66t9udeAeC-FpJKoq-ebienSchoNutufLbNANGW95wspytUMyQG6msX9fvHyS4JRlz3uFqQZ4','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-06 14:13:14',NULL,NULL),(38,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMjk1MzYxMSwiZXhwIjoxNzIzNTU4NDExLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.LSzycY5z5NU5cv9-Zv_gxQRlEHut-RsuVdNYXqqC9_E','android','d_ACkRdOSXql4u6a2LkqSB:APA91bHHbzNgXiyX8T_VIi2p0zrQyFV5J-Shhqe6JHl_SYunnRlYg6176Dmxz8c-sSE66t9udeAeC-FpJKoq-ebienSchoNutufLbNANGW95wspytUMyQG6msX9fvHyS4JRlz3uFqQZ4','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-06 14:13:32',NULL,NULL),(39,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjI5NTM5MjMsImV4cCI6MTcyMzU1ODcyMywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.w_3iRRiPjEhmmALmVo7wSqxOJc55VD3Tj03rHTgNhmo','android','ddO1tiuXSYigzCLl7_TSOW:APA91bGtme8dex458siQDoIxzmIivBuaZ1-CvcZpKRpK3IxxjVuAV1Wj2jnGUVMPf8grKBdAj20o8Z0xCogTlJAUS4jw7W5GlTyxmowqJjfa3ksJj-0wf0F2l68t5N8Yl_eI-MwxxAAz','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-06 14:18:44',NULL,NULL),(41,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzIzMDE0NzY1LCJleHAiOjE3MjM2MTk1NjUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.XcjSHC8ccz2MSTEpjWOK16Hd9yGoMaP2wCs7tAnY2YQ','android','d_ACkRdOSXql4u6a2LkqSB:APA91bHHbzNgXiyX8T_VIi2p0zrQyFV5J-Shhqe6JHl_SYunnRlYg6176Dmxz8c-sSE66t9udeAeC-FpJKoq-ebienSchoNutufLbNANGW95wspytUMyQG6msX9fvHyS4JRlz3uFqQZ4','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 07:12:45',NULL,NULL),(42,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzAxNDg3OSwiZXhwIjoxNzIzNjE5Njc5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.1Cc5eDRTkgxa8j841KRzC8PuPslGHF6oPQrjO2fnt5M','android','d_ACkRdOSXql4u6a2LkqSB:APA91bHHbzNgXiyX8T_VIi2p0zrQyFV5J-Shhqe6JHl_SYunnRlYg6176Dmxz8c-sSE66t9udeAeC-FpJKoq-ebienSchoNutufLbNANGW95wspytUMyQG6msX9fvHyS4JRlz3uFqQZ4','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 07:14:40',NULL,NULL),(43,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjMwMTQ5MTMsImV4cCI6MTcyMzYxOTcxMywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.Ghl-4qgXx0iuFf6_moQXjJ0AxYVHxcLm9oyGa1YCx6I','android','d_ACkRdOSXql4u6a2LkqSB:APA91bHHbzNgXiyX8T_VIi2p0zrQyFV5J-Shhqe6JHl_SYunnRlYg6176Dmxz8c-sSE66t9udeAeC-FpJKoq-ebienSchoNutufLbNANGW95wspytUMyQG6msX9fvHyS4JRlz3uFqQZ4','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 07:15:13',NULL,NULL),(44,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzAxNDk4MywiZXhwIjoxNzIzNjE5NzgzLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.-4i-zxnRtRm0VxAc1Yf8fch2etJhqHxqPqnddiDM1KY','android','d_ACkRdOSXql4u6a2LkqSB:APA91bHHbzNgXiyX8T_VIi2p0zrQyFV5J-Shhqe6JHl_SYunnRlYg6176Dmxz8c-sSE66t9udeAeC-FpJKoq-ebienSchoNutufLbNANGW95wspytUMyQG6msX9fvHyS4JRlz3uFqQZ4','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 07:16:24',NULL,NULL),(45,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjMwMTUwMzUsImV4cCI6MTcyMzYxOTgzNSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.21V8tCduG24F490-xFUOGpPV5JNJihXbs0j-nr8De3w','android','d_ACkRdOSXql4u6a2LkqSB:APA91bHHbzNgXiyX8T_VIi2p0zrQyFV5J-Shhqe6JHl_SYunnRlYg6176Dmxz8c-sSE66t9udeAeC-FpJKoq-ebienSchoNutufLbNANGW95wspytUMyQG6msX9fvHyS4JRlz3uFqQZ4','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 07:17:16',NULL,NULL),(46,15,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1hdHRAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjMwMjEyMTksImV4cCI6MTcyMzYyNjAxOSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Im1hdHRAeW9wbWFpbC5jb20ifQ.ixgw249cWmV-Y3MMyTfzDli2dn1UiI4C_1tdE-rK4B4','ios','cFPPUrrYd0S1hgjOjz3DYm:APA91bEDUR_LDO2yq0ti3EcjX2wiIx14yaGAeYADppGcxHfdZQ0RDv2J_PxYqGVlN2z_yTpGGmcKz8XU-WDRyq_5NIGVXPKQ2JrYSyZTwMo5duKgCwyr7M4UrHDyI0mNWr46GPwI7AOg','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 09:00:19',NULL,NULL),(47,15,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1hdHRAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjMwMjEyNDIsImV4cCI6MTcyMzYyNjA0MiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Im1hdHRAeW9wbWFpbC5jb20ifQ.EVdRXhTCJVTujbp1n2pGqKV1fD4duZ-CEp8FzbEJpBI','ios','cFPPUrrYd0S1hgjOjz3DYm:APA91bEDUR_LDO2yq0ti3EcjX2wiIx14yaGAeYADppGcxHfdZQ0RDv2J_PxYqGVlN2z_yTpGGmcKz8XU-WDRyq_5NIGVXPKQ2JrYSyZTwMo5duKgCwyr7M4UrHDyI0mNWr46GPwI7AOg','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 09:00:42',NULL,NULL),(48,9,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhAeW9wbWFpbC5jb20iLCJpYXQiOjE3MjMwMjEyODcsImV4cCI6MTcyMzYyNjA4NywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsZXhAeW9wbWFpbC5jb20ifQ.EF-jNle7s7NXezp5ytRCO_Me08Ar-jcA2GhY_6emdIk','android','eWtHXi3wRs6Oi1uPf16S2z:APA91bHYGwiunswDaTOsTGD88grmmd34cpUbcG1iVIXiO8naLAR2qS7DfsHNkaeGCjwdmzeXsMn1KKRl0VWC7Zn8wPaH1Tvlxnxay1AxylATWL5IXXgNhZdhG-alSHp-BgqQcjG01l0l','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 09:01:27',NULL,NULL),(50,17,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IndzNHF0a2o0cGdAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzIzMDI1MDk5LCJleHAiOjE3MjM2Mjk4OTksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ3czRxdGtqNHBnQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.gNh1KfToa_kD_vxdDIWoyGND8eL0UzQVP_3kUSoREts','ios','cNzMDPQdLErht9ORK5cqY8:APA91bFV_Tsp6O2hOblABo7XvoMz9WLaj4oQXC09GQjYVPV03RucLDOh9xpTt1AL20xZlN67JmvGPFqzVT-aExh9hJfNOUbX57aSOtMd2FfChNAqHQZJ8mebkCcW4lsIbKrl-YU23Ewk','apple','000658.8cb0a306db214703b358760105827cee.1004','127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 10:04:59',NULL,NULL),(51,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzAyNTQ3MywiZXhwIjoxNzIzNjMwMjczLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.7Sf4CTfD-4rydaxaJKU3OTVcaL40PLUte_8BqUVhvzI','android','cWs-ixivQJablwrCRyov36:APA91bGpCjfS3cxmEMJSWJxxzAC9a91MnOUisX32RXm7C-k-aadwUS_vX8OqosqO9AJDE5TYBdWetodfXWzAUey35wB8qzVcPDje-WbWmoXdS_KB_Ji7oSAsrmvZPKzxVyqTVHpftmhA','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 10:11:14',NULL,NULL),(52,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzA1NjAyNywiZXhwIjoxNzIzNjYwODI3LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.RrnvFvrBLTMbiIvegGtcw-g_4PhDZKkvF8oPT2lZ4NQ','ios','d3CzfHZq8EY3vUjwu0VEtO:APA91bF9pLfHKMw4m7x0oH_A9gKGPO4IKjdbaqox3WV8INBQ4ERcXESKlWgYRKaZJBUTSBjN18reNuWda3EB4LDP6j6fUgv6RDd9XHaG5xog_Zchn-lgex9KcNRxzvG9pdJTkMfLc3FD','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-07 18:40:28',NULL,NULL),(68,19,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRwMnB3eDc1N25AcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzIzMTA3MTQ3LCJleHAiOjE3MjM3MTE5NDcsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ0cDJwd3g3NTduQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.pn5bmN_QswIr7dhhR2FBwHJ8PNKyetXMl33vBirywjE','ios','fJD-weKNd0DTloSEvgN0cc:APA91bGvBsV1zAn4ZTDI8BW2WIonowrzDCZdb_mK_PWsynSkLY1NVOojSKh4S93wSdzMXfTGW4IeMcEVGPiBya-yZDq36QhlXmbkUr4Rte0AM9dUV1_IaJI2tCc_bCB-S_B70QwIZicW','apple','001046.4af7c99537154e2e87bbc5b57a5218eb.0749','127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 08:52:28',NULL,NULL),(69,20,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IjZoZzg0OWNmNGJAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzIzMTA5NTE3LCJleHAiOjE3MjM3MTQzMTcsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiI2aGc4NDljZjRiQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.B7U0fAiKxaabvLQ4p0pPao0csg8HtKuOienwTCUsIVo','ios','cLBPX7crJ0qQvGeqTK2oB0:APA91bGX30z246mT-6rqKItBYIP2RtuGM6WaCoNClwpN7ZdqtpKbG8jwL9nUARChBstJVXUtJKamc9tjy4aPvW6wzXJONttzbK5KU-FxSLxNcHXGNRwC4MQCdpeDsEm7tILKyHoJiy9Q','apple','000244.7850a37711314a8f84c61d254bbe51e0.0931','127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 09:31:57',NULL,NULL),(70,21,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNsaWNrQHlvcG1haWwuY29tIiwiaWF0IjoxNzIzMTA5NzkxLCJleHAiOjE3MjM3MTQ1OTEsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJzbGlja0B5b3BtYWlsLmNvbSJ9.JiV9lUxkO1xmfuANtdDzVX0lflZM51sOuWfjuhcTAEo','android','fbF2f-qiRD-zjE7CyTfqUk:APA91bE-1YAzxhM9Upd3ojpO9-7X6LpkRUHPVPss3ZGshS9l2wUkwSqp-RpQ_yHFXa9Wzy-_92Kn4vD2cBu1fze8mSjtY62HJ4Azmp5gCvZD19Qxt0KnGPcfcuGTxmrXwa4yTUvA4Mk-','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 09:36:32',NULL,NULL),(71,21,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNsaWNrQHlvcG1haWwuY29tIiwiaWF0IjoxNzIzMTA5OTEyLCJleHAiOjE3MjM3MTQ3MTIsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJzbGlja0B5b3BtYWlsLmNvbSJ9.Evi_ol2w7xvMeYpDgMNZNoHVtCGAmnuNts79npZM-9I','android','fbF2f-qiRD-zjE7CyTfqUk:APA91bE-1YAzxhM9Upd3ojpO9-7X6LpkRUHPVPss3ZGshS9l2wUkwSqp-RpQ_yHFXa9Wzy-_92Kn4vD2cBu1fze8mSjtY62HJ4Azmp5gCvZD19Qxt0KnGPcfcuGTxmrXwa4yTUvA4Mk-','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 09:38:32',NULL,NULL),(72,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzExMDA5NCwiZXhwIjoxNzIzNzE0ODk0LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.OU_pO45s2DvAqohHXpPUtFLEXaw4508qsfgRxXXcRxc','android','dJ2sufJPT5i4UJHz9-8W_T:APA91bFch9-bjFCWyRHavs-Nhmdr4xkzAoaXaAYuBJ5qdG-EsNumN1rpGouPKwOuAJ00cQLOy3eCH5icCf1H_7WfTrecKkjE0OIpeSUMiL8paZk5mth0SELm7nF6jB1VY2UBJ_CDZFIW','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 09:41:34',NULL,NULL),(73,22,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1lbGlzc2Euam9obnNvbjExODVAZ21haWwuY29tIiwiaWF0IjoxNzIzMTE1OTgyLCJleHAiOjE3MjM3MjA3ODIsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJtZWxpc3NhLmpvaG5zb24xMTg1QGdtYWlsLmNvbSJ9.AAA7jRQcjFxXnDOfvImuE1btHq0iSptZzIJ6HfW80eg','ios','cJIeKMRLCkg9utOyqXD1Sg:APA91bF7XpWuR5lxNQMg1PYhJGXRiU1TIn4-NUMcFTj-fFYUwdjrCpZO2R1LdXv5XeyzO2shY9qGJZx3nQm2rMGXqsRLbQcnpWRygza--1Hvq_PZXMCneIjBdXzJ7EWDdyKMdbHZiJRi','google','107330819474683324005','127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 11:19:43',NULL,NULL),(74,23,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imhhc25haW5zaGFtc2kuNjFAZ21haWwuY29tIiwiaWF0IjoxNzIzMTI3MzEyLCJleHAiOjE3MjM3MzIxMTIsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJoYXNuYWluc2hhbXNpLjYxQGdtYWlsLmNvbSJ9.-S7g8CuE6msnDl9fjsyWdeJohmIxiEUcwnGjTkOVRwA','android','dLjni8PnSCOE8vcc71YQa9:APA91bH0LcDAQSeW6PTocJLp1tLLx-MHd2kt5TUZ6yMMZLGe8DjCviSeM1syDB0-u0yYS0sFGnaMKJ_5_u6K0QjNisjj98ykFb2efV6_dm7zPEKmn-oph_BbAB_4QRcuumRcn06J04Pb','google','115087476967729095767','127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 14:28:33',NULL,NULL),(75,24,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImdmeHQ4ZzZqbjVAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzIzMTI3ODEzLCJleHAiOjE3MjM3MzI2MTMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJnZnh0OGc2am41QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.PbYNMF2uvvSzSiBHTB0kDR9n8NSvkafFC_uiuSr63oU','ios','csL4eSt0aUfLgzxYjTre1t:APA91bFt7UO6mDnIYnfdtT2YNP4QVy4F1F7tyou2iZrrbzM6zNUedTZMmzgMxvSnBCzKcwI-8Aa8GNZUNbLD84iBS4aiyWeEJ-zjMEvyPNVefye2xuXnnFDTgSuOGpDJDm9YLWHMqxVk','apple','000712.01b4f8b01d8045a48a4d6c1ed9f5d1d7.1436','127.0.0.1','Dart/3.3 (dart:io)','2024-08-08 14:36:54',NULL,NULL),(76,25,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZm9uc29wb3R0ZXIuMzYwMDdAZ21haWwuY29tIiwiaWF0IjoxNzIzMjA4Njc2LCJleHAiOjE3MjM4MTM0NzYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJhbGZvbnNvcG90dGVyLjM2MDA3QGdtYWlsLmNvbSJ9.w6F91h2Iaf9abCuzD4Z1x0VcGgsV-cBRUaA8GWhgM60','android','1234567890','google','101933697401532763712','127.0.0.1','Dart/3.3 (dart:io)','2024-08-09 13:04:36',NULL,NULL),(77,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzcxNzE2NSwiZXhwIjoxNzI0MzIxOTY1LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.0E-NTI03Jw1h_rJ1VhL0j5HUPtV1xb_bEfCPCHV1XbQ','android','1234567890','custom',NULL,'127.0.0.1','PostmanRuntime/7.40.0','2024-08-15 10:19:25',NULL,NULL),(78,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzcxNzQyMCwiZXhwIjoxNzI0MzIyMjIwLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.AtXebJE-BCoawyUVw49Rt4tkW3WuYizFq78cwAnCFlE','android','dmSGLcqoQ-6M2o5-zJDHoe:APA91bFMGDwqned9nKoHUXFb_kKmxcKT7jqisax7EJ_8mIMNyRPqbM2hb5FAboUOF4PUV_nHzeE0UQTSwkQTo9JU3IQOnQUk25dua3u37tHh8CvKMVex9E9H1Tv8EZTkqsWaio3IHcrE','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-15 10:23:40',NULL,NULL),(79,26,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImVsc2lld2VzdC43NDM5OEBnbWFpbC5jb20iLCJpYXQiOjE3MjM3MjE1MDEsImV4cCI6MTcyNDMyNjMwMSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImVsc2lld2VzdC43NDM5OEBnbWFpbC5jb20ifQ.Agx0pVqqw9Q9XTtAUSN-9HKH3ramZlQtqAg50bQZAXQ','android','1234567890','google','113516501844005588659','127.0.0.1','Dart/3.3 (dart:io)','2024-08-15 11:31:41',NULL,NULL),(80,27,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InJuamM2ZHFjcHBAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzIzNzMwMTM4LCJleHAiOjE3MjQzMzQ5MzgsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJybmpjNmRxY3BwQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.H-ZPMFl1EA2w9qlPnj47-yjwH5Sait32166vMluA0Eo','ios','fUO0SW789kCnuv1xUPljzU:APA91bECInkbwFKXL3KFvTrKevQVdMiXduIh0gUVkxbfCtKZUF2CDsl6WVrDQ9zi6IC78gFOMuCnMXJBkM_IHojMhmwkgnP4o-nKlX58ccc6f0Gq8CBIvpb2j6aAN5r1tnnGtqy3rcEs','apple','000225.f6bd5b1caa6e461bbf069e1635fb282b.1355','127.0.0.1','Dart/3.3 (dart:io)','2024-08-15 13:55:38',NULL,NULL),(81,28,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Inhid3l5anJncGJAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzIzNzM0NDI1LCJleHAiOjE3MjQzMzkyMjUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ4Ynd5eWpyZ3BiQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.DccIjQO_2hlPbDYJ4QYfqX5c6AoRV8uosBiiAUBDShE','ios','f_wie-4sZEm8rcgpQPeVRZ:APA91bGRi2KtLQ2SR9r4jeC3-zuZNiBGY2Qme77MY9Q4_ixw2wJ4KDQ4IBHxhYsYlxhBfBkT84MSdd6EyoMOpQWHqA7MSgF6X4kNcwfAMGu1A8keu55B7BF3PgeSTjcQ03bZN-23VXcN','apple','001060.2b726249adcb4e37bda10ee1e9c947bf.1507','127.0.0.1','Dart/3.3 (dart:io)','2024-08-15 15:07:05',NULL,NULL),(82,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyMzc0MzEwNywiZXhwIjoxNzI0MzQ3OTA3LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.4PF40uMvGSqFaiPulVo5irxJEe1E1JnJHvdYRJxYU8E','ios','fUbQrCovNkvMjAPVNBgYV-:APA91bEyk-eYD3FcppbwdV9dLjQc2AUhNYLaijRLIaFT9iOUVZVyMI5Hnx76tW1pkj8OH_9xs7TVou2tufAky2zq5t2zLAvMNE5u6FtW1LmXdOwnPejtTwekeL7W5zmd0F3mZ6BGiVat','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-15 17:31:47',NULL,NULL),(83,29,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNvdXJ0bmV5cmFlYnVycG9AZ21haWwuY29tIiwiaWF0IjoxNzIzNzc2Nzk5LCJleHAiOjE3MjQzODE1OTksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJjb3VydG5leXJhZWJ1cnBvQGdtYWlsLmNvbSJ9.cgeqa_5Z2m_VMV8CxpOWjWgH8n0vgNmc6N4RsrNrTck','ios','fitMJApsOU9Oi0Xhqg0gQ7:APA91bH0X0u4P8beWdIdGE65Ic-aXjFc8OiS8Yx1VVBXr22pz8uixobEbL-4hWT9fMa-zyX32HyKYBVsfUaywTbgSyj0YKz44anPuYzUEMLD3_A1RxBtMRucLMZl-kOpcqE26BDv7D4D','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-16 02:53:19',NULL,NULL),(84,29,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNvdXJ0bmV5cmFlYnVycG9AZ21haWwuY29tIiwiaWF0IjoxNzIzNzc2ODM5LCJleHAiOjE3MjQzODE2MzksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJjb3VydG5leXJhZWJ1cnBvQGdtYWlsLmNvbSJ9.kyanZF1g14lQZ-24Y95IigLJhI5woTcX9MV6giJifUU','ios','fitMJApsOU9Oi0Xhqg0gQ7:APA91bH0X0u4P8beWdIdGE65Ic-aXjFc8OiS8Yx1VVBXr22pz8uixobEbL-4hWT9fMa-zyX32HyKYBVsfUaywTbgSyj0YKz44anPuYzUEMLD3_A1RxBtMRucLMZl-kOpcqE26BDv7D4D','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-16 02:53:59',NULL,NULL),(85,29,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNvdXJ0bmV5cmFlYnVycG9AZ21haWwuY29tIiwiaWF0IjoxNzIzNzc2ODY5LCJleHAiOjE3MjQzODE2NjksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJjb3VydG5leXJhZWJ1cnBvQGdtYWlsLmNvbSJ9.mEqwAqGNLJRCZZ9Y2bYW3ddS-l_HOwm-AewSxJYKZRU','ios','fitMJApsOU9Oi0Xhqg0gQ7:APA91bH0X0u4P8beWdIdGE65Ic-aXjFc8OiS8Yx1VVBXr22pz8uixobEbL-4hWT9fMa-zyX32HyKYBVsfUaywTbgSyj0YKz44anPuYzUEMLD3_A1RxBtMRucLMZl-kOpcqE26BDv7D4D','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-16 02:54:30',NULL,NULL),(86,30,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imxhcml0YWNoaWx0b24uMDY5NzJAZ21haWwuY29tIiwiaWF0IjoxNzIzNzk0NzI2LCJleHAiOjE3MjQzOTk1MjYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJsYXJpdGFjaGlsdG9uLjA2OTcyQGdtYWlsLmNvbSJ9.H39uVWzItGD-uOAqu4P5c2qHYGcSkOF_olclpIn2Uxg','android','1234567890','google','107540003595223014666','127.0.0.1','Dart/3.3 (dart:io)','2024-08-16 07:52:07',NULL,NULL),(87,31,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImZsb3JmdXNjby4wMTYyNUBnbWFpbC5jb20iLCJpYXQiOjE3MjM4MTIwMDIsImV4cCI6MTcyNDQxNjgwMiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImZsb3JmdXNjby4wMTYyNUBnbWFpbC5jb20ifQ.K8cgRm1PHEtZFdHB3qCNNAq8lIWa0_wk7IBQjB15hSU','android','1234567890','google','101352173793744163359','127.0.0.1','Dart/3.3 (dart:io)','2024-08-16 12:40:03',NULL,NULL),(88,22,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1lbGlzc2Euam9obnNvbjExODVAZ21haWwuY29tIiwiaWF0IjoxNzIzODMxMzQ2LCJleHAiOjE3MjQ0MzYxNDYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJtZWxpc3NhLmpvaG5zb24xMTg1QGdtYWlsLmNvbSJ9.obljHumNvSP0ZBOBZuB0eOPoS8ogtXFn3RSF-tiMQqA','ios','cJIeKMRLCkg9utOyqXD1Sg:APA91bF7XpWuR5lxNQMg1PYhJGXRiU1TIn4-NUMcFTj-fFYUwdjrCpZO2R1LdXv5XeyzO2shY9qGJZx3nQm2rMGXqsRLbQcnpWRygza--1Hvq_PZXMCneIjBdXzJ7EWDdyKMdbHZiJRi','google','107330819474683324005','127.0.0.1','Dart/3.3 (dart:io)','2024-08-16 18:02:26',NULL,NULL),(89,32,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFzaGFudHliODc0QGdtYWlsLmNvbSIsImlhdCI6MTcyNDAyNDIzMSwiZXhwIjoxNzI0NjI5MDMxLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiYXNoYW50eWI4NzRAZ21haWwuY29tIn0.jY6ZRzFGMjrlPO5yffCclMqsgWznoFtRE-iWCfh-zxM','android','fHWhZ9wFRSKHVw8T2Hbin4:APA91bFyNfwwtjPrl45RkBfcXgPz7kk5AOvaFm8vSGWEnot2w1TAd2_zqwkEyj5tc15kj9EME6bhwWaKjSBIL56Ly2_dYiHwr56ABfTkRZ3MXakJOLQItUf9momNHUSNiFf1c9TliO3e','google','117673741780349567321','127.0.0.1','Dart/3.3 (dart:io)','2024-08-18 23:37:12',NULL,NULL),(90,33,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNsaW50QHlvcG1haWwuY29tIiwiaWF0IjoxNzI0MDYwMzQ5LCJleHAiOjE3MjQ2NjUxNDksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJjbGludEB5b3BtYWlsLmNvbSJ9.SQyJ8vcEU-jFdQag-oHgHHk6eMA9yS7QqBEsRv7zOh4','ios','dr8bZ53tPUq3jM9sZOZ32r:APA91bGat4a4EyPni4WKETs_YiEqHFfmwKawPIYDZEGxIGmSFyWLEj-hVlr_8MD28iCIPjbSfPIEFmF-vN0iX2OaZRZiLymC18TdC8ZtDLL-WsI6m3SMEgzVCTbrp7Qm1sqyF_JR5N2v','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-19 09:39:10',NULL,NULL),(91,33,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNsaW50QHlvcG1haWwuY29tIiwiaWF0IjoxNzI0MDYwMzkzLCJleHAiOjE3MjQ2NjUxOTMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJjbGludEB5b3BtYWlsLmNvbSJ9.W17mCQIWHgxbVzXNbWCtDjcx-47j6zJJMBIJ42FBBSQ','ios','dr8bZ53tPUq3jM9sZOZ32r:APA91bGat4a4EyPni4WKETs_YiEqHFfmwKawPIYDZEGxIGmSFyWLEj-hVlr_8MD28iCIPjbSfPIEFmF-vN0iX2OaZRZiLymC18TdC8ZtDLL-WsI6m3SMEgzVCTbrp7Qm1sqyF_JR5N2v','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-19 09:39:54',NULL,NULL),(92,33,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNsaW50QHlvcG1haWwuY29tIiwiaWF0IjoxNzI0MDYwNDQwLCJleHAiOjE3MjQ2NjUyNDAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJjbGludEB5b3BtYWlsLmNvbSJ9.O4hqgmtAXwoJwQGMEwWraaDjS76iWzQHASh7bA1t-3I','android','cJnxUd8sQDOoGagNyxxWqt:APA91bGIoVZDF75eiax7p6P-anK5Za2nEess0NG9hnnzzW1DYnf8J3lWnqzr05GWRfSjHF-J0D-r6sHTPd7yKupxiPultN4_PQm42eGCupn6UFkTtRQ1id9Ta0S0AaurnAa4j3BQOMKo','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-19 09:40:41',NULL,NULL),(93,34,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InBoaWxuZXdtYW4uMzc1NjVAZ21haWwuY29tIiwiaWF0IjoxNzI0MDY4MzA5LCJleHAiOjE3MjQ2NzMxMDksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJwaGlsbmV3bWFuLjM3NTY1QGdtYWlsLmNvbSJ9.5a_kLi-DkC58mtcE5xhZhSX19rQZQy0OwgkDkXdnWxU','android','1234567890','google','114526306251395251059','127.0.0.1','Dart/3.3 (dart:io)','2024-08-19 11:51:50',NULL,NULL),(94,33,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNsaW50QHlvcG1haWwuY29tIiwiaWF0IjoxNzI0MDc1MjUxLCJleHAiOjE3MjQ2ODAwNTEsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJjbGludEB5b3BtYWlsLmNvbSJ9.ZjBuQwReZlK0YY5EpQyuX_9PcQgqKnLQkGnnvhT6hRw','ios','dboZ4s-PckdorN0bshkrE8:APA91bHU_ydVsQQixUJptlnC_xFMOznoJeHZGmHgzyPpvXhlBC4pMaMjuzFDJFWj2bneUPJgZHGtzOWfKgN_680X3HT2Ty9LZYV4hMak03shtK9Sg3t6-UHtBDeOvCSVkrF1HAZ-_wxR','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-19 13:47:32',NULL,NULL),(95,35,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbG1hanNpbHZhMjAyM0BnbWFpbC5jb20iLCJpYXQiOjE3MjQxNzUyNDcsImV4cCI6MTcyNDc4MDA0NywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InNhbG1hanNpbHZhMjAyM0BnbWFpbC5jb20ifQ.CUAaeCRwgdCPCEKwGczvu3T-7i1PwZS3-x5EfZfWb_A','android','eottz6_1QImkvF-2xhgPg8:APA91bH4bu2C4nAM29UCIxp1vC65AyIJJoAWMDOID-y2zVrd8E1MkCIDzvvpiiFdssbmaXlK5JIe4Gykc7kvNgAIDMYJu9SfTOTaNNUlKxhq4UTcmGxPDd_Fj_VhrfUO3kSEPOSSxhHV','google','101088524497410219785','127.0.0.1','Dart/3.3 (dart:io)','2024-08-20 17:34:07',NULL,NULL),(96,36,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkRvbGx5djIzODFAZ21haWwuY29tIiwiaWF0IjoxNzI0MTc4Njg2LCJleHAiOjE3MjQ3ODM0ODYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJEb2xseXYyMzgxQGdtYWlsLmNvbSJ9.x_pMbFWkvH6Hb8CG2-u7HwbSI5usW7cpRbJIajo42dM','ios','du9mtfSYDEUStBa6imXSh0:APA91bFMHWKSqqMMFabLWGo1t-SV1psUuyF3AOi2uGXqJSxu56OcObZbJed0fptSTvwXJ42evARdv3_K6Ef0_Xcfe1b-bjEbLTlSDK5cAF2QeSCHYbF-w_60c8OI5Y9sckmC9e3khxLf','apple','000705.ad86ec06538b4fd4b180d829e1713677.1831','127.0.0.1','Dart/3.3 (dart:io)','2024-08-20 18:31:27',NULL,NULL),(97,37,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Ims4a2c4NmJzbndAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI0MjA2ODk2LCJleHAiOjE3MjQ4MTE2OTYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJrOGtnODZic253QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.ZVsYucyh9YfOUw5il8GwepkVxI0yTigyuyxBY2II-EU','ios','fQdvrFEAAkCtskzHFVvx6j:APA91bH_VgXk9Q4ilEHfI4zcqwdHfHUz3FEs7v50f8PC8fKAM_6yi-Z2aLCvdYMhO5Ugvx20755brBPVSICYQDHv_LEx-uxqPKs-3zBEPYmlD4zixp0X95dHJjENP6f8wu_JHy8vSYk_','apple','001665.65967978fb634b65a4169db07b1be4f6.0221','127.0.0.1','Dart/3.3 (dart:io)','2024-08-21 02:21:37',NULL,NULL),(98,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNDIyODM0NSwiZXhwIjoxNzI0ODMzMTQ1LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.f-IuOmndFYnni-dqQ91VVAkt51x6Jvn1Pto2o8_aI8g','android','1234567890','custom',NULL,'127.0.0.1','PostmanRuntime/7.41.1','2024-08-21 08:19:05',NULL,NULL),(99,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNDIyODQ1MiwiZXhwIjoxNzI0ODMzMjUyLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.SzkzH4oBfFR5tmiveS3m2WfV-rrMO8M8Yn6qB85b_MI','android','dJ2sufJPT5i4UJHz9-8W_T:APA91bHFfMeZlKKzK0E_XV3lyqptUtdras86ff9esAQuA_g0x4tapTSOtKuKTZJZ45Br2awb8PVEhEiN24390NomfQejSNTD7L7BkncMqtNUSPuCeDsrcBd3VEg9K7BJ3xsVj8IlLP7S','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-21 08:20:52',NULL,NULL),(100,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzI0MjI4NTc3LCJleHAiOjE3MjQ4MzMzNzcsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.ftfcfj8Zps7K8TQhpt71R-e_IBPZ4hZBzQlo2UxaOPk','android','1234567890','custom',NULL,'127.0.0.1','PostmanRuntime/7.41.1','2024-08-21 08:22:58',NULL,NULL),(101,38,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20iLCJpYXQiOjE3MjQzNjEzNzMsImV4cCI6MTcyNDk2NjE3MywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20ifQ.C9Xa_2l18UNFiZrz25vZflo4I0b5Ze1lfSbCoMWDnlU','ios','cVIk2SXM_Uvsjy-NnDlti9:APA91bGliyYt8YjAyeu7OGjFUGDP9CGU2dNBJPWOI_aN5YScOs741a1Mz_YmgzHiQBNhPfHrmuLMHBD3AuDp62QkT2tn44diMSJKeBJWDQePHUPspkTP4h3kd_PhbTTANNsVJ6pwTWmp','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-22 21:16:13',NULL,NULL),(102,38,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20iLCJpYXQiOjE3MjQzNjEzOTcsImV4cCI6MTcyNDk2NjE5NywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20ifQ.Quv-ynDx3u9GHJSyuMeq-Fpc3delYoDikr2l16M0O_U','ios','cVIk2SXM_Uvsjy-NnDlti9:APA91bGliyYt8YjAyeu7OGjFUGDP9CGU2dNBJPWOI_aN5YScOs741a1Mz_YmgzHiQBNhPfHrmuLMHBD3AuDp62QkT2tn44diMSJKeBJWDQePHUPspkTP4h3kd_PhbTTANNsVJ6pwTWmp','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-22 21:16:38',NULL,NULL),(103,38,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20iLCJpYXQiOjE3MjQzNjE0MzUsImV4cCI6MTcyNDk2NjIzNSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20ifQ.48fqD4iw0u-FnQ5opBaDCj1Ota3xhRdYWb_nst8BW4Q','ios','cVIk2SXM_Uvsjy-NnDlti9:APA91bGliyYt8YjAyeu7OGjFUGDP9CGU2dNBJPWOI_aN5YScOs741a1Mz_YmgzHiQBNhPfHrmuLMHBD3AuDp62QkT2tn44diMSJKeBJWDQePHUPspkTP4h3kd_PhbTTANNsVJ6pwTWmp','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-22 21:17:15',NULL,NULL),(104,39,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IjRueTR5ZzZxNGpAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI0ODU2ODQ4LCJleHAiOjE3MjU0NjE2NDgsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiI0bnk0eWc2cTRqQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.9WkvbnfwwD4tDnkN_KIulhNeMGcPJKaOi_x8dxnp8Hc','ios','diOss50KyEQrt-f7la-X3V:APA91bEHRgAq8cjC_rDfZBc4l4pITmdP9MuT-YWUcfnRUVlRXCVIiMoSt6GNDOp9WTj_HxGRiEbq74ZN3eAsAm3BH3fsnOrdR7rMqIvgvWqkYDjR3U5sewWwqHGee9u8b5Ur5BcMp8Qd','apple','000389.53f3270f3364462b9c125768c44614da.1454','127.0.0.1','Dart/3.3 (dart:io)','2024-08-28 14:54:09',NULL,NULL),(105,22,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1lbGlzc2Euam9obnNvbjExODVAZ21haWwuY29tIiwiaWF0IjoxNzI0OTI3Mjg4LCJleHAiOjE3MjU1MzIwODgsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJtZWxpc3NhLmpvaG5zb24xMTg1QGdtYWlsLmNvbSJ9.eAdgoNZWIHFgD39Vd2nSJdg25ZL51c-WRWtqPsTh8Ho','ios','cJIeKMRLCkg9utOyqXD1Sg:APA91bF7XpWuR5lxNQMg1PYhJGXRiU1TIn4-NUMcFTj-fFYUwdjrCpZO2R1LdXv5XeyzO2shY9qGJZx3nQm2rMGXqsRLbQcnpWRygza--1Hvq_PZXMCneIjBdXzJ7EWDdyKMdbHZiJRi','google','107330819474683324005','127.0.0.1','Dart/3.3 (dart:io)','2024-08-29 10:28:09',NULL,NULL),(106,40,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im9zYW50YWVoZWN0b3JAZ21haWwuY29tIiwiaWF0IjoxNzI0OTY4NDk4LCJleHAiOjE3MjU1NzMyOTgsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJvc2FudGFlaGVjdG9yQGdtYWlsLmNvbSJ9.lQxLp3pchQ88wvXpUDwIZwaeQSkyzhSioBf0SWkJGsE','ios','fYzliYDoYEEVgU2J_CSXoB:APA91bGBJtuzTbkOfG27omKKwXZ1ljvX1Rxm9cphIaLNmEb1mQXWCwoFaVhkNepDLsWJbaPXUx1f0_r3zAMLaa65o9rAX434ktClMVcjqkOe_BqFAfP6LtTekW4dm_XR3g9SWZUqjCxT','google','108650844102506040888','127.0.0.1','Dart/3.3 (dart:io)','2024-08-29 21:54:59',NULL,NULL),(107,41,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRhbWVraWFmYWlsczQ5OEBnbWFpbC5jb20iLCJpYXQiOjE3MjUwMTgzMjAsImV4cCI6MTcyNTYyMzEyMCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InRhbWVraWFmYWlsczQ5OEBnbWFpbC5jb20ifQ.xN4jbfyIwQV_WlVcMDoBwOrnLOFsCpV7rhqpUQGj3zs','ios','fDZFRB2WFkGGl5Uf26_VQ7:APA91bGwFa7uWM7HL7FyBVpCwyZE-XJG9rjcqJlH9MvbxM1DWIIxo4y-m_OhaUUK9DkmwWv1cidZbV4zPEVuJEpngwyJJPOvhFBJShtm2Hg2DeX5iENSQWYfe93UudgIek0LhkIlTuaU','apple','000236.34cd7ae5f8a84e8388016c9e0b3db54a.1145','127.0.0.1','Dart/3.3 (dart:io)','2024-08-30 11:45:21',NULL,NULL),(108,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNTAyMjg0OSwiZXhwIjoxNzI1NjI3NjQ5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.VIZ6WuQFKAVexAvf3iplU1pJlXhlXO_ttaLz-fHLgzA','android','dJ2sufJPT5i4UJHz9-8W_T:APA91bHFfMeZlKKzK0E_XV3lyqptUtdras86ff9esAQuA_g0x4tapTSOtKuKTZJZ45Br2awb8PVEhEiN24390NomfQejSNTD7L7BkncMqtNUSPuCeDsrcBd3VEg9K7BJ3xsVj8IlLP7S','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-08-30 13:00:50',NULL,NULL),(109,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzI1MDIyOTQ1LCJleHAiOjE3MjU2Mjc3NDUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.vDa_uIWB0nqvshDP4baHp2g4uGT_Nu8mo0hb8mBn5yA','android','1234567890','custom',NULL,'127.0.0.1','PostmanRuntime/7.41.2','2024-08-30 13:02:26',NULL,NULL),(111,42,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImtyaXN0aW5yaXZlcmE2MTNAZ21haWwuY29tIiwiaWF0IjoxNzI1MjQzNjY3LCJleHAiOjE3MjU4NDg0NjcsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJrcmlzdGlucml2ZXJhNjEzQGdtYWlsLmNvbSJ9.PR9nG_8WtPxZZklT3vPmLM1eJg10pjuNP_K6FGCrBas','ios','ckW07pWerkNAqQK2g2zeHT:APA91bEiEbEbN-KoD5Iy20RBCJQEAIToI_xiw6WqFa2HFw7L_0FpUiSmDCskRUhmICVVPM0qrE7wt3Zw5pFQZCrY7Sm6e-eNAD76fVoqOaZ3KlX2nVRI8TZz981bafvz--_0kDufvjlM','google','117319336785731881541','127.0.0.1','Dart/3.3 (dart:io)','2024-09-02 02:21:08',NULL,NULL),(112,43,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFyZGl0aHJhaW5leS41NDMzOUBnbWFpbC5jb20iLCJpYXQiOjE3MjUyNjExOTcsImV4cCI6MTcyNTg2NTk5NywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFyZGl0aHJhaW5leS41NDMzOUBnbWFpbC5jb20ifQ.RkHKnnmEHlhNBizFO8LnJrHJP3EnK9LIrmrdu1sC-kU','android','1234567890','google','101241956281012901059','127.0.0.1','Dart/3.3 (dart:io)','2024-09-02 07:13:17',NULL,NULL),(115,44,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNqY2pxZGIyeGNAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI1MjYzMDkzLCJleHAiOjE3MjU4Njc4OTMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJzamNqcWRiMnhjQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.2ipvEzcvWUaKYcILLTQvOoh-at6znwEeIV5oSzrfvR4','ios','cUOoz5JkvUNshi9dIIqXJt:APA91bEzy6rHrWskJb_u-oKFWCHzSkSKVT_o5W8L284PLpgxgy49TTPnJPZFHdRbZz267flV1tj26s0pF5rGMkk7HLgdLgo69xXHzSX47FrdhbpNki5B5sHg26NUeOLWxNvTktdJPubT','apple','000048.1c5ad5da48484f22b6f84ab6aefe1a5f.0739','127.0.0.1','Dart/3.3 (dart:io)','2024-09-02 07:44:53',NULL,NULL),(116,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNTI2NTYwMywiZXhwIjoxNzI1ODcwNDAzLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.X0-rLRBa5y53uK3KKTaUXu9o7O5B_W2EXc0ztA6YtGc','ios','dcWNMFCh7k_OnBCKpm0riB:APA91bFmqGf1lOl2vwUn9UKQvU0eih1IUNmlgxCxMx1Qbljb1gWtaGhL1s76RttreWOlRzWrYnyuEQJIb2K84rYJjmML9eH5ohqcXk7Eou1hxK9Hil3ReNKGhOPqEPaZ1cLs-nXE3Hso','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-02 08:26:43',NULL,NULL),(117,45,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InJweWM1Zm56MnhAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI1MzE5OTcyLCJleHAiOjE3MjU5MjQ3NzIsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJycHljNWZuejJ4QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.HtH2xRzPssWW_2vBmBSs_810oy8Pyg42BzKFGulhFWM','ios','eP0cu-0jG0uTv4unKovcnT:APA91bHfj6IuyjGPEm8y5oMLmvHnhgJQdgHkqD1A2brFRvYDDSP0mS9nAb--HbOM-RRMiDHacu4YcEDAT-a3wRM7S-0F3Ux3fGuGu-zr4C06L4vqDu_7XMM-xRYQ1zppDjAplq_-1cJ4','apple','000511.ddf7d0adac574c00a03011962f847d37.2332','127.0.0.1','Dart/3.3 (dart:io)','2024-09-02 23:32:53',NULL,NULL),(119,47,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InB1dHJpc2V2ZW45OUBnbWFpbC5jb20iLCJpYXQiOjE3MjUzNTY0MTYsImV4cCI6MTcyNTk2MTIxNiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InB1dHJpc2V2ZW45OUBnbWFpbC5jb20ifQ.mrH75TkO4CH2Bu90XS9qZZm4zKDU-e0r3DfWDokzcNE','ios','d9DQGNakuUWQo8IaVb6wAR:APA91bEcSHlSE8EaY-6ikXH-FEWvkAe3Wix3-aw1bwAocsdDs4NDz_Fnyo710E4XDBVn7HKk6xL4PbAqNJjiPjxJu6n5M6_YM-aQK11E5WYymsm6HCqPVpzz0NcG1XfJBk87Rdanqm0D','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 09:40:16',NULL,NULL),(120,47,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InB1dHJpc2V2ZW45OUBnbWFpbC5jb20iLCJpYXQiOjE3MjUzNTY0MzUsImV4cCI6MTcyNTk2MTIzNSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InB1dHJpc2V2ZW45OUBnbWFpbC5jb20ifQ.sWO7tu9oE3Uhc8Er6ruCRq1tR1wixKys2zqqXLoHoQo','ios','d9DQGNakuUWQo8IaVb6wAR:APA91bEcSHlSE8EaY-6ikXH-FEWvkAe3Wix3-aw1bwAocsdDs4NDz_Fnyo710E4XDBVn7HKk6xL4PbAqNJjiPjxJu6n5M6_YM-aQK11E5WYymsm6HCqPVpzz0NcG1XfJBk87Rdanqm0D','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 09:40:36',NULL,NULL),(121,47,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InB1dHJpc2V2ZW45OUBnbWFpbC5jb20iLCJpYXQiOjE3MjUzNTY1MjMsImV4cCI6MTcyNTk2MTMyMywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InB1dHJpc2V2ZW45OUBnbWFpbC5jb20ifQ.8f3r0lGAafeOclqIMTb5AYFSfctqInRcRYoh6nyMSXE','ios','d9DQGNakuUWQo8IaVb6wAR:APA91bEcSHlSE8EaY-6ikXH-FEWvkAe3Wix3-aw1bwAocsdDs4NDz_Fnyo710E4XDBVn7HKk6xL4PbAqNJjiPjxJu6n5M6_YM-aQK11E5WYymsm6HCqPVpzz0NcG1XfJBk87Rdanqm0D','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 09:42:04',NULL,NULL),(122,48,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1hcmllcGVkcm8xNEBnbWFpbC5jb20iLCJpYXQiOjE3MjUzNjIwOTksImV4cCI6MTcyNTk2Njg5OSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Im1hcmllcGVkcm8xNEBnbWFpbC5jb20ifQ.jD8w5wA-_zOWW_tNrc3Cj5Tuq-2qzLZfRRdnSB0lkjY','android','f5kCPdiKTKup9I_-UbNbjO:APA91bHndKtTYg9DYq2VQynWYLkB8sfbavECwBaB8oD0t_m_xnV5zzqt7iwHxmYPv_iI48qlena3oQKuY-oASo2bjykMPIymqThO9TwrO32g1s5ZhH830zB3ye80fUrYMMhU6InCEHb4','google','104552511095039013330','127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 11:14:59',NULL,NULL),(123,49,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlcmltYW5uaW5nLjI4MDg4QGdtYWlsLmNvbSIsImlhdCI6MTcyNTM2Mjg1MCwiZXhwIjoxNzI1OTY3NjUwLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoidGVyaW1hbm5pbmcuMjgwODhAZ21haWwuY29tIn0.rSSKxzLebtCbVBURknqKUaJWSqLP6PJNjWaEe_cMJpc','android','1234567890','google','103266518572312353226','127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 11:27:31',NULL,NULL),(124,50,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImphcnJvZC5seW5uQGdtYWlsLmNvbSIsImlhdCI6MTcyNTM4NzMxNCwiZXhwIjoxNzI1OTkyMTE0LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiamFycm9kLmx5bm5AZ21haWwuY29tIn0.ULBjmHZYZuEg5-z0Pjb4Y79b6jrIy-sKwJts5wOwdmQ','ios','eyWvggjMekddlfSMN8Z0fm:APA91bGmwpxvtnVD9RexANuoYt2HVjGkC3uFpK7Kc0iKqBOiWqKlRzJYWmnxmZvd4ncLieiAPgxFUj4_c4vFBPvTuBwnMp_jp2GrNpI5mWdoEk2cOAS_Bxo_nrib8CUe4U6f4E0AF6co','google','102325857543228393699','127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 18:15:15',NULL,NULL),(125,51,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNreWx5bm5raGVuZGVyc29uQGdtYWlsLmNvbSIsImlhdCI6MTcyNTM4OTc4NSwiZXhwIjoxNzI1OTk0NTg1LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2t5bHlubmtoZW5kZXJzb25AZ21haWwuY29tIn0._PHK4nY73jvkyX9gaZUoltNCenTIH-4htCxjsnNcc00','ios','fWgg4AN3gUyei8RTRe7wvn:APA91bErgOmtRiGENrT32MWK7IhDWbaAEYoOqtnGqCD-eoWiEmd8ko8F9GgknHRfCLHnv5sbJo7-5-pEty-VWOcEI5HvJO_qzXCRfn8lyHawE2cPexw2PbbVi49M25ZsjRc35DFTky9A','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 18:56:26',NULL,NULL),(126,51,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNreWx5bm5raGVuZGVyc29uQGdtYWlsLmNvbSIsImlhdCI6MTcyNTM4OTgwNiwiZXhwIjoxNzI1OTk0NjA2LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2t5bHlubmtoZW5kZXJzb25AZ21haWwuY29tIn0.U9Fc33MgPG-bQvYW1M0Fw3xZYPZxKq5eud4V_vSziR4','ios','fWgg4AN3gUyei8RTRe7wvn:APA91bErgOmtRiGENrT32MWK7IhDWbaAEYoOqtnGqCD-eoWiEmd8ko8F9GgknHRfCLHnv5sbJo7-5-pEty-VWOcEI5HvJO_qzXCRfn8lyHawE2cPexw2PbbVi49M25ZsjRc35DFTky9A','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 18:56:46',NULL,NULL),(127,51,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNreWx5bm5raGVuZGVyc29uQGdtYWlsLmNvbSIsImlhdCI6MTcyNTM4OTgzNSwiZXhwIjoxNzI1OTk0NjM1LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2t5bHlubmtoZW5kZXJzb25AZ21haWwuY29tIn0.nuDDYdbN8_MrmzrzHN-Ok4dLoBzGKtfQhL7FILFevpE','ios','fWgg4AN3gUyei8RTRe7wvn:APA91bErgOmtRiGENrT32MWK7IhDWbaAEYoOqtnGqCD-eoWiEmd8ko8F9GgknHRfCLHnv5sbJo7-5-pEty-VWOcEI5HvJO_qzXCRfn8lyHawE2cPexw2PbbVi49M25ZsjRc35DFTky9A','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-03 18:57:16',NULL,NULL),(128,52,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImthdHRpZXJleW5vbGRzNTBAZ21haWwuY29tIiwiaWF0IjoxNzI1NTA0MzE2LCJleHAiOjE3MjYxMDkxMTYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJrYXR0aWVyZXlub2xkczUwQGdtYWlsLmNvbSJ9.gVkGO8CE-Pzrg9HVAFuOsNsIlbUzyO7slf4WdX5J1mo','ios','fFpLVnZddEFkqTHOYpWKBt:APA91bEHbhgbiapfGc7nbIzMTSOAybHz1F-N9Lc3L7lOeMhRudLSzZktnG3koKDcX6SWMwZeAtSX1B8W1O7O6xPETY3CqqDfmP-66865wiSDkMH1tEB8HGD7Pnit0CJXmcEzO1jrBfCZ','google','103870151900484560591','127.0.0.1','Dart/3.3 (dart:io)','2024-09-05 02:45:16',NULL,NULL),(130,22,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1lbGlzc2Euam9obnNvbjExODVAZ21haWwuY29tIiwiaWF0IjoxNzI1NTcwMDk1LCJleHAiOjE3MjYxNzQ4OTUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJtZWxpc3NhLmpvaG5zb24xMTg1QGdtYWlsLmNvbSJ9.ToYxrvy9IYFQ4tB7k_dg4qafY08FmJExBTxR0G_h6HA','ios','cJIeKMRLCkg9utOyqXD1Sg:APA91bF7XpWuR5lxNQMg1PYhJGXRiU1TIn4-NUMcFTj-fFYUwdjrCpZO2R1LdXv5XeyzO2shY9qGJZx3nQm2rMGXqsRLbQcnpWRygza--1Hvq_PZXMCneIjBdXzJ7EWDdyKMdbHZiJRi','google','107330819474683324005','127.0.0.1','Dart/3.3 (dart:io)','2024-09-05 21:01:36',NULL,NULL),(131,53,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhcmxla2FtMDAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNTU5NDYwOCwiZXhwIjoxNzI2MTk5NDA4LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FybGVrYW0wMDBAZ21haWwuY29tIn0.oX550wTyqdone2OOVmnOHjE7I631qtkQrc1aQq6Bnt0','ios','e5pEnW3gOUhXqnEQvebP5_:APA91bE3OFrt7cXHhdXiwZ7RBwFYKkxYqfq4cA64j4qVuqfM_iMwBxjI3cvdkEZocmz78fn3y8Ul6cUZWF62kOgFrcUlQxyeOMt2KKsGueF4JIsyfdspcY1iggOIURxZFZNTt7BAZKG9','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-06 03:50:09',NULL,NULL),(132,53,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhcmxla2FtMDAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNTU5NDY1MCwiZXhwIjoxNzI2MTk5NDUwLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FybGVrYW0wMDBAZ21haWwuY29tIn0.3E1N3nP3KjShnf9oHH5jneStnRtNEGfg-63fMRD15K8','ios','e5pEnW3gOUhXqnEQvebP5_:APA91bE3OFrt7cXHhdXiwZ7RBwFYKkxYqfq4cA64j4qVuqfM_iMwBxjI3cvdkEZocmz78fn3y8Ul6cUZWF62kOgFrcUlQxyeOMt2KKsGueF4JIsyfdspcY1iggOIURxZFZNTt7BAZKG9','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-06 03:50:50',NULL,NULL),(133,53,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhcmxla2FtMDAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNTU5NDY3MywiZXhwIjoxNzI2MTk5NDczLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FybGVrYW0wMDBAZ21haWwuY29tIn0.fzWzcsgu1tLucwfMrhdHja3-v1kQ4TIT7e06mtGLuB8','ios','e5pEnW3gOUhXqnEQvebP5_:APA91bE3OFrt7cXHhdXiwZ7RBwFYKkxYqfq4cA64j4qVuqfM_iMwBxjI3cvdkEZocmz78fn3y8Ul6cUZWF62kOgFrcUlQxyeOMt2KKsGueF4JIsyfdspcY1iggOIURxZFZNTt7BAZKG9','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-06 03:51:14',NULL,NULL),(134,53,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhcmxla2FtMDAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNTU5NDY5MywiZXhwIjoxNzI2MTk5NDkzLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FybGVrYW0wMDBAZ21haWwuY29tIn0.Mo9dCRyZ5ls1aGWMYvP1g2gf9PoVZZHOvGnUXDvYF_c','ios','e5pEnW3gOUhXqnEQvebP5_:APA91bE3OFrt7cXHhdXiwZ7RBwFYKkxYqfq4cA64j4qVuqfM_iMwBxjI3cvdkEZocmz78fn3y8Ul6cUZWF62kOgFrcUlQxyeOMt2KKsGueF4JIsyfdspcY1iggOIURxZFZNTt7BAZKG9','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-06 03:51:34',NULL,NULL),(135,37,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Ims4a2c4NmJzbndAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI1NjY5MjYwLCJleHAiOjE3MjYyNzQwNjAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJrOGtnODZic253QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.gg9SCVg14YqxL3SzinnMKngULzHuoiSIZLQC6hBa0xo','ios','fQdvrFEAAkCtskzHFVvx6j:APA91bH_VgXk9Q4ilEHfI4zcqwdHfHUz3FEs7v50f8PC8fKAM_6yi-Z2aLCvdYMhO5Ugvx20755brBPVSICYQDHv_LEx-uxqPKs-3zBEPYmlD4zixp0X95dHJjENP6f8wu_JHy8vSYk_','apple','001665.65967978fb634b65a4169db07b1be4f6.0221','127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 00:34:21',NULL,NULL),(136,54,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InN1cHBvcnRAdGh5d2lsbG9ubHkuc3RvcmUiLCJpYXQiOjE3MjU3MTA4NjIsImV4cCI6MTcyNjMxNTY2MiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InN1cHBvcnRAdGh5d2lsbG9ubHkuc3RvcmUifQ.yZJnTieQKsozNZEdTY_zs9LgtZcFA6GVf61KT5vYps4','ios','cVzpo4oWuED0pWZ_0eqadx:APA91bG-aBnqu8d-se9pXf1LYezDKAv2Ke1NOGLeA8BCH6I13xvagvJNhXmqZ4bXgRImYY6nTdPZwNM0tW322y9cU1jLElovCrTdyhT2JkFec2ZFrtWoyCbbhwF5Cm6paWDlR4gT2_v5','google','115066118542600998889','127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 12:07:43',NULL,NULL),(137,55,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImpkZnJvbnRtYW5AeWFob28uY29tIiwiaWF0IjoxNzI1NzI3MTU4LCJleHAiOjE3MjYzMzE5NTgsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJqZGZyb250bWFuQHlhaG9vLmNvbSJ9.-Ndc9oVHCljCd4KYwM_tOG3l9912ab4Wyov5qtRFn_I','android','esbD1fdNQse91NClundE4Z:APA91bF4CDaRKQDKp92G8zBdIJ3bY3ew61piTTkLhMfYv_6urPNbV8bGbwUIfzqMVatyh34FuH1pkEpZTEpbTW7D6foLWJltr7rDZzbKVpDE59ytDj8he_IRADPJFsY4AUDkgMODfGYB','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 16:39:18',NULL,NULL),(138,55,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImpkZnJvbnRtYW5AeWFob28uY29tIiwiaWF0IjoxNzI1NzI3MTcwLCJleHAiOjE3MjYzMzE5NzAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJqZGZyb250bWFuQHlhaG9vLmNvbSJ9.xCrMnbzRkJaPWbWya1Q54VZmBWMc04vShxKcpCsHTFc','android','esbD1fdNQse91NClundE4Z:APA91bF4CDaRKQDKp92G8zBdIJ3bY3ew61piTTkLhMfYv_6urPNbV8bGbwUIfzqMVatyh34FuH1pkEpZTEpbTW7D6foLWJltr7rDZzbKVpDE59ytDj8he_IRADPJFsY4AUDkgMODfGYB','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 16:39:30',NULL,NULL),(139,55,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImpkZnJvbnRtYW5AeWFob28uY29tIiwiaWF0IjoxNzI1NzI3MjA2LCJleHAiOjE3MjYzMzIwMDYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJqZGZyb250bWFuQHlhaG9vLmNvbSJ9.LclZCIP3zo5ogQf66i30knw6XYkRsCbfl7Us2IMPj_c','android','esbD1fdNQse91NClundE4Z:APA91bF4CDaRKQDKp92G8zBdIJ3bY3ew61piTTkLhMfYv_6urPNbV8bGbwUIfzqMVatyh34FuH1pkEpZTEpbTW7D6foLWJltr7rDZzbKVpDE59ytDj8he_IRADPJFsY4AUDkgMODfGYB','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 16:40:06',NULL,NULL),(140,56,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNreWxhZGFuZWExMDE4QGdtYWlsLmNvbSIsImlhdCI6MTcyNTc0MzQ1NSwiZXhwIjoxNzI2MzQ4MjU1LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2t5bGFkYW5lYTEwMThAZ21haWwuY29tIn0.UA8b4YfKo7jCl6KpPet4C3aTG6Klb_TIRf2NieVni5c','ios','eXlZGE_a8UuAnAHtxJDGU2:APA91bHbEqHLLNWLRk7xQgZwZt0kyHzVJ8q9iMh_26L8AvosEyw-ruXXfR6Qd6LG8yTG3uata83lUcRGco4uBE1AzK9UHHESkpaecWQNb_NdsschOZw4tP76Tq9ezVSNj2deoMdXG_Dj','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 21:10:55',NULL,NULL),(141,56,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNreWxhZGFuZWExMDE4QGdtYWlsLmNvbSIsImlhdCI6MTcyNTc0MzUwOCwiZXhwIjoxNzI2MzQ4MzA4LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2t5bGFkYW5lYTEwMThAZ21haWwuY29tIn0.Zz-i4xgqjWBYRcU15Fim6K1NwxhF6FwFawIEaFTG824','ios','eXlZGE_a8UuAnAHtxJDGU2:APA91bHbEqHLLNWLRk7xQgZwZt0kyHzVJ8q9iMh_26L8AvosEyw-ruXXfR6Qd6LG8yTG3uata83lUcRGco4uBE1AzK9UHHESkpaecWQNb_NdsschOZw4tP76Tq9ezVSNj2deoMdXG_Dj','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 21:11:48',NULL,NULL),(142,56,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNreWxhZGFuZWExMDE4QGdtYWlsLmNvbSIsImlhdCI6MTcyNTc0MzU1MSwiZXhwIjoxNzI2MzQ4MzUxLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2t5bGFkYW5lYTEwMThAZ21haWwuY29tIn0.ofSB2-H7RwXajiN3tdg_A7iW10HZsBHfQ6bZGLgofEg','ios','eXlZGE_a8UuAnAHtxJDGU2:APA91bHbEqHLLNWLRk7xQgZwZt0kyHzVJ8q9iMh_26L8AvosEyw-ruXXfR6Qd6LG8yTG3uata83lUcRGco4uBE1AzK9UHHESkpaecWQNb_NdsschOZw4tP76Tq9ezVSNj2deoMdXG_Dj','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-07 21:12:32',NULL,NULL),(143,57,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImVtbWFhbm5nYXRsaW5AaWNsb3VkLmNvbSIsImlhdCI6MTcyNTgyNzE1OSwiZXhwIjoxNzI2NDMxOTU5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiZW1tYWFubmdhdGxpbkBpY2xvdWQuY29tIn0.3Nlh1IbppPisSS9Pa7L7o1keit5IopfZe4Vq6WClWIQ','ios','cFTzmKD-PkM6tj7FQv_YMk:APA91bG69aeDnKIs7j74Be0W5JTUFPHXFf8XlIhUfqTgNGrAgNWo6L3-eC1hL3tc3L-RUJq4SJgHpcwCoSsaixCM1ry_0xEtNk7tueCmIEM6byyjpHU6DWdJXYCeQM04eDCfYwDJnTjJ','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-08 20:26:00',NULL,NULL),(144,57,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImVtbWFhbm5nYXRsaW5AaWNsb3VkLmNvbSIsImlhdCI6MTcyNTgyNzE3NCwiZXhwIjoxNzI2NDMxOTc0LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiZW1tYWFubmdhdGxpbkBpY2xvdWQuY29tIn0.9AwsA09NEqdaVaXelulOHllM9q690IGhNdPLvRUXRrU','ios','cFTzmKD-PkM6tj7FQv_YMk:APA91bG69aeDnKIs7j74Be0W5JTUFPHXFf8XlIhUfqTgNGrAgNWo6L3-eC1hL3tc3L-RUJq4SJgHpcwCoSsaixCM1ry_0xEtNk7tueCmIEM6byyjpHU6DWdJXYCeQM04eDCfYwDJnTjJ','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-08 20:26:14',NULL,NULL),(145,57,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImVtbWFhbm5nYXRsaW5AaWNsb3VkLmNvbSIsImlhdCI6MTcyNTgyNzE5OCwiZXhwIjoxNzI2NDMxOTk4LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiZW1tYWFubmdhdGxpbkBpY2xvdWQuY29tIn0.u524Y0UEAHZWbszHxPDiiUEIryqqOhOnJHec07nlMHY','ios','cFTzmKD-PkM6tj7FQv_YMk:APA91bG69aeDnKIs7j74Be0W5JTUFPHXFf8XlIhUfqTgNGrAgNWo6L3-eC1hL3tc3L-RUJq4SJgHpcwCoSsaixCM1ry_0xEtNk7tueCmIEM6byyjpHU6DWdJXYCeQM04eDCfYwDJnTjJ','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-08 20:26:38',NULL,NULL),(146,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNTg3MjM1NywiZXhwIjoxNzI2NDc3MTU3LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.PA2DPwhtLnVtDXTwLPtSv5m-poOXZ28BU7Joz8po6As','ios','f5OwHQqMQEyepRiLlXR2PE:APA91bEaPeEK3uEWgEAI-CXXxeVFG4J0KxHAUl_IQF-SWN_zhLodhbLVM2ztrpAzYGsEP1dTpgRh-P_-TPXWqnoikJxf7xIoxlIDriRNbRhR4VwjtXEd4ssjeHEwLoKlVIyfxEss4VaP','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-09 08:59:18',NULL,NULL),(148,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNTg3MzM5MiwiZXhwIjoxNzI2NDc4MTkyLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.AtQ6_K0wM5TF2ZIwSyDAeGXakheciOwkPlqWf6r3pk0','ios','cpQK4PU9YU6QjOo98lXqMb:APA91bFpSKpZwT-p5GT8ekOvpQ1_6zj2yLbDHISav0UDt2BQcpFL7bo39I6VNphwJFi6Yk0yUZDHJ8WlBi3R_kIYXDEgwAe4i6vY7vYuDQR3w75Zn-Tz8g0aROL4vkkc4T1mwnv5YGjl','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-09 09:16:33',NULL,NULL),(149,58,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InZpdmlhbl9jdXZpYmJ5QGljbG91ZC5jb20iLCJpYXQiOjE3MjU4Nzg5NzYsImV4cCI6MTcyNjQ4Mzc3NiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InZpdmlhbl9jdXZpYmJ5QGljbG91ZC5jb20ifQ.0fioEfA5sfICsMAsrATDMgR5iM7AzOWtkrgMZJqUIVw','ios','fmjum2ko60VLt8NKCt4Y4-:APA91bEMrSuRRi1XpzKt-4DhPObCjBtndVe_oTypxklt1NBsD9wbif9uIAlZKXBZJM0uRbquSZ6x9HItlwqiuNcXif1oXHzUO_-q-PlowATYESSl2jwvS09vNrVw-DBAfWUQsEHjcgbP','apple','000683.2380513020cf46038425d59243c36770.1049','127.0.0.1','Dart/3.3 (dart:io)','2024-09-09 10:49:37',NULL,NULL),(150,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzI1ODc5MDAyLCJleHAiOjE3MjY0ODM4MDIsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.dkHl7MZJN07RQRHbDZxttyE5xIZoHvKgxkzTqOZNen8','android','1234567890','custom',NULL,'127.0.0.1','PostmanRuntime/7.41.2','2024-09-09 10:50:02',NULL,NULL),(151,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNTg4MjI1NiwiZXhwIjoxNzI2NDg3MDU2LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.kWViMbUKOdPwOws7i7Df5l61OpgcYYPMxIhwpP0idtk','android','1234567890','custom',NULL,'127.0.0.1','PostmanRuntime/7.41.2','2024-09-09 11:44:16',NULL,NULL),(157,38,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20iLCJpYXQiOjE3MjU5MDk3NjYsImV4cCI6MTcyNjUxNDU2NiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20ifQ.-uddSJACQGKes6vxaXcSB7_D7uxcVSuvp0kaYuxRkoE','ios','cVIk2SXM_Uvsjy-NnDlti9:APA91bGliyYt8YjAyeu7OGjFUGDP9CGU2dNBJPWOI_aN5YScOs741a1Mz_YmgzHiQBNhPfHrmuLMHBD3AuDp62QkT2tn44diMSJKeBJWDQePHUPspkTP4h3kd_PhbTTANNsVJ6pwTWmp','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-09 19:22:47',NULL,NULL),(158,60,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNtMmNqYmdkc2dAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MDIyNDkwLCJleHAiOjE3MjY2MjcyOTAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJzbTJjamJnZHNnQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.9K4Qde-EyLRU4sDbDZpDU4rnAkpmKeFX-v-QBcsq4zA','ios','f9hK_-B7yUnjmhMUsIBdtW:APA91bFdZQiXXX1AWVHvCRtSr023LW-PkKuoXe-3MqEVZuiHTnWFQmyZ-y9c2cVBgfw7bPrK8xGhcOTJCF_Uv-aKjVeJ7JyOGqc903l6hkS3Rnm1YQQ9581maCQakKmyRFKpVSyeHfJx','apple','001978.6ac934ef63324dd788ccb1fb0c31ae81.0241','127.0.0.1','Dart/3.3 (dart:io)','2024-09-11 02:41:30',NULL,NULL),(159,61,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im15cXN5aHFkOTJAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MDI1MDcxLCJleHAiOjE3MjY2Mjk4NzEsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJteXFzeWhxZDkyQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.1ra4mxYHXx5DOXAwal7MwfeGLlyrmptPzUY4mA1FVDE','ios','czKwNXzCikUQmH3nNP9zIf:APA91bHpqQR7ynK5dOI0dUuBDp9fXofyAPyvLqMnD4VtSRQ2jwSlGE_eRL5cKmaCOiwRCWJpouT3EzdwhxLdfBHNftsnghq0CSeCtMOKGkidpYzeX2txiMlr_hpTQNiGwxXskJ0rD8ik','apple','000085.e8a2e1849f624fca831dc98a774a5415.0324','127.0.0.1','Dart/3.3 (dart:io)','2024-09-11 03:24:31',NULL,NULL),(160,62,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFuZ2Vsb2phY2tzb24uMzg5MThAZ21haWwuY29tIiwiaWF0IjoxNzI2MDUwMjI2LCJleHAiOjE3MjY2NTUwMjYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJhbmdlbG9qYWNrc29uLjM4OTE4QGdtYWlsLmNvbSJ9.6wyM7vAU3kCmXq8qk_qlD2Q_VSddwMRELi3qZ88abnY','android','1234567890','google','108907022244143350868','127.0.0.1','Dart/3.3 (dart:io)','2024-09-11 10:23:47',NULL,NULL),(161,63,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imh4eWtyanY2bmpAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MDUwNzk5LCJleHAiOjE3MjY2NTU1OTksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJoeHlrcmp2Nm5qQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.hn85OIbN3NxNuPpHWx-DYZ8Cs-_A8KpsUd6uIY0RDdE','ios','cbPyn5GV80a-hvxsIwyRUA:APA91bG8xKHE2YUYUQBedxSJERWAuRiqehaDRRXypSiiWR3CnZ4woIUpQkKhZ1yNvVqtWunOI4XlA3TzUxVMAI7xMqQHrQ93K_LAfok2RK7B5aPiyU5y9XsLBYzlSbqpQrs3hBo2j_8u','apple','000815.efee5724914e44449c48a140d7ab9b67.1033','127.0.0.1','Dart/3.3 (dart:io)','2024-09-11 10:33:20',NULL,NULL),(162,63,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imh4eWtyanY2bmpAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MDUxMDk1LCJleHAiOjE3MjY2NTU4OTUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJoeHlrcmp2Nm5qQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.T2tWVAfdO09wQIKgdYDNkS05D3FlsCGZ7HCc3z5CB4I','ios','exjMPKfTIUAYmRlDAhiN33:APA91bFrbSDWKpO5hhiwUscOYzZ-gkj9AQRRayD9gCR0BIaKqxQRvxlOxjvlSThhEHigXi0_oyqsXJRaQtcTFH5CBM12NoVmkGboqrGsTDSrphNeNOW-IlVC4HEB9fakDCx6xYVd_KYh','apple','000815.efee5724914e44449c48a140d7ab9b67.1033','127.0.0.1','Dart/3.3 (dart:io)','2024-09-11 10:38:16',NULL,NULL),(163,64,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Inc2Z3ZnNzl0cjlAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MDUxODE4LCJleHAiOjE3MjY2NTY2MTgsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ3Nmd2Zzc5dHI5QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.E5y3DDXmWHLQo1dXH9T461S0aaoeckpL16wUPEngtaY','ios','d7TzFkUorUhGg2rg7xXG-B:APA91bGdUJnnMKQT6MbNp3euoeIGK4TCGtjAIe23ObZNq1g-NeiOadAmw6zND6guA7GAw9AUEVQIdani3IFlA1J5s9L8gCzvDZ6QW-q5OOAapZ4UjMJGNPiw2PF3IfQFXbL0WykGQ5MN','apple','000221.342abcd83df94bbabbb60837ccecbf5a.1050','127.0.0.1','Dart/3.3 (dart:io)','2024-09-11 10:50:18',NULL,NULL),(165,66,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImJyYXpvc2d1bnRlckBnbWFpbC5jb20iLCJpYXQiOjE3MjYxMDQ3NjksImV4cCI6MTcyNjcwOTU2OSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImJyYXpvc2d1bnRlckBnbWFpbC5jb20ifQ.xambV2VZM32WRfYyj82aLah5kSobZYmzkG6Yh6hiqOs','ios','ch41jt0Q5kYDqawQgEuxgi:APA91bEOAw7yRGY2Bw_U-PCJadX6cElU4ReJuRsrSeaNejqlYk89zyMWNeMtuMhS-IdGdT77zAlKU4_t1Falog-2HkBH6nCZSWgRczMA_A-_EUJqTsAePCbDlpLnqByr2vM_jdGyH05r','apple','001151.4504e9b5b489424d99b1622eff8271c0.0132','127.0.0.1','Dart/3.3 (dart:io)','2024-09-12 01:32:50',NULL,NULL),(166,67,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Ijg2YzZmNmJzZ3dAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MTA3NDc0LCJleHAiOjE3MjY3MTIyNzQsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiI4NmM2ZjZic2d3QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.r_8O5RPzvzjCpZ21VS9eCXKtWGGtz_y2PHyxC09eMx4','ios','fX-gqv6sBUGtnOJC9Z6jpU:APA91bHLEC9VzQyFN7Qt8H7WwWTtykAa-aRxsp3sTq-1GGcKNxjxSm7upmXFVLa1KPXqlHmYZvj3UugudMwn22DzfbGjk5KhhqohTNTnMBLbZb1QDiBlB1WVGoQu9INT6jerww5COyaI','apple','001276.1491894d882c463abdf9b1afdb6c2f9b.0217','127.0.0.1','Dart/3.3 (dart:io)','2024-09-12 02:17:54',NULL,NULL),(167,68,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InY2cXI1ejZjbjRAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MTk0ODQ3LCJleHAiOjE3MjY3OTk2NDcsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ2NnFyNXo2Y240QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.nWgBCw_hN7pk8KAbKoAz7euwJ-qDUBWBqTqMU30gukw','ios','cRXkH3q54E-DqrpL_c-fGE:APA91bE3bdBlD3utZ3wKVxOUZhfVoNl7mDkMoozs7Xu261n2zLNwZwkxkI-C1p7J57ToROsRbgoz-hXg7mQ7z-AyaBoproB9pEgRVnlLlY8x4bhntY7LQhlmPlO6koi0dLB-GOKSwLV-','apple','000484.adcc5b2529684728bb16d00be1916cfc.0234','127.0.0.1','Dart/3.3 (dart:io)','2024-09-13 02:34:07',NULL,NULL),(168,69,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsZXhhbmRlcmFsdmFyYWRvLjgwMTk3QGdtYWlsLmNvbSIsImlhdCI6MTcyNjIzMjk2MiwiZXhwIjoxNzI2ODM3NzYyLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiYWxleGFuZGVyYWx2YXJhZG8uODAxOTdAZ21haWwuY29tIn0.wdEKSiI4u6xJhILwI8MCE7lr_EJQPvRLBet-_WWWDF4','android','1234567890','google','117521132276174550861','127.0.0.1','Dart/3.3 (dart:io)','2024-09-13 13:09:22',NULL,NULL),(169,70,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImphZGFhbGxlbjMwQGdtYWlsLmNvbSIsImlhdCI6MTcyNjI4MDY4OSwiZXhwIjoxNzI2ODg1NDg5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiamFkYWFsbGVuMzBAZ21haWwuY29tIn0.JTKJv_XIllL8QBPpMbNC0rwZtDTv332bjxGBmaV1l5w','ios','dGjbDnWcUkAok71kXPdSge:APA91bFgsZdynV5Pw1s9a2ahLpRaItvCVIV7nz3VeDMD8SAFYJYkDTYmszHFrMs6tUtczfZE55XniiCV0e6akVGqPhVGe7kZ2PWUL4QevfzdWOA_scZ-y2cZCbp_5r_ngpXsIzkizIDd','google','114880543319106176645','127.0.0.1','Dart/3.3 (dart:io)','2024-09-14 02:24:49',NULL,NULL),(170,71,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImJ4ZDV6aG44bTJAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MjkzMjE0LCJleHAiOjE3MjY4OTgwMTQsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJieGQ1emhuOG0yQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.jTK7lrqXFF1fZceKKq_D7Q3oWcKM-a76veTp-73zUv0','ios','cdV4J0_x7EHGiB5W-gau4C:APA91bFYGx-o5qjunJ9nRq8zF15Q3B8knodXlXZaBvfmt6BSh4uYtHlu2iNpghOYfUpMAD2mVKfkVxwJanCXyiB0veiIENb4Oe9K8Wo7ulSOMyr1Ox9bBtgpCJQoK1Nvztrx-h349VtC','apple','001693.372ce7fe170f407fb6dbd81201fdef20.0553','127.0.0.1','Dart/3.3 (dart:io)','2024-09-14 05:53:35',NULL,NULL),(171,72,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IjRncGRyZHJxeW1AcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MzEwMzcwLCJleHAiOjE3MjY5MTUxNzAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiI0Z3BkcmRycXltQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.WDt3MXp29ccfmak-KohXzsdh9ouwQe06cEvsr9DkgZ4','ios','fhXttzrI0k4KnjpkPJKUCL:APA91bFglgzRASkVWv3DqHdYRyQCmw61Gtan1Ux5SPGMdXORHHkNHx-QIOndGp0YWeKWO86UYIuuw2c7q0--KwMzTorymRCN-4iyLMy88I-s5LUKa4Yi6mzU3k3snmFHOA294-NRpgrt','apple','001357.ae8cd27eb5484e1cbd9bb6b4a2a16269.1039','127.0.0.1','Dart/3.3 (dart:io)','2024-09-14 10:39:31',NULL,NULL),(172,37,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Ims4a2c4NmJzbndAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MzQxMzMyLCJleHAiOjE3MjY5NDYxMzIsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJrOGtnODZic253QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.0TXIepQNcK1jTVmY0Q2g6W6G0Gtm5RJ9-z9wrv49RAE','ios','fQdvrFEAAkCtskzHFVvx6j:APA91bH_VgXk9Q4ilEHfI4zcqwdHfHUz3FEs7v50f8PC8fKAM_6yi-Z2aLCvdYMhO5Ugvx20755brBPVSICYQDHv_LEx-uxqPKs-3zBEPYmlD4zixp0X95dHJjENP6f8wu_JHy8vSYk_','apple','001665.65967978fb634b65a4169db07b1be4f6.0221','127.0.0.1','Dart/3.3 (dart:io)','2024-09-14 19:15:33',NULL,NULL),(173,73,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1jZW1icmV5QHlhaG9vLmNvbSIsImlhdCI6MTcyNjM0NjU3OSwiZXhwIjoxNzI2OTUxMzc5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoibWNlbWJyZXlAeWFob28uY29tIn0.LJaFyJJ_FWdQVrc8SDX5Wyt7mo9MCLOfiMDHFLljjsE','ios','dw9YsPXtOUzErYDNRPMZ_d:APA91bH9a16FcEzHcAdpzOA-_MiKmn6hl8sRT2-Wd-NUl52b6JeMr5a1qGOMltM4LhliWJjG7zn0WdBopsnjJy2ukjey6lCupB8N1R-1gq-gX8WyhJ4dTN7NBVaaPNQNLlQK8WJ_duy5','apple','001418.3efa6a3e68184827adc46a6b9014fc28.2042','127.0.0.1','Dart/3.3 (dart:io)','2024-09-14 20:42:59',NULL,NULL),(174,74,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InJnNDlkd2I0NGRAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2MzU2MzIwLCJleHAiOjE3MjY5NjExMjAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJyZzQ5ZHdiNDRkQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.zUJQxfCUjvrNd9HMcdhFt8QthpeortHjIEBHgGd_SjQ','ios','d9rlV95Vwkg8qF9HaUV9qz:APA91bFS8bLkKCx9IRP-bc_8gqP5IrVUWpAEnTweIKtMAQgU10L-kwy2pHbqaFxLbSiTCUUJqVhCyfj9CGKfyegtxnEFtdOkDDyaZtIHllIp5zeZ2dLpkca_4Am4NSjOjYDvS0n8dXDX','apple','001241.0245a9fc973c46939c25aba0c8846aba.2325','127.0.0.1','Dart/3.3 (dart:io)','2024-09-14 23:25:21',NULL,NULL),(175,75,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFtYm1hcmllOTFAZ21haWwuY29tIiwiaWF0IjoxNzI2NDI5NTc1LCJleHAiOjE3MjcwMzQzNzUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJhbWJtYXJpZTkxQGdtYWlsLmNvbSJ9.oW-2giAabyBmUoSNV7K7alxOwvEpwn35M4OZG_fokf4','ios','c9ofAGb4JEcyv6U5Dp6OLs:APA91bF8pA7sKAOiuWgnZ9D_pWEV1twp5qmA8aLcYae-8SGsq59elGVn4ILxeuAtZCJFu6LeeICg5ZAnUU80WHsS_PDqO2VeeXuE1sFkKHDqfV_Idsg7E1y8VglwjN6mw9UIBKFbA4Tw','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-15 19:46:16',NULL,NULL),(176,75,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFtYm1hcmllOTFAZ21haWwuY29tIiwiaWF0IjoxNzI2NDI5NTg5LCJleHAiOjE3MjcwMzQzODksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJhbWJtYXJpZTkxQGdtYWlsLmNvbSJ9.Lo4NVbRdB_qu_F5ggVsaHp0ETsQyWH4lHiQewlOnaeM','ios','c9ofAGb4JEcyv6U5Dp6OLs:APA91bF8pA7sKAOiuWgnZ9D_pWEV1twp5qmA8aLcYae-8SGsq59elGVn4ILxeuAtZCJFu6LeeICg5ZAnUU80WHsS_PDqO2VeeXuE1sFkKHDqfV_Idsg7E1y8VglwjN6mw9UIBKFbA4Tw','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-15 19:46:30',NULL,NULL),(177,75,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFtYm1hcmllOTFAZ21haWwuY29tIiwiaWF0IjoxNzI2NDI5NTk1LCJleHAiOjE3MjcwMzQzOTUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJhbWJtYXJpZTkxQGdtYWlsLmNvbSJ9.RSuSak9PEhlzoVnq1XLZ0i-WE7Nswj44eRxO7BLOeCY','ios','c9ofAGb4JEcyv6U5Dp6OLs:APA91bF8pA7sKAOiuWgnZ9D_pWEV1twp5qmA8aLcYae-8SGsq59elGVn4ILxeuAtZCJFu6LeeICg5ZAnUU80WHsS_PDqO2VeeXuE1sFkKHDqfV_Idsg7E1y8VglwjN6mw9UIBKFbA4Tw','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-15 19:46:35',NULL,NULL),(178,75,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFtYm1hcmllOTFAZ21haWwuY29tIiwiaWF0IjoxNzI2NDI5NjIwLCJleHAiOjE3MjcwMzQ0MjAsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJhbWJtYXJpZTkxQGdtYWlsLmNvbSJ9.OtxM4YnmpSKEAWuZSTp73qJAtruNdd8fEd8cWI1guKk','ios','c9ofAGb4JEcyv6U5Dp6OLs:APA91bF8pA7sKAOiuWgnZ9D_pWEV1twp5qmA8aLcYae-8SGsq59elGVn4ILxeuAtZCJFu6LeeICg5ZAnUU80WHsS_PDqO2VeeXuE1sFkKHDqfV_Idsg7E1y8VglwjN6mw9UIBKFbA4Tw','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-15 19:47:00',NULL,NULL),(179,54,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InN1cHBvcnRAdGh5d2lsbG9ubHkuc3RvcmUiLCJpYXQiOjE3MjY0ODM5NzEsImV4cCI6MTcyNzA4ODc3MSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InN1cHBvcnRAdGh5d2lsbG9ubHkuc3RvcmUifQ.DlsSNQwE7eGoRoCOaFQwTDSwoL0fH6BPWa0glI8o6sI','ios','cVzpo4oWuED0pWZ_0eqadx:APA91bG-aBnqu8d-se9pXf1LYezDKAv2Ke1NOGLeA8BCH6I13xvagvJNhXmqZ4bXgRImYY6nTdPZwNM0tW322y9cU1jLElovCrTdyhT2JkFec2ZFrtWoyCbbhwF5Cm6paWDlR4gT2_v5','google','115066118542600998889','127.0.0.1','Dart/3.3 (dart:io)','2024-09-16 10:52:52',NULL,NULL),(184,77,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImRhbmlpcmVjZWl2ZXNAZ21haWwuY29tIiwiaWF0IjoxNzI2NDkzOTk2LCJleHAiOjE3MjcwOTg3OTYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJkYW5paXJlY2VpdmVzQGdtYWlsLmNvbSJ9.hcAIU9PMVzMuWsTUBI1Sbf_098dq_CwD8WwWDqRLKtU','ios','ev33kGka8EVSq1_rbZwRoW:APA91bFKuPFWfCAz8i45ioMoWt3NrRXbsQNLWhtO6D6pHvifecqZlftevqjzg1cyI9mv7XX-bOZy6SFMs1xq9z8aCL86fKfm1NtOGUEA6k1RfuIbp8H0S4GYnr2WvEryBsmDEXcLMMja','google','112058824595819495375','127.0.0.1','Dart/3.3 (dart:io)','2024-09-16 13:39:57',NULL,NULL),(185,78,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImJwcmVqZWFudEBnbWFpbC5jb20iLCJpYXQiOjE3MjY1MTc5MTYsImV4cCI6MTcyNzEyMjcxNiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImJwcmVqZWFudEBnbWFpbC5jb20ifQ.QU1LiJT9ZOUf0ItRVpJK6nD2lsblvJCTKbtWsTjh4Xc','ios','egoiYfLz1k-_qo_HP6JFzn:APA91bHu7ivcTQaGNOvqhD7xcTawb4Ba0uo_FGZsBPQgbKdTY6YMfxxLLvst39MTwIYQLESgZqGSgAoc02sSqjhiAMBkE3oc8H4hErRzJsLuJac4_fEM_933xBkFWV5eWbaLd9XgKPcL','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-16 20:18:37',NULL,NULL),(186,78,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImJwcmVqZWFudEBnbWFpbC5jb20iLCJpYXQiOjE3MjY1MTc5MzgsImV4cCI6MTcyNzEyMjczOCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImJwcmVqZWFudEBnbWFpbC5jb20ifQ.qSxlx0MjLEU4G6qD7Z66atCG5fux9Yytw-zfcT2vN3A','ios','egoiYfLz1k-_qo_HP6JFzn:APA91bHu7ivcTQaGNOvqhD7xcTawb4Ba0uo_FGZsBPQgbKdTY6YMfxxLLvst39MTwIYQLESgZqGSgAoc02sSqjhiAMBkE3oc8H4hErRzJsLuJac4_fEM_933xBkFWV5eWbaLd9XgKPcL','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-16 20:18:58',NULL,NULL),(187,78,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImJwcmVqZWFudEBnbWFpbC5jb20iLCJpYXQiOjE3MjY1MTc5ODAsImV4cCI6MTcyNzEyMjc4MCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImJwcmVqZWFudEBnbWFpbC5jb20ifQ.rb4tCEcQs4dt3X8WlPhiIanoeoJAdFxfa4HkqBtXDlQ','ios','egoiYfLz1k-_qo_HP6JFzn:APA91bHu7ivcTQaGNOvqhD7xcTawb4Ba0uo_FGZsBPQgbKdTY6YMfxxLLvst39MTwIYQLESgZqGSgAoc02sSqjhiAMBkE3oc8H4hErRzJsLuJac4_fEM_933xBkFWV5eWbaLd9XgKPcL','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-16 20:19:40',NULL,NULL),(188,22,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1lbGlzc2Euam9obnNvbjExODVAZ21haWwuY29tIiwiaWF0IjoxNzI2NTE4ODY0LCJleHAiOjE3MjcxMjM2NjQsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJtZWxpc3NhLmpvaG5zb24xMTg1QGdtYWlsLmNvbSJ9.mYjJp0bS2T0We3ClrfCiaoDE0j9hKh_7xHXDXaY7lWA','ios','cJIeKMRLCkg9utOyqXD1Sg:APA91bF7XpWuR5lxNQMg1PYhJGXRiU1TIn4-NUMcFTj-fFYUwdjrCpZO2R1LdXv5XeyzO2shY9qGJZx3nQm2rMGXqsRLbQcnpWRygza--1Hvq_PZXMCneIjBdXzJ7EWDdyKMdbHZiJRi','google','107330819474683324005','127.0.0.1','Dart/3.3 (dart:io)','2024-09-16 20:34:25',NULL,NULL),(189,79,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Impvc2x5bm5tYXJpZTU4QGdtYWlsLmNvbSIsImlhdCI6MTcyNjUzOTAzNCwiZXhwIjoxNzI3MTQzODM0LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiam9zbHlubm1hcmllNThAZ21haWwuY29tIn0.VdgqjjvgRfcXbWUx6J5gWu4iYTxHfcLlDIbRNGKmzCc','ios','f3gKUiDqWUDEpHgSRdotbB:APA91bFGDIkEA9UzkJSyh_rzwCNFJudCyUKRhg1B1aKqdqFyIgtGvwiUIByJXmxyGfpu7FZeqxmgqMqjA4s-ZwmZpE6pJZoL_V3rAQBW4uFC-6TcdiByJXoy7vxt4UkW49lBy5ePxg1V','google','116140138555240368985','127.0.0.1','Dart/3.3 (dart:io)','2024-09-17 02:10:35',NULL,NULL),(190,80,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhaXRsaW5jYXN0aWxsbzEzQGdtYWlsLmNvbSIsImlhdCI6MTcyNjU0MjM2NSwiZXhwIjoxNzI3MTQ3MTY1LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FpdGxpbmNhc3RpbGxvMTNAZ21haWwuY29tIn0.B_5qEOERXRtCVYWHYcFIZEW-zbLHk1GXasucDQH6Zu4','ios','f2wRSXxPIkfTovhm1aNpxt:APA91bEUCdeMW-_El4VJyIj8f8yh1029HLQFgiKF3lWkbmxN1IUPLVj3JhmCPQYjga4pic4zUlaWE2-kbr3IM-Da2WQ9uCAE2IOua-VRDSOOgL9a_TiCW6Ap81cCGMDSN8m2GVk-tANS','google','114296238150445276575','127.0.0.1','Dart/3.3 (dart:io)','2024-09-17 03:06:06',NULL,NULL),(191,81,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImJhc2ViYWxsZGF2aWQxMEBnbWFpbC5jb20iLCJpYXQiOjE3MjY1NDI2MzIsImV4cCI6MTcyNzE0NzQzMiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImJhc2ViYWxsZGF2aWQxMEBnbWFpbC5jb20ifQ.9ojKhvJ5mjphUyRWWNYtp8G8paNOHScbycyD6fl2nUI','ios','ftRKxYGbyED5iWN-2Orwzm:APA91bHAj-5Sg-QFuUED4jkId5T3dCXK9nz9G2ykhdE2N82dt28FBHEQOsvC_sbg5CexAelV78PelMo9AxBXvv_aPMLOEtOIev4sNANVxHpuoVSHSBUVqO7F_WLWtou2Aes3MIM0ZJaT','google','114488939179246019158','127.0.0.1','Dart/3.3 (dart:io)','2024-09-17 03:10:33',NULL,NULL),(195,54,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InN1cHBvcnRAdGh5d2lsbG9ubHkuc3RvcmUiLCJpYXQiOjE3MjY1NzQwODIsImV4cCI6MTcyNzE3ODg4MiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6InN1cHBvcnRAdGh5d2lsbG9ubHkuc3RvcmUifQ.myO_0ime8AtXJDS_prPeBjCROVb9T8763LNesFNUNNU','ios','cVzpo4oWuED0pWZ_0eqadx:APA91bG-aBnqu8d-se9pXf1LYezDKAv2Ke1NOGLeA8BCH6I13xvagvJNhXmqZ4bXgRImYY6nTdPZwNM0tW322y9cU1jLElovCrTdyhT2JkFec2ZFrtWoyCbbhwF5Cm6paWDlR4gT2_v5','google','115066118542600998889','127.0.0.1','Dart/3.3 (dart:io)','2024-09-17 11:54:43',NULL,NULL),(196,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNjU3NDcxOSwiZXhwIjoxNzI3MTc5NTE5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.ZxzDiR_MdhRAsc_AxUKmR8Jik37_84pDhoEymo44Ygk','android','cWEkqLYDRherAVXjR2Nm2E:APA91bENkwuCNlTpUEId3YJC4TcvD4GqOR15XuMpzPspxkC6Ju6m6lnI0S6NcXhnv2L75K3xFAt6c1fcvhWTm-MThfEGQtZ1m_ts9ny65wKgkf24QcpaJ9RN0Gn7JCDZudnAGZ4AnBik','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-17 12:05:20',NULL,NULL),(197,83,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IncyY3dzeTlxenBAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2NjMxMjI1LCJleHAiOjE3MjcyMzYwMjUsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ3MmN3c3k5cXpwQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.cYjLCx9_cKCXFo2tycfgfT3gOgOpAcZrrBtn63UmmW0','ios','dK1dP7XOhUFqhwyYlf4B1O:APA91bHoieathSggex2FgrngEcV7ykm278fk8T09ABH7_HaamembIok9jjAI9L6dqjFTUfKbVBUjs-ptM4pGH_mIebPyQWTOA0rR7vTTSvBOSazDh2zoL7coJDK01JPGkbFHGXsjRtBV','apple','001401.1b01b37671c442f38e835cc635945503.0347','127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 03:47:05',NULL,NULL),(198,84,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFyaWVsbGVfbGV3aXNAc3VsYy5lZHUiLCJpYXQiOjE3MjY2MzQ3NDEsImV4cCI6MTcyNzIzOTU0MSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFyaWVsbGVfbGV3aXNAc3VsYy5lZHUifQ._wcXO4y3vbCmVdamQ3xZWmj52dDtcr8GVbT1Py6c5YQ','ios','dNr5RcKeZUAnggfLPl4Gtr:APA91bHNkl3LNTew74RYUMAchEXz-aHVWpbo5ZgoazGYqDaF7cOVds6c46XRGBdQCcmY6ZAHLi-cRITEs8J2P8ogkOkz5CN155IBLR7ilERrmLLCegSfKsqEzHKLB5JFNKB8U9jUrOKK','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 04:45:41',NULL,NULL),(199,84,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFyaWVsbGVfbGV3aXNAc3VsYy5lZHUiLCJpYXQiOjE3MjY2MzQ3NjQsImV4cCI6MTcyNzIzOTU2NCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFyaWVsbGVfbGV3aXNAc3VsYy5lZHUifQ._qDq1N9M_bbBWUyHDrxoDu8NhMV9efb8mkZzC3CT2Ao','ios','dNr5RcKeZUAnggfLPl4Gtr:APA91bHNkl3LNTew74RYUMAchEXz-aHVWpbo5ZgoazGYqDaF7cOVds6c46XRGBdQCcmY6ZAHLi-cRITEs8J2P8ogkOkz5CN155IBLR7ilERrmLLCegSfKsqEzHKLB5JFNKB8U9jUrOKK','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 04:46:05',NULL,NULL),(200,84,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFyaWVsbGVfbGV3aXNAc3VsYy5lZHUiLCJpYXQiOjE3MjY2MzQ5MzksImV4cCI6MTcyNzIzOTczOSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFyaWVsbGVfbGV3aXNAc3VsYy5lZHUifQ.OlGoh1S_DDVAhclvzCRkvPHHQu1lbhRs1AWWW6JkDuI','ios','dNr5RcKeZUAnggfLPl4Gtr:APA91bHNkl3LNTew74RYUMAchEXz-aHVWpbo5ZgoazGYqDaF7cOVds6c46XRGBdQCcmY6ZAHLi-cRITEs8J2P8ogkOkz5CN155IBLR7ilERrmLLCegSfKsqEzHKLB5JFNKB8U9jUrOKK','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 04:48:59',NULL,NULL),(203,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNjY0NjM5NCwiZXhwIjoxNzI3MjUxMTk0LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.LpjVo22c9a4YxHcIFfSpkGGoq8DLDQOCuP1XsismkqI','android','d7sogZhhRIWcQgsBr_FO7A:APA91bEN1pogfNsnBUznU_TCPvEZxRWANhIM4dUWJ4q8RmLPARFfZZmd-ZVEmVWMJ3TVdNo_j9DiY79exdz9mXIlbUndk4zj7LdOmwvj1tAl2lRyaNMtJCSo-HjxaqXeg6_ipXJYs_A7','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 07:59:54',NULL,NULL),(204,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzI2NjQ3MTQ5LCJleHAiOjE3MjcyNTE5NDksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.h1djlwE3jEaNw0CG11XWEbqw_ayDw2EmAXDuZPiSuwY','android','fVgXXrf1S_qcBYC9qO8lPn:APA91bGQkyl8J9joKRtR9ZGP3UN8v6BlHhHgCIyMCs1IzRuhNdF5Fu_3wXrZfx8NwiNXc8dJjFTjoytSGBmRwkyquLcZG9RiXRfGOYDI9IcykbF7qSIomP8ACeIORos3tUruogqLXCGI','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 08:12:30',NULL,NULL),(205,82,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImhhcnJ5Lm1pbGxlckB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNjY0NzE4NywiZXhwIjoxNzI3MjUxOTg3LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiaGFycnkubWlsbGVyQHlvcG1haWwuY29tIn0.igVXNSfTeZxeIoYHmwdJpyAD757Lvdf3u4zzoL9W9xs','android','fVgXXrf1S_qcBYC9qO8lPn:APA91bGQkyl8J9joKRtR9ZGP3UN8v6BlHhHgCIyMCs1IzRuhNdF5Fu_3wXrZfx8NwiNXc8dJjFTjoytSGBmRwkyquLcZG9RiXRfGOYDI9IcykbF7qSIomP8ACeIORos3tUruogqLXCGI','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 08:13:08',NULL,NULL),(206,38,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20iLCJpYXQiOjE3MjY2NTU3MDcsImV4cCI6MTcyNzI2MDUwNywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Imdpb3Zhbm5pam9zZXBoMjAwMUBnbWFpbC5jb20ifQ.1TP8nUc2kg_7LjSzfFptKKKAXDbAz5yYqfZMsNLY85w','ios','cVIk2SXM_Uvsjy-NnDlti9:APA91bGliyYt8YjAyeu7OGjFUGDP9CGU2dNBJPWOI_aN5YScOs741a1Mz_YmgzHiQBNhPfHrmuLMHBD3AuDp62QkT2tn44diMSJKeBJWDQePHUPspkTP4h3kd_PhbTTANNsVJ6pwTWmp','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 10:35:07',NULL,NULL),(207,82,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImhhcnJ5Lm1pbGxlckB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNjY1OTU0NCwiZXhwIjoxNzI3MjY0MzQ0LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiaGFycnkubWlsbGVyQHlvcG1haWwuY29tIn0.wMLJtDrBW37PhEzqHsvbIgi5ei--94xyzsfIn7o5jXI','android','d0jq3p-ySfCXzVxHA9XIYd:APA91bE5JMrkQm4MNSCX0pU8MojPIfZUkZd7J0c57JrCXtZ59eMoZ8wUD_5CjQeLbyUIphAkgSozRtpWis-QvDRiboMCgrwoiHa_lWc8ur47h-fRGSAL45o1qibJ-9FNAnyWz51sLur_','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 11:39:05',NULL,NULL),(208,85,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InBtODltenB4ZGNAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2NjYwNjkzLCJleHAiOjE3MjcyNjU0OTMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJwbTg5bXpweGRjQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.4Hz9KRz88Gx1GZqGumG7ZJhzWwh_rpfoQLCB68jEW88','ios','e5pEnW3gOUhXqnEQvebP5_:APA91bE3OFrt7cXHhdXiwZ7RBwFYKkxYqfq4cA64j4qVuqfM_iMwBxjI3cvdkEZocmz78fn3y8Ul6cUZWF62kOgFrcUlQxyeOMt2KKsGueF4JIsyfdspcY1iggOIURxZFZNTt7BAZKG9','apple','000629.711b078de84b49baa1031e61fdc2818b.1158','127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 11:58:14',NULL,NULL),(209,10,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InVzZXIxQHlvcG1haWwuY29tIiwiaWF0IjoxNzI2NjYyNTIxLCJleHAiOjE3MjcyNjczMjEsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ1c2VyMUB5b3BtYWlsLmNvbSJ9.WbwKDk0R9pP7YEzOyot2zbNGloUixArrUjOU_zU-DNY','android','1234567890','custom',NULL,'127.0.0.1','PostmanRuntime/7.42.0','2024-09-18 12:28:42',NULL,NULL),(210,86,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20iLCJpYXQiOjE3MjY2NjY1NTUsImV4cCI6MTcyNzI3MTM1NSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20ifQ.T9EfHESOiNz2VoEfNR5_2H8d8Z_ZgtQGwYx4VRnM7pQ','ios','eH47ZLIInUnlorYbDbRNtW:APA91bGFxGjXKfVKsTUF01eGpo6i6qev3Bc-SJwsnqnNn2X2Kh8PU8ahJF-iN1Lxj3anfKPtiW4HX_1QdNUif38uMuE_6yWUPSTy8dr_eWNL9RYU4mhFj2bcYkvhsqsoCOfe2lzI3rQF','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 13:35:56',NULL,NULL),(211,86,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20iLCJpYXQiOjE3MjY2NjY1NzMsImV4cCI6MTcyNzI3MTM3MywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20ifQ.aPKiGOtuoi8ivd1vo-FCoRA5iQACSIEe-2es_jIlGSA','ios','eH47ZLIInUnlorYbDbRNtW:APA91bGFxGjXKfVKsTUF01eGpo6i6qev3Bc-SJwsnqnNn2X2Kh8PU8ahJF-iN1Lxj3anfKPtiW4HX_1QdNUif38uMuE_6yWUPSTy8dr_eWNL9RYU4mhFj2bcYkvhsqsoCOfe2lzI3rQF','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 13:36:14',NULL,NULL),(212,86,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20iLCJpYXQiOjE3MjY2Njc3MTEsImV4cCI6MTcyNzI3MjUxMSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20ifQ.X9tLktaNj5sNNnaBJX7A-je168mEkJQhDL4C_gPCQp0','ios','eH47ZLIInUnlorYbDbRNtW:APA91bGFxGjXKfVKsTUF01eGpo6i6qev3Bc-SJwsnqnNn2X2Kh8PU8ahJF-iN1Lxj3anfKPtiW4HX_1QdNUif38uMuE_6yWUPSTy8dr_eWNL9RYU4mhFj2bcYkvhsqsoCOfe2lzI3rQF','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 13:55:12',NULL,NULL),(213,86,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20iLCJpYXQiOjE3MjY2Nzc3NDQsImV4cCI6MTcyNzI4MjU0NCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20ifQ.z55z39JdaqZ3ubB47gH39zWhTN26dUvUmYeJP4vOADc','ios','eH47ZLIInUnlorYbDbRNtW:APA91bGFxGjXKfVKsTUF01eGpo6i6qev3Bc-SJwsnqnNn2X2Kh8PU8ahJF-iN1Lxj3anfKPtiW4HX_1QdNUif38uMuE_6yWUPSTy8dr_eWNL9RYU4mhFj2bcYkvhsqsoCOfe2lzI3rQF','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 16:42:25',NULL,NULL),(214,86,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20iLCJpYXQiOjE3MjY2ODA0MDEsImV4cCI6MTcyNzI4NTIwMSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6IkxpbmRzYXkud29nZW5AaG90bWFpbC5jb20ifQ.xr0-2Ro_lbXsNUKESu6jHwOHmBzCRnf3J9BjiXT9HWQ','ios','eH47ZLIInUnlorYbDbRNtW:APA91bGFxGjXKfVKsTUF01eGpo6i6qev3Bc-SJwsnqnNn2X2Kh8PU8ahJF-iN1Lxj3anfKPtiW4HX_1QdNUif38uMuE_6yWUPSTy8dr_eWNL9RYU4mhFj2bcYkvhsqsoCOfe2lzI3rQF','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 17:26:42',NULL,NULL),(215,87,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImxpbmRzYXkud29nZW5AZ21haWwuY29tIiwiaWF0IjoxNzI2NjgwNDEzLCJleHAiOjE3MjcyODUyMTMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJsaW5kc2F5LndvZ2VuQGdtYWlsLmNvbSJ9.6mmsqZ7zoa3as6RH2Zxj5IutI7laJg43liYE1-XfBEY','ios','eH47ZLIInUnlorYbDbRNtW:APA91bGFxGjXKfVKsTUF01eGpo6i6qev3Bc-SJwsnqnNn2X2Kh8PU8ahJF-iN1Lxj3anfKPtiW4HX_1QdNUif38uMuE_6yWUPSTy8dr_eWNL9RYU4mhFj2bcYkvhsqsoCOfe2lzI3rQF','google','107005616989244962608','127.0.0.1','Dart/3.3 (dart:io)','2024-09-18 17:26:53',NULL,NULL),(216,88,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFsYXluYTc4N0BnbWFpbC5jb20iLCJpYXQiOjE3MjY3MTEyMDgsImV4cCI6MTcyNzMxNjAwOCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImFsYXluYTc4N0BnbWFpbC5jb20ifQ.HLhNkuow5og3lBYIqceUJT62C05msmq9tsy1qAYp4h4','ios','cyT374lx9kf2tEQBW8Mf_q:APA91bGF3xKAf6M_HH_akd2f1Yt_izPT8FpI42LqqQ8GPB_9S4d9ytsovbct8_tG0ffWeqwLNArpmdpG5PM-J3Dj1dCxICd5XJEgPJx6cPWV0LxhSmfBCdeuCQmbeAb5YeDGYXCpAB8U','google','101593573879568795298','127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 02:00:09',NULL,NULL),(217,89,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImhvbGx5Y2FsZHdlbGwuMDMzNjRAZ21haWwuY29tIiwiaWF0IjoxNzI2NzQxMDQ5LCJleHAiOjE3MjczNDU4NDksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJob2xseWNhbGR3ZWxsLjAzMzY0QGdtYWlsLmNvbSJ9.uXipV2OnOlwlHaDH0wXu2yCR0zhNUmpCyOW13rKoc0I','android','1234567890','google','106264227011408332521','127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 10:17:30',NULL,NULL),(218,90,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InN0ZXZlbmxlZWhkekBpY2xvdWQuY29tIiwiaWF0IjoxNzI2NzUwNTMxLCJleHAiOjE3MjczNTUzMzEsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJzdGV2ZW5sZWVoZHpAaWNsb3VkLmNvbSJ9.VsXep66U5d7ptDWZ1QO7-LbLfn_5qCK94Kb_kja4E1g','ios','eVcf5xzmskcArgGIvirkd1:APA91bGOH_9rIYkmvt0p8wkfbENL_dKyhY8l7usskijvM8ttRbdpoOjLwpXDJs6upxRV_Nbyn8YuvdykH6pkBDKH-sFxDAOyBzaavBFcwTIV3umeeCcDxMpm6ZRox5LtqlM0Y82TX7eD','apple','001202.21993bd7966f487792f68eebf9130077.1255','127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 12:55:32',NULL,NULL),(219,91,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IngyNzRnYzc3a3pAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2NzU4NTM0LCJleHAiOjE3MjczNjMzMzQsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ4Mjc0Z2M3N2t6QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.YA5uUXQ9Bh_pp5soKyiRLAta2VFnzSTpjVZPb-aRgJ0','ios','c5cHam_JMkBhjguVC-UAkx:APA91bFCvNOW0wTE8n6J9TTSRuqe8gQotmnabxJ6IoLBzWHvJtcCNoVfXZKrXjoSzqb68hcW4jH6ZSz-FIvKd9kPZ6H4WBaK6XOWe-Ah2USCh-atLVbFCLn4tOgLS1rSLd16LLAKnIgD','apple','001391.3bdfcd1596c64910b5a75ed850780fc8.1508','127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 15:08:55',NULL,NULL),(220,92,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImxpbHBybzMwM0BnbWFpbC5jb20iLCJpYXQiOjE3MjY3NzAyNDUsImV4cCI6MTcyNzM3NTA0NSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImxpbHBybzMwM0BnbWFpbC5jb20ifQ.xl2Fhz6PdOLc0k8Fdg7NXqQ-Br1VMCRFdnwHes0YiC8','ios','dQfzoCiPMEW4l3PlqDgJJO:APA91bHrnisRDy0oa6AK_-cIF6kC3OAdll2aAksJuuU9f0u7MFQgVNXw-aHvOLy7lfyZiMoZ67Px3EqYX2mBbUimrnzVqfjSVU8tk6407tY16O_2jblF7HvqD65BEC0C_OwVFSrmZoHl','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 18:24:05',NULL,NULL),(221,92,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImxpbHBybzMwM0BnbWFpbC5jb20iLCJpYXQiOjE3MjY3NzAyNjIsImV4cCI6MTcyNzM3NTA2MiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImxpbHBybzMwM0BnbWFpbC5jb20ifQ.wrhZqweGclUrpd4tmd__he9-XpSP0GTq43xGGVpE2AM','ios','dQfzoCiPMEW4l3PlqDgJJO:APA91bHrnisRDy0oa6AK_-cIF6kC3OAdll2aAksJuuU9f0u7MFQgVNXw-aHvOLy7lfyZiMoZ67Px3EqYX2mBbUimrnzVqfjSVU8tk6407tY16O_2jblF7HvqD65BEC0C_OwVFSrmZoHl','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 18:24:23',NULL,NULL),(222,92,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImxpbHBybzMwM0BnbWFpbC5jb20iLCJpYXQiOjE3MjY3NzAyOTgsImV4cCI6MTcyNzM3NTA5OCwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImxpbHBybzMwM0BnbWFpbC5jb20ifQ.nK3qVOCyH2iF3MY7UupbyJffxS-ZEIBg64vhTO-VVkA','ios','dQfzoCiPMEW4l3PlqDgJJO:APA91bHrnisRDy0oa6AK_-cIF6kC3OAdll2aAksJuuU9f0u7MFQgVNXw-aHvOLy7lfyZiMoZ67Px3EqYX2mBbUimrnzVqfjSVU8tk6407tY16O_2jblF7HvqD65BEC0C_OwVFSrmZoHl','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 18:24:58',NULL,NULL),(223,92,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImxpbHBybzMwM0BnbWFpbC5jb20iLCJpYXQiOjE3MjY3NzAzNzUsImV4cCI6MTcyNzM3NTE3NSwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImxpbHBybzMwM0BnbWFpbC5jb20ifQ.XmoGJhKsNxQMnkC_cbsR0kjPLAzpbrVATUd-7w4dYgM','ios','dQfzoCiPMEW4l3PlqDgJJO:APA91bHrnisRDy0oa6AK_-cIF6kC3OAdll2aAksJuuU9f0u7MFQgVNXw-aHvOLy7lfyZiMoZ67Px3EqYX2mBbUimrnzVqfjSVU8tk6407tY16O_2jblF7HvqD65BEC0C_OwVFSrmZoHl','google','113852894358729461877','127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 18:26:15',NULL,NULL),(224,93,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InIyZGZnNm1kbWNAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2NzcwNjI2LCJleHAiOjE3MjczNzU0MjYsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJyMmRmZzZtZG1jQHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.CsoVwUZoB1FCxmTlOXos9-HWlhX8iYLuGO2EEAxbTNc','ios','cu_W8GUY903JqVN3t92Qop:APA91bHP7K8Nx1Imqb-1vrsl5jtfzq5IUIKRBQ0geqAO2c6Zd7Zia9-79cLG6g0v3bMhK6WPVfdqfKp_GyFIrJZxn_kzu3iptGXj5nAYJaWzQ3MgANKZGF5BrMvk0jjlFhrx2OsOtayR','apple','001964.d7488c95c1f74bbd95ec9403cce1299d.1830','127.0.0.1','Dart/3.3 (dart:io)','2024-09-19 18:30:27',NULL,NULL),(225,14,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InNhbUB5b3BtYWlsLmNvbSIsImlhdCI6MTcyNjgwNDQ1MCwiZXhwIjoxNzI3NDA5MjUwLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoic2FtQHlvcG1haWwuY29tIn0.JHRHMh9SzpDj85M2QpTs3Wa-ZegyzbT2oUc_-1Vk-2k','ios','e179ePElA0PBtWkyoq0fAm:APA91bEcHxfLqZ-heJiqjGkM9u80tn8I_-sgzV4O7TUVBIHDP9aW3jf31eLhdu30JjGfX23m_oFeToG0pURKuy-fRF7k7xgiiFyuLgz__OYUIyCrDEraH6KwIRyqQJFKcsRsmRSkbUWQ','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-20 03:54:11',NULL,NULL),(226,94,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNheWx5bm5keWtlbWEyMTE4QGdtYWlsLmNvbSIsImlhdCI6MTcyNjgyNDMxNywiZXhwIjoxNzI3NDI5MTE3LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2F5bHlubmR5a2VtYTIxMThAZ21haWwuY29tIn0.3ggZ9FHUUHhhoqAlzceCeLpXMbuArtLfZriGL8_gfVo','ios','egZXRNb7OkHevpV51cCf0t:APA91bEjt0UgDEtl7wI6BkoP-chbvRZCsNSynOpBbabkvJsIhhGZhwLUkMGjbPuiTvgfR6Qp6Wb8X8qFY-I-8dZUSt0Cfan0mif4vpo4f0__UOPmMYGfkicZL-FwoAH-nF_LKYuUQkjt','google','105125451770159470344','127.0.0.1','Dart/3.3 (dart:io)','2024-09-20 09:25:18',NULL,NULL),(236,96,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im0ucmFueWEwODE3QGdtYWlsLmNvbSIsImlhdCI6MTcyNjg4MjgyNiwiZXhwIjoxNzI3NDg3NjI2LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoibS5yYW55YTA4MTdAZ21haWwuY29tIn0.KkFgIbn2QrcgM4-MQX8StuCPl4OOGYK3P73KtC5sT34','ios','fSaPvFyB4Ulxtd68pTLyRS:APA91bFtBHLZ4_aTTf0XCyeQJBUCZk9pL93EVvhFO4Bl-RLSdwfHPOoNjlWYCUNxBUqJg5jQv1gJNWEDK1K6gZ9-tstNIfz9bpKfLpXBoznYk3Eba4uVvi54c9PGXXJnPmN-LkTtFgxl','apple','001663.abda2a8a64524bff9e5734482b3265cd.0140','127.0.0.1','Dart/3.3 (dart:io)','2024-09-21 01:40:27',NULL,NULL),(237,97,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImVkbWljazgwQGdtYWlsLmNvbSIsImlhdCI6MTcyNjkyMTYyOSwiZXhwIjoxNzI3NTI2NDI5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiZWRtaWNrODBAZ21haWwuY29tIn0.v21ImdYXz8T52h-GV6tiwpupHOB8FvKYUunOQPL1jm0','ios','dxZRz2TRt0s6kvJKlSg5pn:APA91bE7UFB-NnyzInNldRCrIL0LcAG4Gdi1szZcIV_tCcwvuraKPvaD-7HmuMDGkHE0YLy5KYl22GvcPGQgCmFjQmSl_VttAM-fFI6OmwOBf_YCxLWklBPU56XCZZneqqYmASKB-DML','google','105100236593754184388','127.0.0.1','Dart/3.3 (dart:io)','2024-09-21 12:27:10',NULL,NULL),(238,98,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Imo1cXRzczY3NTRAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2OTQzNTU5LCJleHAiOjE3Mjc1NDgzNTksImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJqNXF0c3M2NzU0QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.j54PVYOUHIIaR3KRX3grFDxPR1XsAmbfsllQqC0TlfU','ios','dIv0fdR-Fk_sqcqbLEPsWv:APA91bHfG8CVVWewxREPMXzwwpwfQnzziHnl6G568NGVK2x2N5IaYceZEizjBhW0kH_U4GfRddDrf8MwQB9xwJH6J-10C4at-WLZ1JzKT9ZVNWapkwbkTi4udcopDxJAFgM-WcmFa-o3','apple','000666.c94b9e5abbea4315a4a11e82be601f32.1832','127.0.0.1','Dart/3.3 (dart:io)','2024-09-21 18:32:40',NULL,NULL),(239,99,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImJlbGxhcm9zZXJhbWlyZXoyMDIyQGljbG91ZC5jb20iLCJpYXQiOjE3MjY5NjYzODcsImV4cCI6MTcyNzU3MTE4NywiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6ImJlbGxhcm9zZXJhbWlyZXoyMDIyQGljbG91ZC5jb20ifQ.4oxHENCKwIvrDZ5gV7kEoYxHPvEAu946ggv27G61ltk','ios','ddfZctnxsUrlkLIfyiBD_l:APA91bFN1nhfwtncFtfi7yfUyOg7rVs46BYoR7p0Qe1IJ-4mKkLDTKP35iaosjlEAIl-WNVtb4P10MU9q-TGGwlC-CflPduSgklfm8_yfnoYigOdCJQdQcHxC0Xp2-nFsTV14HRL0vUr','apple','000965.03bcb2b8b2994df5bf4ec8b7390e41eb.0053','127.0.0.1','Dart/3.3 (dart:io)','2024-09-22 00:53:08',NULL,NULL),(240,100,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InFtcmJwanBxbnhAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI2OTY5MjQzLCJleHAiOjE3Mjc1NzQwNDMsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJxbXJicGpwcW54QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.TZVbLIAHac_uaz0DKLMXNa4bCyH_rlJfMAGXdQjV7OU','ios','cLH4cGmD1EVzoipqqTUCQ1:APA91bGRij5VA-oix1PuTjQoPdkA9H6cNJJSZkPgY7PKLNGW2P26u4hM7FjmMUDCLLVK_WvpcxU6CM-5yVjL7FjMQ-zdi57fN2w5mt3WvqR9ramr-sTcWT7mUe71V-mqPM95xmvR2kdp','apple','000584.cc7b3ad9f8874d47b10436f4eeee0039.0140','127.0.0.1','Dart/3.3 (dart:io)','2024-09-22 01:40:44',NULL,NULL),(241,101,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1hcml0emFmb3NzQGdtYWlsLmNvbSIsImlhdCI6MTcyNzAxNTU5OSwiZXhwIjoxNzI3NjIwMzk5LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoibWFyaXR6YWZvc3NAZ21haWwuY29tIn0.Im7H0ukyysKngyk1oipPm4kfIJYgYYE-PohypeRCOUg','ios','cU812qT6f0_WoYs1mF72ei:APA91bEyL1-v58dsvYH4y08Lh5vWRN-iCyKHeAQPKItloCnqSfwJeHDZ7jEQLAj-XvVYjhNMVGNJFJRkAxf8jJYgPBrz0ZH3HHAeRLpGIgQwdmof_Xmr5ri_v7m6FtLtj6_3pmdF0koW','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-22 14:33:20',NULL,NULL),(242,101,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1hcml0emFmb3NzQGdtYWlsLmNvbSIsImlhdCI6MTcyNzAxNTYxNywiZXhwIjoxNzI3NjIwNDE3LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoibWFyaXR6YWZvc3NAZ21haWwuY29tIn0.E9nuNFDrHP__97ySG1Zfukx_lhvdmqdCyahU5MeTAbY','ios','cU812qT6f0_WoYs1mF72ei:APA91bEyL1-v58dsvYH4y08Lh5vWRN-iCyKHeAQPKItloCnqSfwJeHDZ7jEQLAj-XvVYjhNMVGNJFJRkAxf8jJYgPBrz0ZH3HHAeRLpGIgQwdmof_Xmr5ri_v7m6FtLtj6_3pmdF0koW','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-22 14:33:38',NULL,NULL),(243,102,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImRhdmFudGV5QGdtYWlsLmNvbSIsImlhdCI6MTcyNzA2MDI0MywiZXhwIjoxNzI3NjY1MDQzLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiZGF2YW50ZXlAZ21haWwuY29tIn0.NYXjWtuuNBqKBpVD39Lo1rhjtc6Av2-WumEQieBRKO0','ios','dIAcsnEA709LrdlH-EPqVU:APA91bF-2on2Rom5NI4XGHSCsS5nd9WUb3LRNfJWLUW3OCAffcGe3H_9StUs-CPG4PHbe_YiNehZqeK6Zb6ADeTs7hegOUMu6c4DGG3VfGXHGNfpmxVgo_8hSAxd0UJlLSkka40TB-x7','apple','001881.336d2fd1ae824e00acc34f8f885ae7f5.0257','127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 02:57:24',NULL,NULL),(244,103,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IkNhY3JhZnRvbjAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNzA4OTQ2MiwiZXhwIjoxNzI3Njk0MjYyLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiQ2FjcmFmdG9uMDBAZ21haWwuY29tIn0.OBacUt2THWJf90QBPVBAtI2plze24lUum95nckodhc8','ios','dkHoCltnn069g697BX1LL2:APA91bGW1dIk04PDaC_dXuU6MYwIMoMmrHSNkmuF_-6WYqyM7LtfSloe-ei9tgAO_qbpmK3nfe9M-mJQd2Jn3kB6-Dg9ow8qeyRK_luGByuE5GA0s45w0e7sRc_B-0qUDNRV_LfDZW9U','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 11:04:23',NULL,NULL),(245,103,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhY3JhZnRvbjAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNzA4OTQ4OCwiZXhwIjoxNzI3Njk0Mjg4LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FjcmFmdG9uMDBAZ21haWwuY29tIn0.OlydgiVWHaR8xgAa_d9oR446u8cU_aS5o8s1T-N63Dc','ios','dkHoCltnn069g697BX1LL2:APA91bGW1dIk04PDaC_dXuU6MYwIMoMmrHSNkmuF_-6WYqyM7LtfSloe-ei9tgAO_qbpmK3nfe9M-mJQd2Jn3kB6-Dg9ow8qeyRK_luGByuE5GA0s45w0e7sRc_B-0qUDNRV_LfDZW9U','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 11:04:49',NULL,NULL),(246,103,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhY3JhZnRvbjAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNzA4OTU1MiwiZXhwIjoxNzI3Njk0MzUyLCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FjcmFmdG9uMDBAZ21haWwuY29tIn0.tHjv4FXz_LYuI8Dfm1RUhTmmVbx1eWj0oPH5C7ij7PM','ios','dkHoCltnn069g697BX1LL2:APA91bGW1dIk04PDaC_dXuU6MYwIMoMmrHSNkmuF_-6WYqyM7LtfSloe-ei9tgAO_qbpmK3nfe9M-mJQd2Jn3kB6-Dg9ow8qeyRK_luGByuE5GA0s45w0e7sRc_B-0qUDNRV_LfDZW9U','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 11:05:53',NULL,NULL),(247,103,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhY3JhZnRvbjAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNzA4OTYwNiwiZXhwIjoxNzI3Njk0NDA2LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FjcmFmdG9uMDBAZ21haWwuY29tIn0.zJhuK4cqK787-rSdvmBpU_uM9t1OCChh3I0dM6_Kj1E','ios','dkHoCltnn069g697BX1LL2:APA91bGW1dIk04PDaC_dXuU6MYwIMoMmrHSNkmuF_-6WYqyM7LtfSloe-ei9tgAO_qbpmK3nfe9M-mJQd2Jn3kB6-Dg9ow8qeyRK_luGByuE5GA0s45w0e7sRc_B-0qUDNRV_LfDZW9U','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 11:06:46',NULL,NULL),(248,103,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImNhY3JhZnRvbjAwQGdtYWlsLmNvbSIsImlhdCI6MTcyNzA5MDE2NywiZXhwIjoxNzI3Njk0OTY3LCJpc3MiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsInN1YiI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwianRpIjoiY2FjcmFmdG9uMDBAZ21haWwuY29tIn0.qYQlU9VSMWMgX7dwlKpgIlFCQh0PMHMzSAIzWlEQwXY','ios','dkHoCltnn069g697BX1LL2:APA91bGW1dIk04PDaC_dXuU6MYwIMoMmrHSNkmuF_-6WYqyM7LtfSloe-ei9tgAO_qbpmK3nfe9M-mJQd2Jn3kB6-Dg9ow8qeyRK_luGByuE5GA0s45w0e7sRc_B-0qUDNRV_LfDZW9U','custom',NULL,'127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 11:16:08',NULL,NULL),(249,104,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6Im1hZGlzb25taWxsZXI1OUB5YWhvby5jb20iLCJpYXQiOjE3MjcwOTA0MDYsImV4cCI6MTcyNzY5NTIwNiwiaXNzIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJzdWIiOiI1OTIwMDc0OC0zNmZjLTI3NDQtMzU1LThjMTI4MWY3ZmNkMiIsImp0aSI6Im1hZGlzb25taWxsZXI1OUB5YWhvby5jb20ifQ.E2tsiQwjN5kEg9Tfwc8hUt8T58-vBfrUROtucXEyuvs','ios','fHszLNW2hEnLp3B6ItUxHM:APA91bGR9c5HJ6kNqELErxDmEF9j7JyY2qv55uR8jC3tSmFlHZLwVojoVmCcPH4AAscsdmJwMsWxg4sKb_QPT-diUqYpltMlV04bax54-ERBny1jhjatxj__bqMb5PfDqGy_waCAqabM','apple','000591.321fee4fc246431ab5cde1934e30b036.1120','127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 11:20:07',NULL,NULL),(250,105,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRxYzc5N253NXlAcHJpdmF0ZXJlbGF5LmFwcGxlaWQuY29tIiwiaWF0IjoxNzI3MDkwNDM3LCJleHAiOjE3Mjc2OTUyMzcsImlzcyI6IjU5MjAwNzQ4LTM2ZmMtMjc0NC0zNTUtOGMxMjgxZjdmY2QyIiwic3ViIjoiNTkyMDA3NDgtMzZmYy0yNzQ0LTM1NS04YzEyODFmN2ZjZDIiLCJqdGkiOiJ0cWM3OTdudzV5QHByaXZhdGVyZWxheS5hcHBsZWlkLmNvbSJ9.MLuZIFdJb6f7aamiA4kVq45VDAE-wTtQLCHRqY7a7nE','ios','dkHoCltnn069g697BX1LL2:APA91bGW1dIk04PDaC_dXuU6MYwIMoMmrHSNkmuF_-6WYqyM7LtfSloe-ei9tgAO_qbpmK3nfe9M-mJQd2Jn3kB6-Dg9ow8qeyRK_luGByuE5GA0s45w0e7sRc_B-0qUDNRV_LfDZW9U','apple','000397.8ba09a53cc634fae812acdc734d8bab3.1120','127.0.0.1','Dart/3.3 (dart:io)','2024-09-23 11:20:38',NULL,NULL);
/*!40000 ALTER TABLE `user_api_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_groups`
--

DROP TABLE IF EXISTS `user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_groups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `slug` varchar(100) NOT NULL,
  `description` varchar(255) DEFAULT NULL,
  `type` enum('admin','user') NOT NULL DEFAULT 'user',
  `is_super_admin` enum('1','0') NOT NULL DEFAULT '0',
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_groups_title_unique` (`title`),
  UNIQUE KEY `user_groups_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_groups`
--

LOCK TABLES `user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
INSERT INTO `user_groups` VALUES (1,'Super Admin','super-admin',NULL,'admin','1','1','2024-07-26 10:17:43',NULL,NULL),(2,'Admin','admin',NULL,'admin','0','1','2024-07-26 10:17:43',NULL,NULL),(3,'App User','app-user',NULL,'user','0','1','2024-07-26 10:17:43',NULL,NULL);
/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_subscriptions`
--

DROP TABLE IF EXISTS `user_subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_subscriptions` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `user_id` int unsigned NOT NULL,
  `subscription_package_id` int unsigned NOT NULL,
  `gateway_transaction_id` varchar(255) NOT NULL,
  `gateway_original_transaction_id` varchar(255) NOT NULL,
  `subscription_type` varchar(255) NOT NULL,
  `subscription_expiry_date` date NOT NULL,
  `is_trial_period` enum('0','1') NOT NULL,
  `device_type` varchar(255) NOT NULL,
  `status` enum('active','expired','cancel') NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_subscriptions_slug_unique` (`slug`),
  KEY `user_subscriptions_user_id_foreign` (`user_id`),
  KEY `user_subscriptions_subscription_package_id_foreign` (`subscription_package_id`),
  CONSTRAINT `user_subscriptions_subscription_package_id_foreign` FOREIGN KEY (`subscription_package_id`) REFERENCES `subscription_packages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `user_subscriptions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=107 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_subscriptions`
--

LOCK TABLES `user_subscriptions` WRITE;
/*!40000 ALTER TABLE `user_subscriptions` DISABLE KEYS */;
INSERT INTO `user_subscriptions` VALUES (1,'cjujadlz2k2yro',3,4,'0','0','0','2024-07-26','1','android','active','2024-07-26 10:24:50','2024-07-26 10:24:50',NULL),(2,'cjujb3lz2kqmkr',4,4,'0','0','0','2024-07-26','1','android','active','2024-07-26 10:43:14','2024-07-26 10:43:14',NULL),(3,'cjujcxlz2kvppb',5,4,'0','0','0','2024-07-26','1','android','active','2024-07-26 10:47:12','2024-07-26 10:47:12',NULL),(4,'cjujr0lz2kwxsb',6,4,'0','0','0','2024-07-26','1','android','active','2024-07-26 10:48:09','2024-07-26 10:48:09',NULL),(6,'cjujrxlz2nfhi7',8,4,'0','0','0','2024-07-26','1','ios','active','2024-07-26 11:58:33','2024-07-26 11:58:33',NULL),(7,'cjujr2lz2o0jq9',9,4,'0','0','0','2024-07-26','1','ios','expired','2024-07-26 12:14:56','2024-07-30 09:16:08',NULL),(8,'cjujtklz2obkj3',10,4,'0','0','0','2024-07-26','1','android','active','2024-07-26 12:23:30','2024-07-26 12:23:30',NULL),(9,'cjumevlz7564su',11,4,'0','0','0','2024-07-29','1','ios','active','2024-07-29 15:26:15','2024-07-29 15:26:15',NULL),(11,'cjuninlz87e0q9',9,1,'GPA.3313-0380-0961-43335','polndcdjkiebjkmbmiabmjoe.AO-J1OxfnkQY9sBQ1IT8-2-l9LbO9rlTgSwyzR0lVfzL778caGitV1K-535cPutxddiu-M8gk1YJKTTQ9-zAYU_vgjN9Q7At63s14fCKioV39jiFjFeaAUY','monthly_subscription','2024-08-30','0','android','active','2024-07-30 09:16:08','2024-07-30 09:16:08',NULL),(12,'cjuzjdlzi81mfl',13,4,'0','0','0','2024-08-06','1','android','active','2024-08-06 09:32:11','2024-08-06 09:32:11',NULL),(13,'cju10ytlzii31sw',14,4,'0','0','0','2024-08-06','1','android','active','2024-08-06 14:13:14','2024-08-06 14:13:14',NULL),(14,'cju11vqlzjmchcx',15,4,'0','0','0','2024-08-07','1','ios','active','2024-08-07 09:00:19','2024-08-07 09:00:19',NULL),(15,'cju11xklzjo5wkf',16,4,'0','0','0','2024-08-07','1','android','active','2024-08-07 09:51:11','2024-08-07 09:51:11',NULL),(16,'cju11vrlzjonnf0',17,4,'0','0','0','2024-08-07','1','ios','active','2024-08-07 10:04:59','2024-08-07 10:04:59',NULL),(18,'cju12t7lzl1i8md',19,4,'0','0','0','2024-08-08','1','ios','active','2024-08-08 08:52:28','2024-08-08 08:52:28',NULL),(19,'cju12t8lzl2x0sy',20,4,'0','0','0','2024-08-08','1','ios','active','2024-08-08 09:31:57','2024-08-08 09:31:57',NULL),(20,'cju12t8lzl32wg6',21,4,'0','0','0','2024-08-08','1','android','active','2024-08-08 09:36:31','2024-08-08 09:36:31',NULL),(21,'cju13jalzl6rlm9',22,4,'0','0','0','2024-08-08','1','ios','expired','2024-08-08 11:19:42','2024-08-22 21:35:01',NULL),(22,'cju13lulzldifzb',23,4,'0','0','0','2024-08-08','1','android','active','2024-08-08 14:28:32','2024-08-08 14:28:32',NULL),(23,'cju13jalzldt6hr',24,4,'0','0','0','2024-08-08','1','ios','expired','2024-08-08 14:36:53','2024-08-08 14:39:03',NULL),(24,'cju13jblzldvy6m',24,1,'2000000680470681','2000000680470681','monthly_subscription','2024-09-08','0','ios','active','2024-08-08 14:39:03','2024-08-08 14:39:03',NULL),(25,'cju14dblzmpycb6',25,4,'0','0','0','2024-08-09','1','android','active','2024-08-09 13:04:36','2024-08-09 13:04:36',NULL),(26,'cju5mklzv79yk1',26,4,'0','0','0','2024-08-15','1','android','active','2024-08-15 11:31:41','2024-08-15 11:31:41',NULL),(27,'cju5mklzvcf337',27,4,'0','0','0','2024-08-15','1','ios','active','2024-08-15 13:55:38','2024-08-15 13:55:38',NULL),(28,'cju5mklzveyywp',28,4,'0','0','0','2024-08-15','1','ios','active','2024-08-15 15:07:05','2024-08-15 15:07:05',NULL),(29,'cju5mklzw476tx',29,4,'0','0','0','2024-08-16','1','ios','active','2024-08-16 02:53:19','2024-08-16 02:53:19',NULL),(30,'cju5mklzwevfqy',30,4,'0','0','0','2024-08-16','1','android','active','2024-08-16 07:52:06','2024-08-16 07:52:06',NULL),(31,'cju5mklzwp5pvh',31,4,'0','0','0','2024-08-16','1','android','active','2024-08-16 12:40:02','2024-08-16 12:40:02',NULL),(32,'cju5mkm007iiwp',32,4,'0','0','0','2024-08-18','1','android','active','2024-08-18 23:37:11','2024-08-18 23:37:11',NULL),(33,'cju5mkm00t0nsy',33,4,'0','0','0','2024-08-19','1','ios','active','2024-08-19 09:39:09','2024-08-19 09:39:09',NULL),(34,'cju5mkm00xr9qe',34,4,'0','0','0','2024-08-19','1','android','active','2024-08-19 11:51:49','2024-08-19 11:51:49',NULL),(35,'cju5mkm02pfb6o',35,4,'0','0','0','2024-08-20','1','android','active','2024-08-20 17:34:07','2024-08-20 17:34:07',NULL),(36,'cju5mkm02rh142',36,4,'0','0','0','2024-08-20','1','ios','active','2024-08-20 18:31:26','2024-08-20 18:31:26',NULL),(37,'cju5mkm0389o03',37,4,'0','0','0','2024-08-21','1','ios','active','2024-08-21 02:21:36','2024-08-21 02:21:36',NULL),(38,'cju5mkm05s8mx7',38,4,'0','0','0','2024-08-22','1','ios','active','2024-08-22 21:16:13','2024-08-22 21:16:13',NULL),(39,'cju5mkm05swth4',22,1,'210001842101505','210001842101505','monthly_subscription','2024-09-22','0','ios','active','2024-08-22 21:35:01','2024-08-22 21:35:01',NULL),(40,'cju5mkm0dz8ef3',39,4,'0','0','0','2024-08-28','1','ios','active','2024-08-28 14:54:08','2024-08-28 14:54:08',NULL),(41,'cju5mkm0ftpg60',40,4,'0','0','0','2024-08-29','1','ios','active','2024-08-29 21:54:58','2024-08-29 21:54:58',NULL),(42,'cju5mkm0gndas5',41,4,'0','0','0','2024-08-30','1','ios','active','2024-08-30 11:45:20','2024-08-30 11:45:20',NULL),(43,'cju2gddm0kdj9mh',42,4,'0','0','0','2024-09-02','1','ios','active','2024-09-02 02:21:07','2024-09-02 02:21:07',NULL),(44,'cju2gddm0knyzj4',43,4,'0','0','0','2024-09-02','1','android','active','2024-09-02 07:13:17','2024-09-02 07:13:17',NULL),(45,'cju2gddm0kox7o0',44,4,'0','0','0','2024-09-02','1','ios','active','2024-09-02 07:39:54','2024-09-02 07:39:54',NULL),(46,'cju2gddm0lmyr2i',45,4,'0','0','0','2024-09-02','1','ios','active','2024-09-02 23:32:52','2024-09-02 23:32:52',NULL),(48,'cju2gddm0m8nuze',47,4,'0','0','0','2024-09-03','1','ios','active','2024-09-03 09:40:16','2024-09-03 09:40:16',NULL),(49,'cju2gddm0mc1o8z',48,4,'0','0','0','2024-09-03','1','android','active','2024-09-03 11:14:59','2024-09-03 11:14:59',NULL),(50,'cju2gddm0mchs5t',49,4,'0','0','0','2024-09-03','1','android','active','2024-09-03 11:27:31','2024-09-03 11:27:31',NULL),(51,'cju2gddm0mr24n5',50,4,'0','0','0','2024-09-03','1','ios','active','2024-09-03 18:15:14','2024-09-03 18:15:14',NULL),(52,'cju2gddm0msj35a',51,4,'0','0','0','2024-09-03','1','ios','active','2024-09-03 18:56:25','2024-09-03 18:56:25',NULL),(53,'cju2gddm0oopved',52,4,'0','0','0','2024-09-05','1','ios','active','2024-09-05 02:45:16','2024-09-05 02:45:16',NULL),(54,'cju2gddm0q6h5gc',53,4,'0','0','0','2024-09-06','1','ios','active','2024-09-06 03:50:08','2024-09-06 03:50:08',NULL),(55,'cju2gddm0s3ovvh',54,4,'0','0','0','2024-09-07','1','ios','active','2024-09-07 12:07:42','2024-09-07 12:07:42',NULL),(56,'cju2gddm0sde5g2',55,4,'0','0','0','2024-09-07','1','android','active','2024-09-07 16:39:18','2024-09-07 16:39:18',NULL),(57,'cju2gddm0sn3gbn',56,4,'0','0','0','2024-09-07','1','ios','active','2024-09-07 21:10:55','2024-09-07 21:10:55',NULL),(58,'cju2gddm0u0xixi',57,4,'0','0','0','2024-09-08','1','ios','active','2024-09-08 20:25:59','2024-09-08 20:25:59',NULL),(59,'cju2gddm0uvs578',58,4,'0','0','0','2024-09-09','1','ios','active','2024-09-09 10:49:36','2024-09-09 10:49:36',NULL),(61,'cju3a3fm0x9856v',60,4,'0','0','0','2024-09-11','1','ios','active','2024-09-11 02:41:30','2024-09-11 02:41:30',NULL),(62,'cju3a3fm0xargk8',61,4,'0','0','0','2024-09-11','1','ios','active','2024-09-11 03:24:31','2024-09-11 03:24:31',NULL),(63,'cju3a3fm0xpqmt6',62,4,'0','0','0','2024-09-11','1','android','active','2024-09-11 10:23:46','2024-09-11 10:23:46',NULL),(64,'cju3a3fm0xq2wyi',63,4,'0','0','0','2024-09-11','1','ios','active','2024-09-11 10:33:19','2024-09-11 10:33:19',NULL),(65,'cju3a3fm0xqoqny',64,4,'0','0','0','2024-09-11','1','ios','active','2024-09-11 10:50:18','2024-09-11 10:50:18',NULL),(67,'cju3a3fm0ym7ofo',66,4,'0','0','0','2024-09-12','1','ios','active','2024-09-12 01:32:49','2024-09-12 01:32:49',NULL),(68,'cju3a3fm0yntn0j',67,4,'0','0','0','2024-09-12','1','ios','active','2024-09-12 02:17:54','2024-09-12 02:17:54',NULL),(69,'cju3a3fm103ucjq',68,4,'0','0','0','2024-09-13','1','ios','active','2024-09-13 02:34:07','2024-09-13 02:34:07',NULL),(70,'cju3a3fm10qjac0',69,4,'0','0','0','2024-09-13','1','android','active','2024-09-13 13:09:22','2024-09-13 13:09:22',NULL),(71,'cju3a3fm11iy8t3',70,4,'0','0','0','2024-09-14','1','ios','active','2024-09-14 02:24:49','2024-09-14 02:24:49',NULL),(72,'cju3a3fm11qepbm',71,4,'0','0','0','2024-09-14','1','ios','active','2024-09-14 05:53:34','2024-09-14 05:53:34',NULL),(73,'cju3a3fm120mey3',72,4,'0','0','0','2024-09-14','1','ios','active','2024-09-14 10:39:30','2024-09-14 10:39:30',NULL),(74,'cju3a3fm12m6hnv',73,4,'0','0','0','2024-09-14','1','ios','active','2024-09-14 20:42:59','2024-09-14 20:42:59',NULL),(75,'cju3a3fm12rzai0',74,4,'0','0','0','2024-09-14','1','ios','active','2024-09-14 23:25:21','2024-09-14 23:25:21',NULL),(76,'cju3a3fm13zle67',75,4,'0','0','0','2024-09-15','1','ios','active','2024-09-15 19:46:15','2024-09-15 19:46:15',NULL),(78,'cju44p8m151y5ti',77,4,'0','0','0','2024-09-16','1','ios','active','2024-09-16 13:39:56','2024-09-16 13:39:56',NULL),(79,'cju44p8m15g6uef',78,4,'0','0','0','2024-09-16','1','ios','active','2024-09-16 20:18:36','2024-09-16 20:18:36',NULL),(80,'cju44p8m15srham',79,4,'0','0','0','2024-09-17','1','ios','active','2024-09-17 02:10:34','2024-09-17 02:10:34',NULL),(81,'cju44p8m15uqvgw',80,4,'0','0','0','2024-09-17','1','ios','active','2024-09-17 03:06:05','2024-09-17 03:06:05',NULL),(82,'cju44p8m15uwlop',81,4,'0','0','0','2024-09-17','1','ios','active','2024-09-17 03:10:32','2024-09-17 03:10:32',NULL),(83,'cju48lvm16did2h',82,4,'0','0','0','2024-09-24','1','android','active','2024-09-17 11:51:21','2024-09-17 11:51:21',NULL),(84,'cju48qvm17bnfw5',83,4,'0','0','0','2024-09-25','1','ios','active','2024-09-18 03:47:05','2024-09-18 03:47:05',NULL),(85,'cju48qvm17dqt29',84,4,'0','0','0','2024-09-25','1','ios','active','2024-09-18 04:45:41','2024-09-18 04:45:41',NULL),(86,'cju4b8xm17t722p',85,4,'0','0','0','2024-09-25','1','ios','active','2024-09-18 11:58:13','2024-09-18 11:58:13',NULL),(87,'cju4btpm17wop8d',86,4,'0','0','0','2024-09-25','1','ios','active','2024-09-18 13:35:55','2024-09-18 13:35:55',NULL),(88,'cju4btpm184xpka',87,4,'0','0','0','2024-09-25','1','ios','active','2024-09-18 17:26:53','2024-09-18 17:26:53',NULL),(89,'cju4btpm18n9rmh',88,4,'0','0','0','2024-09-26','1','ios','active','2024-09-19 02:00:08','2024-09-19 02:00:08',NULL),(90,'cju4oynm1951dba',89,4,'0','0','0','2024-09-26','1','android','active','2024-09-19 10:17:30','2024-09-19 10:17:30',NULL),(91,'cju4oynm19aolie',90,4,'0','0','0','2024-09-26','1','ios','active','2024-09-19 12:55:31','2024-09-19 12:55:31',NULL),(92,'cju4oynm19fg4u8',91,4,'0','0','0','2024-09-26','1','ios','active','2024-09-19 15:08:55','2024-09-19 15:08:55',NULL),(93,'cju4oynm19mf4bj',92,4,'0','0','0','2024-09-26','1','ios','active','2024-09-19 18:24:05','2024-09-19 18:24:05',NULL),(94,'cju4oynm19mnatu',93,4,'0','0','0','2024-09-26','1','ios','active','2024-09-19 18:30:26','2024-09-19 18:30:26',NULL),(95,'cju4oynm1aim3cz',94,4,'0','0','0','2024-09-27','1','ios','active','2024-09-20 09:25:18','2024-09-20 09:25:18',NULL),(96,'cju4oynm1asuq4b',95,4,'0','0','0','2024-09-27','1','ios','active','2024-09-20 14:11:56','2024-09-20 14:11:56',NULL),(97,'cju4oynm1bhg52p',96,4,'0','0','0','2024-09-28','1','ios','active','2024-09-21 01:40:26','2024-09-21 01:40:26',NULL),(98,'cju4oynm1c4jtmo',97,4,'0','0','0','2024-09-28','1','ios','active','2024-09-21 12:27:09','2024-09-21 12:27:09',NULL),(99,'cju4oynm1chluth',98,4,'0','0','0','2024-09-28','1','ios','active','2024-09-21 18:32:39','2024-09-21 18:32:39',NULL),(100,'cju4oynm1cv7582',99,4,'0','0','0','2024-09-29','1','ios','active','2024-09-22 00:53:08','2024-09-22 00:53:08',NULL),(101,'cju4oynm1cwwcnu',100,4,'0','0','0','2024-09-29','1','ios','active','2024-09-22 01:40:43','2024-09-22 01:40:43',NULL),(102,'cju4oynm1dohxca',101,4,'0','0','0','2024-09-29','1','ios','active','2024-09-22 14:33:19','2024-09-22 14:33:19',NULL),(103,'cju4oynm1ef2sw4',102,4,'0','0','0','2024-09-30','1','ios','active','2024-09-23 02:57:23','2024-09-23 02:57:23',NULL),(104,'cju4oynm1ewh24f',103,4,'0','0','0','2024-09-30','1','ios','active','2024-09-23 11:04:22','2024-09-23 11:04:22',NULL),(105,'cju4oynm1ex1apg',104,4,'0','0','0','2024-09-30','1','ios','active','2024-09-23 11:20:06','2024-09-23 11:20:06',NULL),(106,'cju4oynm1ex1yi9',105,4,'0','0','0','2024-09-30','1','ios','active','2024-09-23 11:20:37','2024-09-23 11:20:37',NULL);
/*!40000 ALTER TABLE `user_subscriptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_group_id` int unsigned DEFAULT NULL,
  `user_type` enum('admin','user') NOT NULL DEFAULT 'user',
  `name` varchar(150) NOT NULL,
  `username` varchar(150) NOT NULL,
  `slug` varchar(150) NOT NULL,
  `email` varchar(150) DEFAULT NULL,
  `mobile_no` varchar(100) DEFAULT NULL,
  `password` varchar(255) NOT NULL,
  `image_url` text,
  `blur_image` varchar(200) DEFAULT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `is_email_verify` enum('1','0') NOT NULL DEFAULT '0',
  `email_verify_at` timestamp NULL DEFAULT NULL,
  `is_mobile_verify` enum('1','0') DEFAULT '1',
  `mobile_verify_at` timestamp NULL DEFAULT NULL,
  `platform_type` enum('custom','facebook','google','apple') DEFAULT 'custom',
  `platform_id` varchar(255) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zipcode` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `latitude` varchar(100) DEFAULT NULL,
  `longitude` varchar(100) DEFAULT NULL,
  `online_status` enum('1','0') NOT NULL DEFAULT '0',
  `mobile_otp` varchar(100) DEFAULT NULL,
  `email_otp` varchar(100) DEFAULT NULL,
  `is_second_launch` int NOT NULL DEFAULT '0',
  `subscription_expiry_date` date DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_username_unique` (`username`),
  UNIQUE KEY `users_slug_unique` (`slug`),
  UNIQUE KEY `users_email_unique` (`email`),
  UNIQUE KEY `users_mobile_no_unique` (`mobile_no`),
  KEY `users_user_group_id_foreign` (`user_group_id`),
  KEY `users_name_index` (`name`),
  CONSTRAINT `users_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=106 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,1,'admin','RetroCube','retrocube','retrocube','admin@retrocube.com','1-8882051816','$2a$10$SZIoEUqO7Br6sg60lV0zL.DLBK28Moa4ppXdidfxSIrqGknrdoMLy',NULL,NULL,'1','1','2024-07-26 10:17:43','1','2024-07-26 10:17:43','custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,0,NULL,'2024-07-26 10:17:43',NULL,NULL),(2,2,'admin','Kingdom Couples Team','admin','admin','support@kingdomtruth.app','1-8882051817','$2a$10$K7JH6LQpPHYDWlPG2V7eFetp.nAbduQDbaOERq0M0Dr9AJdVp/bOu','user/1724455473494.png',NULL,'1','1','2024-07-26 10:17:43','1','2024-07-26 10:17:43','custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,0,NULL,'2024-07-26 10:17:43','2024-08-23 23:24:33',NULL),(3,3,'user','Johnc','johnc','johnc','asd@yopmail.com','+1-2023698756','$2a$10$qA46LQBAgPVnh/TD0Oxey.ZvCHWhUJpbJMLk2TFWmG2lgCZXFrMXC','user/1721989490788.jpeg',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-07-26','2024-07-26 10:24:50','2024-07-26 10:25:06',NULL),(4,3,'user','elan','elan','elan','elan@yopmail.com','92-32427453009','$2a$10$ySWJQfqInjIh/rUKfLvxCOtfa.33sK/7oRT1nzr4lE1kKM1WKU4A.',NULL,NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,0,'2024-07-26','2024-07-26 10:43:14','2024-07-26 10:43:14',NULL),(5,3,'user','sara','sara','sara','sara@yopmail.com','1-32427453011','$2a$10$yzt.VhzY0gptA4HYKIu1NeU11UzXtMnZrXFc70c13ptrZlzetjrG6',NULL,NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,0,'2024-07-26','2024-07-26 10:47:12','2024-07-26 10:47:12',NULL),(6,3,'user','lisa','lisa','lisa','lisa@yopmail.com','1-32427453012','$2a$10$pXLeojFuI11Jb1yexruymeQkCz/wm3n1wR2ikoq.pIyaH34uW30ie',NULL,NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,0,'2024-07-26','2024-07-26 10:48:09','2024-07-26 10:48:09',NULL),(8,3,'user','Tester 002','tester-002','tester-002','tester2019002@gmail.com',NULL,'$2a$10$DXevqj679FDFbL9VvOOWYueCiGwnwxYj29F07gW.976vCcHfUQQyK','https://lh3.googleusercontent.com/a/ACg8ocIxAih7_Z7jIOs2cSNfuIAaTphnIufzLl_Ap7oOiQyceKWX52GQ=s1337',NULL,'1','1','2024-07-26 11:58:34','1',NULL,'google','113235041818902274129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-07-26','2024-07-26 11:58:33','2024-07-26 11:58:33',NULL),(9,3,'user','Alex','alex','alex','alex@yopmail.com','+1-369258147','$2a$10$lP1ZOYyhKDBrC35D0H5HdOpsmF2a4RMYWyTvSPdUjA6UrG9yPc9DG','user/1721996096459.jpeg',NULL,'1','1','2024-07-26 12:15:11','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-30','2024-07-26 12:14:56','2024-07-26 12:15:24',NULL),(10,3,'user','User 1','user-1','user-1','user1@yopmail.com','+1-2099216621','$2a$10$1WpWrlfyxoLjXbG7ICH0B.PmZq96BeZzDnKopOGDgoVKd.7VNIP/e','user/1721996610713.png',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-07-26','2024-07-26 12:23:30','2024-08-01 10:13:30',NULL),(11,3,'user','Jack Turner','jack-turner','jack-turner','tester2019001@gmail.com',NULL,'$2a$10$TQl.dfM.MqKWt6f.ul0vIubgSukRyyNF9vzV2la8GZsogwifwmkQm','https://lh3.googleusercontent.com/a/ACg8ocJlcE366HQe6omFqVGwUzO1DpOOS9c_8tb7i13EU0Ag3XudDwFV=s1337',NULL,'1','1','2024-07-29 15:26:15','1',NULL,'google','102998899681570649958',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-07-29','2024-07-29 15:26:15','2024-07-31 13:28:18',NULL),(13,3,'user','User 2','user-2','user-2','user2@yopmail.com','+1-2099216622','$2a$10$SCnkLf3pw.ucJVU0yEWMF.dWvK3q/nHgdypwQxxadm1rg/dFQdOi6','user/1722936731560.png',NULL,'1','1','2024-08-06 10:37:24','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-06','2024-08-06 09:32:11','2024-08-06 10:37:53',NULL),(14,3,'user','Sammy','sam','sam','sam@yopmail.com','+1-2021574986','$2a$10$QnXQJ3tQgUfwsQ1wiGhALeXKsJ/TMDddz6T/lRo7FJZ2TJjKLEkmm','user/1722953594316.jpeg',NULL,'1','1','2024-08-06 14:13:27','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-06','2024-08-06 14:13:14','2024-08-06 14:14:05',NULL),(15,3,'user','Matty','matt','matt','matt@yopmail.com','+1-2024578913','$2a$10$RqZVLZgPmpshcPsA7NCmJeopLEJV/plOS6AovgwmyEVz/wAeNQO0a','user/1723021434897.jpeg',NULL,'1','1','2024-08-07 09:00:30','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-07','2024-08-07 09:00:19','2024-08-07 09:03:54',NULL),(16,3,'user','null','null','null','mirandarivera.40248@gmail.com',NULL,'$2a$10$07omMpH8Yv.J/AtbKOuPTu2mKhGp3mmMDLCG4W/.yH7z6y8esyJz.',NULL,NULL,'1','1','2024-08-07 09:51:11','1',NULL,'google','101701372482312109027',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-07','2024-08-07 09:51:11','2024-08-07 09:51:11',NULL),(17,3,'user','Jim Barnard','jim-barnard','jim-barnard','ws4qtkj4pg@privaterelay.appleid.com',NULL,'$2a$10$apNsCDQPEGRcFCayvuuzbOlyZXrpchm.Wys/DsL4sZgGi2R8fbLY6',NULL,NULL,'1','1','2024-08-07 10:04:59','1',NULL,'apple','000658.8cb0a306db214703b358760105827cee.1004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-07','2024-08-07 10:04:59','2024-08-07 10:04:59',NULL),(19,3,'user','Retro Cube','retro-cube','retro-cube','tp2pwx757n@privaterelay.appleid.com',NULL,'$2a$10$S6AJqyl9W9YHtJPvzaRTCOp.A6BjnReoDLQ/lgWiGyNzIl4D9rqC6',NULL,NULL,'1','1','2024-08-08 08:52:28','1',NULL,'apple','001046.4af7c99537154e2e87bbc5b57a5218eb.0749',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-08','2024-08-08 08:52:28','2024-08-08 08:52:28',NULL),(20,3,'user','James Mccullough','james-mccullough','james-mccullough','6hg849cf4b@privaterelay.appleid.com',NULL,'$2a$10$.FkuM8qkHrLtue2Sdy3KT.x0mILVygxE7/B8bdxPM4l/2FgS4fude',NULL,NULL,'1','1','2024-08-08 09:31:57','1',NULL,'apple','000244.7850a37711314a8f84c61d254bbe51e0.0931',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-08','2024-08-08 09:31:57','2024-08-08 09:31:57',NULL),(21,3,'user','Slick','slick','slick','slick@yopmail.com','+1-2028147453','$2a$10$n2.xPubr4/b7KGObMJlK6uFOHyYrcUMZuAWLuI0OzQ5e1bpPhInOO','user/1723109791666.jpeg',NULL,'1','1','2024-08-08 09:38:28','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-08','2024-08-08 09:36:31','2024-08-08 09:38:32',NULL),(22,3,'user','Melissa Johnson','melissa-johnson','melissa-johnson','melissa.johnson1185@gmail.com',NULL,'$2a$10$YcMqVBJmLS96f.6RvyhQf.mOEhvzOtUWdAH2o0ANxrlX2k9QLZK.y','https://lh3.googleusercontent.com/a/ACg8ocLgvJbdijPmtLpv9ppDJVOIDaDThRlhbWQQxoGsrVwCboK5pso=s1337',NULL,'1','1','2024-08-08 11:19:43','1',NULL,'google','107330819474683324005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-22','2024-08-08 11:19:42','2024-08-08 11:19:42',NULL),(23,3,'user','Hasnain Shamsi','hasnain-shamsi','hasnain-shamsi','hasnainshamsi.61@gmail.com',NULL,'$2a$10$6NJ5j/ZoCGVXUwZs3S4noO6gzpcUGFhj282g2/sh1DeKttsdJzlzq','https://lh3.googleusercontent.com/a/ACg8ocLMF2Haqu-IBbcvOZJKmq27ZbD14bMdntf_2H-e5zFF-QP4dTF4',NULL,'1','1','2024-08-08 14:28:33','1',NULL,'google','115087476967729095767',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-08','2024-08-08 14:28:32','2024-08-08 14:28:33',NULL),(24,3,'user','Apple John','apple-john','apple-john','gfxt8g6jn5@privaterelay.appleid.com',NULL,'$2a$10$WgGfBqDGChm/LIsHzIw.VuP9HZTxewwpgHg1/oLM2faLztVSTS8mq',NULL,NULL,'1','1','2024-08-08 14:36:54','1',NULL,'apple','000712.01b4f8b01d8045a48a4d6c1ed9f5d1d7.1436',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-08','2024-08-08 14:36:53','2024-08-08 14:36:53',NULL),(25,3,'user','null','null1771','null1771','alfonsopotter.36007@gmail.com',NULL,'$2a$10$SmaCmr9cZjGQ3ucGgdPY9.dxGkxsozS9661ORK5qFpo9L.CIlRRvG',NULL,NULL,'1','1','2024-08-09 13:04:36','1',NULL,'google','101933697401532763712',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-09','2024-08-09 13:04:36','2024-08-09 13:04:36',NULL),(26,3,'user','null','null1449','null1449','elsiewest.74398@gmail.com',NULL,'$2a$10$WV5xMTjrGzSwRjWWgQOAVelRO1zoHlvVs5fyOEYC5lPYHXqg6Vwcy',NULL,NULL,'1','1','2024-08-15 11:31:41','1',NULL,'google','113516501844005588659',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-15','2024-08-15 11:31:41','2024-08-15 11:31:41',NULL),(27,3,'user','Apple John','apple-john1497','apple-john1497','rnjc6dqcpp@privaterelay.appleid.com',NULL,'$2a$10$7fVNVvrGZBd82oaQhZPDp.UlLgeW8iQEVRv36hn9QXwch4qIjmR4q',NULL,NULL,'1','1','2024-08-15 13:55:38','1',NULL,'apple','000225.f6bd5b1caa6e461bbf069e1635fb282b.1355',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-15','2024-08-15 13:55:38','2024-08-15 13:55:38',NULL),(28,3,'user','Benito Kelly','benito-kelly','benito-kelly','xbwyyjrgpb@privaterelay.appleid.com',NULL,'$2a$10$zFZPT7XZ5XXQr0hOkkXTg.oF9pawQV9ELATwDwIqhPK0PN7tBtX3q',NULL,NULL,'1','1','2024-08-15 15:07:05','1',NULL,'apple','001060.2b726249adcb4e37bda10ee1e9c947bf.1507',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-15','2024-08-15 15:07:05','2024-08-15 15:07:05',NULL),(29,3,'user','courtney burpo','courtney-burpo','courtney-burpo','courtneyraeburpo@gmail.com','+1-4322962939','$2a$10$/kqxgpuU88Vmux4fI/Yx/.kXichp2nWeKwS1krP8pvDEyghaVAJ2q','user/1723776799300.jpeg',NULL,'1','1','2024-08-16 02:54:15','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-16','2024-08-16 02:53:19','2024-08-16 02:54:15',NULL),(30,3,'user','null','null1747','null1747','laritachilton.06972@gmail.com',NULL,'$2a$10$Tk5kRHzbPbUrNK83zkVXpuG7rd1hx3Bul6o4mEsvNsBNM/dA/t8e6',NULL,NULL,'1','1','2024-08-16 07:52:07','1',NULL,'google','107540003595223014666',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-16','2024-08-16 07:52:06','2024-08-16 07:52:06',NULL),(31,3,'user','null','null1783','null1783','florfusco.01625@gmail.com',NULL,'$2a$10$8Mj1KS/1nX3X6t7Y5ocf0.lyLTq42PhmnXZ.nf7.NNkIyj0wQ12sK',NULL,NULL,'1','1','2024-08-16 12:40:03','1',NULL,'google','101352173793744163359',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-16','2024-08-16 12:40:02','2024-08-16 12:40:02',NULL),(32,3,'user','Ash Brown','ash-brown','ash-brown','ashantyb874@gmail.com',NULL,'$2a$10$Ft0mLmdLRIErDO.PXdwAGO9P.cIFQfPmoIL6/UUngrcQYTbfC5Lc6','https://lh3.googleusercontent.com/a/ACg8ocKONNXqmJh_FbtKZsPSeAZJiQkk7C52qqjCpP3aIJ-CtsITjFMP',NULL,'1','1','2024-08-18 23:37:12','1',NULL,'google','117673741780349567321',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-18','2024-08-18 23:37:11','2024-08-18 23:37:11',NULL),(33,3,'user','Clint','clint','clint','clint@yopmail.com','+1-2023645896','$2a$10$fmiW6hWLc/wllohAnWUkUezpOViX1SxNLmtMxwZ4GV06J9U/fPIzy','user/1724060349813.jpeg',NULL,'1','1','2024-08-19 09:39:42','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-19','2024-08-19 09:39:09','2024-08-19 09:39:53',NULL),(34,3,'user','null','null1970','null1970','philnewman.37565@gmail.com',NULL,'$2a$10$LkI0qLC01uJWU2aUbpyq7.zdynRPeHj3zhvPncOThYezF.Tpw11Ci',NULL,NULL,'1','1','2024-08-19 11:51:50','1',NULL,'google','114526306251395251059',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-19','2024-08-19 11:51:49','2024-08-19 11:51:49',NULL),(35,3,'user','Salma j. Silva','salma-j-silva','salma-j-silva','salmajsilva2023@gmail.com',NULL,'$2a$10$tqp/ExgvOrQoUeweGMdOoOirvb5k7lWLvODqKtJrVs1oERubNwHZi','https://lh3.googleusercontent.com/a/ACg8ocJb2Gv3fMEU7rQrMVV2zLCexbK9AcXztOsTngvBWjvmO-Wwvdo',NULL,'1','1','2024-08-20 17:34:07','1',NULL,'google','101088524497410219785',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-20','2024-08-20 17:34:07','2024-08-20 17:34:07',NULL),(36,3,'user','Elizabeth vittini','elizabeth-vittini','elizabeth-vittini','Dollyv2381@gmail.com','+1-4019194406','$2a$10$bIx7idWuD7XTjxMHXb6XwOot3l1vj7wnsypJ/2CENA8cXeoxhvq/G','user/1724179005594.jpeg',NULL,'1','1','2024-08-20 18:31:27','1',NULL,'apple','000705.ad86ec06538b4fd4b180d829e1713677.1831',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-20','2024-08-20 18:31:26','2024-08-20 18:36:45',NULL),(37,3,'user','Osury Castro Aponte','osury-castro-aponte','osury-castro-aponte','k8kg86bsnw@privaterelay.appleid.com',NULL,'$2a$10$vk7Yhy1IZFBS/.PByu7ePewUkNW0n4SL98PpfO.R1lBG1LdomR6ty',NULL,NULL,'1','1','2024-08-21 02:21:37','1',NULL,'apple','001665.65967978fb634b65a4169db07b1be4f6.0221',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-21','2024-08-21 02:21:36','2024-08-21 02:21:36',NULL),(38,3,'user','Giovanni Joseph ','giovanni-joseph-','giovanni-joseph-','giovannijoseph2001@gmail.com','+1-3472855608','$2a$10$ZuMAPyzkQFldP2GONaHb8uNM3jS1xrfBc8RYzHVGCUGwpkezTQAim','user/1724361373180.jpeg',NULL,'1','1','2024-08-22 21:16:55','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-22','2024-08-22 21:16:13','2024-08-22 21:16:55',NULL),(39,3,'user','Sommer Hargrove','sommer-hargrove','sommer-hargrove','4ny4yg6q4j@privaterelay.appleid.com',NULL,'$2a$10$rrnpFFS/HXdKGytAQpj0KO8Fbz6qYRAy2ZBnVyIA2EqLp.47UWALa',NULL,NULL,'1','1','2024-08-28 14:54:09','1',NULL,'apple','000389.53f3270f3364462b9c125768c44614da.1454',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-28','2024-08-28 14:54:08','2024-08-28 14:54:08',NULL),(40,3,'user','Osantae Hector','osantae-hector','osantae-hector','osantaehector@gmail.com',NULL,'$2a$10$Q/YtI/5Ovbb7iGRjBAIgUeNuDYc/0cJ4SBi.2jv3UmYVtX//8tw7S','https://lh3.googleusercontent.com/a/ACg8ocICXQ32msFwTnSRs3WqnwCmGXVlyML03wCiy6BxULL-ruIDMJS2Gg=s1337',NULL,'0','1','2024-08-29 21:54:59','1',NULL,'google','108650844102506040888',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-29','2024-08-29 21:54:58','2024-08-29 21:56:32',NULL),(41,3,'user','Tamekia Shipman','tamekia-shipman','tamekia-shipman','tamekiafails498@gmail.com',NULL,'$2a$10$Iz4wnQoRhnSQgYko8sqPlu2yhJNrzHME0DQ3cYpm.OjmRTWZ7z1Se',NULL,NULL,'1','1','2024-08-30 11:45:21','1',NULL,'apple','000236.34cd7ae5f8a84e8388016c9e0b3db54a.1145',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-08-30','2024-08-30 11:45:20','2024-08-30 11:45:20',NULL),(42,3,'user','Kristin Rivera','kristin-rivera','kristin-rivera','kristinrivera613@gmail.com',NULL,'$2a$10$QuZwT21F5Sa09d0OO5uYLeHkrnQaCH2jUwjRex8PzCEygify0DYvC','https://lh3.googleusercontent.com/a/ACg8ocKkyTLbYePLQ46CeLpJVk4KPMR30Z_K6IYB3N8shm4ZtmxnMg=s1337',NULL,'1','1','2024-09-02 02:21:08','1',NULL,'google','117319336785731881541',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-02','2024-09-02 02:21:07','2024-09-02 02:21:07',NULL),(43,3,'user','null','null1532','null1532','ardithrainey.54339@gmail.com',NULL,'$2a$10$aNVw9o/oWdhLVzizyACAmu6qpL/JRmSdSDKgG1Xx9nwhVVZRP1p4e',NULL,NULL,'1','1','2024-09-02 07:13:17','1',NULL,'google','101241956281012901059',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-02','2024-09-02 07:13:17','2024-09-02 07:13:17',NULL),(44,3,'user','Joe Varner','joe-varner','joe-varner','sjcjqdb2xc@privaterelay.appleid.com',NULL,'$2a$10$Td13jX1fWQvBUGUYihqGx.XWCQaZMy4yn/UeqTuU.2Hv3FlkuF.ZO',NULL,NULL,'1','1','2024-09-02 07:39:54','1',NULL,'apple','000048.1c5ad5da48484f22b6f84ab6aefe1a5f.0739',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-02','2024-09-02 07:39:53','2024-09-02 07:39:54',NULL),(45,3,'user','Charles Boyd','charles-boyd','charles-boyd','rpyc5fnz2x@privaterelay.appleid.com',NULL,'$2a$10$LSUfJ1DeDjhMuHQs.l.0wuhT/yZOdUgpbQLcck1pxD1.b9RaV4VUu',NULL,NULL,'1','1','2024-09-02 23:32:53','1',NULL,'apple','000511.ddf7d0adac574c00a03011962f847d37.2332',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-02','2024-09-02 23:32:52','2024-09-02 23:32:52',NULL),(47,3,'user','Putri','putri','putri','putriseven99@gmail.com','+62-8518307134','$2a$10$U4UQXC0jK3dH6xoI0pg7Qu4iNtl1Yq/7hbEkY8Xo0oYzCV2yoewYK','user/1725356416137.jpeg',NULL,'1','1','2024-09-03 09:42:47','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-03','2024-09-03 09:40:16','2024-09-03 09:42:46',NULL),(48,3,'user','Marielis Mercado','marielis-mercado','marielis-mercado','mariepedro14@gmail.com',NULL,'$2a$10$tLi4f/439oN8QTjVAAalSOMewkNZDpTTnrbslsdWNNYYd4SvCJCuS','https://lh3.googleusercontent.com/a/ACg8ocImfkAN65aR-rYwY7fTXdvxYYu0JLdGTSvMXHTi_-IN8G5_vJiZ',NULL,'1','1','2024-09-03 11:14:59','1',NULL,'google','104552511095039013330',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-03','2024-09-03 11:14:59','2024-09-03 11:14:59',NULL),(49,3,'user','null','null1768','null1768','terimanning.28088@gmail.com',NULL,'$2a$10$r4rMDIlP7SfCipKG/sx1ken.nZYceJnfQ3ATs/kRXLoSCgjsD.BWa',NULL,NULL,'1','1','2024-09-03 11:27:31','1',NULL,'google','103266518572312353226',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-03','2024-09-03 11:27:31','2024-09-03 11:27:31',NULL),(50,3,'user','Jarrod Lynn','jarrod-lynn','jarrod-lynn','jarrod.lynn@gmail.com',NULL,'$2a$10$d1NlfId0ocKla/QHVswsxOzm8hd.TBx5yuxAvtA4IF3fCKhzgU0TK','https://lh3.googleusercontent.com/a-/ALV-UjVxTt4fh1tZN4IdGBBGC5jaYiP5m7sB0Hxop3nCG5GH1C55XNPWMrcf4PYthNhBbeEW_Y89LWUgnv-i8-VZHmXm4cncnZCBnRYHOgytc2HDU189ejCzWcyst4RqYDyxdxepS4cKhh-eDR92wgsdUmw2HjXEJ0G35dU8xHesZmeUS_yrYUBCJHcQwKMY4rwGhBjJ4QNbk19BXC3sCtXurgynxldK6V9iLnNvtyWzSAa0BpVe-rJIVLr-BJOFkimDQ4oTGTWtpn-zvqPgmczYHh13vCqHfG9SpNyibmduC-bvbJRINnPTBZ_eUTk9ZDgf928wPVXNJxAQ6yDKKsHl8A1QVZDUuaID8uijUAFOdaS3Jd-CMgXFljw6bxzTkPetItpRbWpNF-BOUx8g85rN3dT5Ue5DDt33lW2wbV16pmenCdb3kAuHvP-ytl1Wk0rAdQFYvZn24PgXu08kM35hRc4Yq1SdZJ3AHzdqn-sNr60rPkYPUc9b54XRxsuW4Q9T6q5Y5c_Z8CguhmDqitA27dIdo2f6l6zXR88hYInfhjYQt6S2hbKtL5TV0bWBIkAhG-ujZwK9IbUOP8QUHXrqGzL7FhfRqA7Bd2NqHFSG012wNRd8ikv3JdX8v565arzBGq3ASOo49R5rB8yCox2-vCUeR0gJN_coFqGFRCwj2PwBkCkBD4_dKElpGOTP5EzRF95oLNjd4-dEr9rAibxEfL8CSr40NwIHcBeuEwRGJ0Ujn1FvTKPnJklvfcAKk6tqXOKUsZLfJCcfOcvBIpsv0dLr5uZyabhZTV9YDOsT3IazjMHoNSPKybjvXYT7tROK7wPrAegL_YHXGC6jblux2tr_KHUkpQPQynJLt-DTEP2hkKZj-nrGl8ymMeKIohsf-DP6ktUazPxhlltU1ZwCry59wsQ60-ccZ76u1Xpr2VvnI82Q6ZCCoA0Ftn4QoB6jg0hMiyULMkixOQv08zPY7oIhe0Q=s1337',NULL,'1','1','2024-09-03 18:15:15','1',NULL,'google','102325857543228393699',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-03','2024-09-03 18:15:14','2024-09-03 18:15:14',NULL),(51,3,'user','Skylynn Carle','skylynn-carle','skylynn-carle','skylynnkhenderson@gmail.com','+1-3093638428','$2a$10$I1trlixYHAh2cTgnDczvpOxkNfUn4KUXPG0cYKWnB9QTcDe/5lKV2','user/1725389785762.jpeg',NULL,'1','1','2024-09-03 18:57:07','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-03','2024-09-03 18:56:25','2024-09-03 18:57:06',NULL),(52,3,'user','Kattie Reynolds','kattie-reynolds','kattie-reynolds','kattiereynolds50@gmail.com',NULL,'$2a$10$87SD9XdxDrDDxC6Av1ozA.fhGEAJUO/tOEPU1OnCBWafqqpw8IGXS','https://lh3.googleusercontent.com/a/ACg8ocL0wEJGQ-j5nhTmT33YIphWQmGuifjGIoMPjQcA101sMzRWeg=s1337',NULL,'1','1','2024-09-05 02:45:16','1',NULL,'google','103870151900484560591',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-05','2024-09-05 02:45:16','2024-09-05 02:45:16',NULL),(53,3,'user','Kameron Carle','kameron-carle','kameron-carle','carlekam000@gmail.com','+1-3093225670','$2a$10$yxUJwXSPI.MvGVtpPZLI/u950GEbN9T9PPOVaY8lZziME4VZTvmdm','user/1725594608589.jpeg',NULL,'1','1','2024-09-06 03:51:23','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-06','2024-09-06 03:50:08','2024-09-06 03:51:23',NULL),(54,3,'user','Maurice Johnson','maurice-johnson','maurice-johnson','support@thywillonly.store',NULL,'$2a$10$2yjKK7TexQJVxrrlZ287RuAr0ru1Xnw9ZeZJHPGoegVWZQJPwprlG','https://lh3.googleusercontent.com/a/ACg8ocKS3hqFOk7AWrOZ4rjAFK7DUikq28kwSIFGuCLOAVV2h2bZwg=s1337',NULL,'1','1','2024-09-07 12:07:43','1',NULL,'google','115066118542600998889',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-07','2024-09-07 12:07:42','2024-09-07 12:07:42',NULL),(55,3,'user','Roy Ewart','roy-ewart','roy-ewart','jdfrontman@yahoo.com','+1-4013497476','$2a$10$.CNdJ9XJchP7DXLRbR6Ee.000ZzOKtjsEL1v8ko3CGGUVnud3I0Ze','user/1725727158276.jpeg',NULL,'1','1','2024-09-07 16:39:46','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-07','2024-09-07 16:39:18','2024-09-07 16:39:46',NULL),(56,3,'user','Skyla Rodgers','skyla-rodgers','skyla-rodgers','skyladanea1018@gmail.com','+1-3463584646','$2a$10$udrm9aNLEe3tnIcARQ.3OeWsCYawVj2beJiP.CMfWd.A0YWWttPdm','user/1725743455321.jpeg',NULL,'1','1','2024-09-07 21:12:13','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-07','2024-09-07 21:10:55','2024-09-07 21:12:12',NULL),(57,3,'user','Emma','emma','emma','emmaanngatlin@icloud.com','+1-6014470799','$2a$10$kZvESQi6/OQp/a/VtAr7QeeDm.eWSpKiRoxBcMhpeRXxyEurfDA.K','user/1725827159563.jpeg',NULL,'1','1','2024-09-08 20:26:21','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-08','2024-09-08 20:25:59','2024-09-08 20:26:21',NULL),(58,3,'user','Vivian Miranda','vivian-miranda','vivian-miranda','vivian_cuvibby@icloud.com',NULL,'$2a$10$EVG.3XUKZ/IDHIKwYEc4SunHcrJ7manh2CFCBN1vEGlpP5p2dxKb6',NULL,NULL,'1','1','2024-09-09 10:49:37','1',NULL,'apple','000683.2380513020cf46038425d59243c36770.1049',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-09','2024-09-09 10:49:36','2024-09-09 10:49:36',NULL),(60,3,'user','Aja Tillman','aja-tillman','aja-tillman','sm2cjbgdsg@privaterelay.appleid.com',NULL,'$2a$10$CRIKjUwhTS68eOBeHkuK/OG7Y4yvtZcfqOdLQGM3Zk2fzXquIzsHa',NULL,NULL,'1','1','2024-09-11 02:41:30','1',NULL,'apple','001978.6ac934ef63324dd788ccb1fb0c31ae81.0241',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-11','2024-09-11 02:41:30','2024-09-11 02:41:30',NULL),(61,3,'user','Ashlee Knight','ashlee-knight','ashlee-knight','myqsyhqd92@privaterelay.appleid.com',NULL,'$2a$10$O4A9mJMW4yQcFjz5Rsbly.sEbpygOdl6YzANqYQx3gADSiVF.Xx1e',NULL,NULL,'1','1','2024-09-11 03:24:31','1',NULL,'apple','000085.e8a2e1849f624fca831dc98a774a5415.0324',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-11','2024-09-11 03:24:31','2024-09-11 03:24:31',NULL),(62,3,'user','null','null1188','null1188','angelojackson.38918@gmail.com',NULL,'$2a$10$s/ZOeB9HWuG4AdL2hoDXPOKJUtw87e5Jf9t/ONSWxH13Ih5Iuqf2i',NULL,NULL,'1','1','2024-09-11 10:23:47','1',NULL,'google','108907022244143350868',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-11','2024-09-11 10:23:46','2024-09-11 10:23:46',NULL),(63,3,'user','Charles Delgado','charles-delgado','charles-delgado','hxykrjv6nj@privaterelay.appleid.com',NULL,'$2a$10$TObyyZ231I6Kuz8T7gifB.NnvrpO5GlDPKJum9asMT2awVJwngeUS',NULL,NULL,'0','1','2024-09-11 10:33:20','1',NULL,'apple','000815.efee5724914e44449c48a140d7ab9b67.1033',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-11','2024-09-11 10:33:19','2024-09-11 10:34:52',NULL),(64,3,'user','Howard Dahlstrom','howard-dahlstrom','howard-dahlstrom','w6gvg79tr9@privaterelay.appleid.com',NULL,'$2a$10$NhxtnwSf8ypfa3LjAN/cle33o7nqUf0Y3LZkdvrTau6Ft1M/FYroq',NULL,NULL,'1','1','2024-09-11 10:50:18','1',NULL,'apple','000221.342abcd83df94bbabbb60837ccecbf5a.1050',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-11','2024-09-11 10:50:18','2024-09-11 10:50:18',NULL),(66,3,'user','Brazos Gunter','brazos-gunter','brazos-gunter','brazosgunter@gmail.com',NULL,'$2a$10$TwtvDqDCoczwDv3KsCADTOIdkXQXpt9ki8WCRjPR9hsGg3lUAre.S',NULL,NULL,'1','1','2024-09-12 01:32:50','1',NULL,'apple','001151.4504e9b5b489424d99b1622eff8271c0.0132',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-12','2024-09-12 01:32:49','2024-09-12 01:32:49',NULL),(67,3,'user','VALERIA MEJIA','valeria-mejia','valeria-mejia','86c6f6bsgw@privaterelay.appleid.com',NULL,'$2a$10$13W6rmEmQ/IkKUm88lJwju1r2XdgzFvezU84OFgI.hOmiefDhrx5a',NULL,NULL,'1','1','2024-09-12 02:17:54','1',NULL,'apple','001276.1491894d882c463abdf9b1afdb6c2f9b.0217',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-12','2024-09-12 02:17:54','2024-09-12 02:17:54',NULL),(68,3,'user','Chicora Helms M.','chicora-helms-m','chicora-helms-m','v6qr5z6cn4@privaterelay.appleid.com',NULL,'$2a$10$8CeSxofcObccyTpM15apyu/3XSEZb7m8rsV8UgHKoHP1jdcnZYQoa',NULL,NULL,'1','1','2024-09-13 02:34:07','1',NULL,'apple','000484.adcc5b2529684728bb16d00be1916cfc.0234',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-13','2024-09-13 02:34:07','2024-09-13 02:34:07',NULL),(69,3,'user','null','null1348','null1348','alexanderalvarado.80197@gmail.com',NULL,'$2a$10$KnLto0f9r.8brICfaD8OM.o6SUN4Vqj9qyMvS6ZWJ6waLk.y5kSHG',NULL,NULL,'1','1','2024-09-13 13:09:22','1',NULL,'google','117521132276174550861',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-13','2024-09-13 13:09:22','2024-09-13 13:09:22',NULL),(70,3,'user','Jada Cierra Allen','jada-cierra-allen','jada-cierra-allen','jadaallen30@gmail.com',NULL,'$2a$10$ME07Ay7Zh5dqnGT7kLTSUOLfplZ.fPtMu78.knd6j5CxVQ2MdtX9W','https://lh3.googleusercontent.com/a/ACg8ocIucnKMjbFcGHGHL0is7M5_FucGRaGJpQmsoyIVJHD9RB4vuZsyhA=s1337',NULL,'1','1','2024-09-14 02:24:49','1',NULL,'google','114880543319106176645',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-14','2024-09-14 02:24:49','2024-09-14 02:24:49',NULL),(71,3,'user','chris adri','chris-adri','chris-adri','bxd5zhn8m2@privaterelay.appleid.com',NULL,'$2a$10$qnxTY15Kx3oQsGYSLDyPzeOS3JNOJe5/PCMqJie0zZZprY4I6dwS6',NULL,NULL,'1','1','2024-09-14 05:53:35','1',NULL,'apple','001693.372ce7fe170f407fb6dbd81201fdef20.0553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-14','2024-09-14 05:53:34','2024-09-14 05:53:34',NULL),(72,3,'user','Deidra Hill','deidra-hill','deidra-hill','4gpdrdrqym@privaterelay.appleid.com',NULL,'$2a$10$y9X2l4XhNXoEV.kfNFwpZOLvsTJ9dQGHlGtS2saicQUHWCXqu.87e',NULL,NULL,'1','1','2024-09-14 10:39:31','1',NULL,'apple','001357.ae8cd27eb5484e1cbd9bb6b4a2a16269.1039',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-14','2024-09-14 10:39:30','2024-09-14 10:39:30',NULL),(73,3,'user','Jon Embrey','jon-embrey','jon-embrey','mcembrey@yahoo.com',NULL,'$2a$10$y.JWF6vNfnadqh5vbmwnselp5CQT.JtEaK4zBwKqufc/0NnrU/Yce',NULL,NULL,'1','1','2024-09-14 20:42:59','1',NULL,'apple','001418.3efa6a3e68184827adc46a6b9014fc28.2042',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-14','2024-09-14 20:42:59','2024-09-14 20:42:59',NULL),(74,3,'user','Danelle Auzston','danelle-auzston','danelle-auzston','rg49dwb44d@privaterelay.appleid.com',NULL,'$2a$10$voXAB91Yyr9/MPPfUNjZ0u/eVxGXStg/qQYWgnTV3Nc.xTsRPPvRC',NULL,NULL,'1','1','2024-09-14 23:25:21','1',NULL,'apple','001241.0245a9fc973c46939c25aba0c8846aba.2325',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-14','2024-09-14 23:25:20','2024-09-14 23:25:21',NULL),(75,3,'user','Amber Garcia','amber-garcia','amber-garcia','ambmarie91@gmail.com','+1-7025788665','$2a$10$ovPe/aQtxkvsB1Ud8275xuWKPef7VCpF8bIDXfw3y8f0fYYYuiDHO','user/1726429575663.jpeg',NULL,'1','1','2024-09-15 19:46:50','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-15','2024-09-15 19:46:15','2024-09-15 19:46:50',NULL),(77,3,'user','Danii Ramos','danii-pochert','danii-pochert','daniireceives@gmail.com','+1-2623704929','$2a$10$w29rT6rCRza4w4qe8PLua.LysdfXSa8OFqKwtJOFfbFx.B5JBhnvy','https://lh3.googleusercontent.com/a/ACg8ocK8Tx1XfBzVrQx7pCyjnMEMke-5OKwScCaEPCttvPmruOGAyw=s1337',NULL,'1','1','2024-09-16 13:39:57','1',NULL,'google','112058824595819495375',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-16','2024-09-16 13:39:56','2024-09-16 13:44:24',NULL),(78,3,'user','Brandon prejeant','brandon-prejeant','brandon-prejeant','bprejeant@gmail.com','+1-9856659384','$2a$10$QtoIR/hA5uCjq0UAV6ZVZu14ExqveaMFv.8czdORRe3pOqNPUtnWa','user/1726517916503.jpeg',NULL,'1','1','2024-09-16 20:19:19','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-16','2024-09-16 20:18:36','2024-09-16 20:19:18',NULL),(79,3,'user','Joslynn Marie','joslynn-marie','joslynn-marie','joslynnmarie58@gmail.com',NULL,'$2a$10$8me9ocDrW8ERLVQiqpInyOaMSq8GeKjW4MG.4gVhBG06m0sP.TaoS','https://lh3.googleusercontent.com/a/ACg8ocIv0HMUzY-m2eqoIZq9xE1izJSG-7lAL32SrvaatEiBUrfn6Q=s1337',NULL,'1','1','2024-09-17 02:10:35','1',NULL,'google','116140138555240368985',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-17','2024-09-17 02:10:34','2024-09-17 02:10:34',NULL),(80,3,'user','Caitlin Castillo','caitlin-castillo','caitlin-castillo','caitlincastillo13@gmail.com',NULL,'$2a$10$hA2kEDrILHhOti3l80j1HOJfLzuHqeQPQ195TO38NELPN1Y/R7/M.','https://lh3.googleusercontent.com/a/ACg8ocK2HgP2gPGzvq-07PoOUwDYej2CGrXRRD587ifMPkJR-xFT8C4=s1337',NULL,'1','1','2024-09-17 03:06:06','1',NULL,'google','114296238150445276575',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-17','2024-09-17 03:06:05','2024-09-17 03:06:05',NULL),(81,3,'user','David Sandoval','david-sandoval','david-sandoval','baseballdavid10@gmail.com','+1-3612839140','$2a$10$71OvANMnViJJ5Hn3QXIVBepWzOhNZW8qU.vCeXAahYufdHIepoHu2','https://lh3.googleusercontent.com/a/ACg8ocIXt8M36C3mwplysvKugL4ahPmkldZmqiNxNKoFeYW1QeISXg=s1337',NULL,'1','1','2024-09-17 03:10:33','1',NULL,'google','114488939179246019158',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-17','2024-09-17 03:10:32','2024-09-17 03:12:46',NULL),(82,3,'user','Harry Miller','harry-miller','harry-miller','harry.miller@yopmail.com','+1-5123797978','$2a$10$cWkHynVNzFhOZFCZ9qPf6e3jC/8QtQ.SXSgmRCnbOdnRai.7um9NW','user/1726573881241.jpeg',NULL,'1','1','2024-09-17 11:51:53','1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-24','2024-09-17 11:51:21','2024-09-17 11:51:52',NULL),(83,3,'user','John Hamm','john-hamm','john-hamm','w2cwsy9qzp@privaterelay.appleid.com',NULL,'$2a$10$h0Y2PbakSYTAveziXuBHB.hZ/4awKlEGsD1AU6XevRh7NexRixgba',NULL,NULL,'1','1','2024-09-18 03:47:05','1',NULL,'apple','001401.1b01b37671c442f38e835cc635945503.0347',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-25','2024-09-18 03:47:05','2024-09-18 03:47:05',NULL),(84,3,'user','Arie L','arie-l','arie-l','arielle_lewis@sulc.edu','+1-3053945172','$2a$10$cRmvjGDfxze1qOgLDmASjO8KTXGGMeiZPVuxz6e215mou.iLCVPFO','user/1726634741394.jpeg',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-25','2024-09-18 04:45:41','2024-09-18 04:46:04',NULL),(85,3,'user','Kameron Carle','kameron-carle1768','kameron-carle1768','pm89mzpxdc@privaterelay.appleid.com',NULL,'$2a$10$WJ8o50mFcR9py5PGEFeEyuaQ8fmjir490c.ZTjyq3DuEOvsP9Mx7W',NULL,NULL,'1','1','2024-09-18 11:58:14','1',NULL,'apple','000629.711b078de84b49baa1031e61fdc2818b.1158',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-25','2024-09-18 11:58:13','2024-09-18 11:58:13',NULL),(86,3,'user','Lindsay Wogen','lindsay-wogen','lindsay-wogen','Lindsay.wogen@hotmail.com','+1-6303466297','$2a$10$iAyWdgbL46AYLwi9/37DmuexoL7hdR7ovGU1d/poM7KJobsZBSW9e','user/1726666555820.jpeg',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-25','2024-09-18 13:35:55','2024-09-18 13:36:13',NULL),(87,3,'user','lindsay.wogen wogen','lindsaywogen-wogen','lindsaywogen-wogen','lindsay.wogen@gmail.com',NULL,'$2a$10$rowQ5gzvp94uztZ5P5rRUeCiLCKHatVNSLhXTFo2Px7iFsuBdwXUe','https://lh3.googleusercontent.com/a/ACg8ocLJn-uKK5Ci-JRa4VDVfTFVSCa1BeT74d7QrPn1L3Y6YP1r9A=s1337',NULL,'1','1','2024-09-18 17:26:53','1',NULL,'google','107005616989244962608',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-25','2024-09-18 17:26:53','2024-09-18 17:26:53',NULL),(88,3,'user','hayden logan','hayden-logan','hayden-logan','alayna787@gmail.com',NULL,'$2a$10$OYIfot9VJLRlLGOStm5lwOVAxBrz7h6h/XbB6Mu5dYq.1mvKYjsq6','https://lh3.googleusercontent.com/a/ACg8ocJiCpgsDX4ATrkU2LhhKhUe9AEMdzNcmOFxMtOuU2Gv75b4BoPo=s1337',NULL,'1','1','2024-09-19 02:00:09','1',NULL,'google','101593573879568795298',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-26','2024-09-19 02:00:08','2024-09-19 02:00:08',NULL),(89,3,'user','null','null1504','null1504','hollycaldwell.03364@gmail.com',NULL,'$2a$10$VHljDqvBOi8ZPnOrTmibbeVEm4NquO3zzymzjPDThUNHsZokHjeH.',NULL,NULL,'1','1','2024-09-19 10:17:30','1',NULL,'google','106264227011408332521',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-26','2024-09-19 10:17:30','2024-09-19 10:17:30',NULL),(90,3,'user','Steven Hernandez','steven-hernandez','steven-hernandez','stevenleehdz@icloud.com',NULL,'$2a$10$Dg.9734m8hb11sAoJ11y9.UoFm2I.ucCaC/E.Sq2Od6PLdt.d6lzK',NULL,NULL,'1','1','2024-09-19 12:55:32','1',NULL,'apple','001202.21993bd7966f487792f68eebf9130077.1255',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-26','2024-09-19 12:55:31','2024-09-19 12:55:31',NULL),(91,3,'user','Jessie Johnson','jessie-johnson','jessie-johnson','x274gc77kz@privaterelay.appleid.com',NULL,'$2a$10$03U75nUJuZGKg9XdHmyY1OKStj3tsj1DChqzABIsEkkF/UybaiqLu',NULL,NULL,'1','1','2024-09-19 15:08:55','1',NULL,'apple','001391.3bdfcd1596c64910b5a75ed850780fc8.1508',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-26','2024-09-19 15:08:55','2024-09-19 15:08:55',NULL),(92,3,'user','shana skeen','shana-skeen','shana-skeen','lilpro303@gmail.com','+1-8302652966','$2a$10$0VFR/QqFEBnSzhg.o0sfEePSBI3FE57AFxrVs4Wz5TEEFTz8D2rzK','user/1726770752873.jpeg',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-26','2024-09-19 18:24:05','2024-09-19 18:32:32',NULL),(93,3,'user','Adam Beaston','adam-beaston','adam-beaston','r2dfg6mdmc@privaterelay.appleid.com','+1-7372395551','$2a$10$qJNMh7.Xf8SbUmtLUYLse.Spjq215gw206tFR0eyK3JqdjDcghtwy','user/1726787799535.jpeg',NULL,'1','1','2024-09-19 18:30:27','1',NULL,'apple','001964.d7488c95c1f74bbd95ec9403cce1299d.1830',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-26','2024-09-19 18:30:26','2024-09-19 23:16:39',NULL),(94,3,'user','Caylynn Dykema','caylynn-dykema','caylynn-dykema','caylynndykema2118@gmail.com',NULL,'$2a$10$jKF4VuP8zYGV9dgl2LAZIujmKhs0uVD8HHEBIHgAS8VezwXSwNHK2','https://lh3.googleusercontent.com/a/ACg8ocJLsfZ3Yd9Ad1ZxiIQ2qQWBZBfvOvy0tCndaOYufzExOLducA=s1337',NULL,'1','1','2024-09-20 09:25:18','1',NULL,'google','105125451770159470344',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-27','2024-09-20 09:25:18','2024-09-20 09:25:18',NULL),(95,3,'user','Gdhdhd','gdhdhd','gdhdhd','test@yopmail.com','+1-5612345678','$2a$10$mE.XQj0Tlf.xSNKBMuAKo.qnTkFrYiyKnPzMDQPpneZfWiU3xGEFW','user/1726841516974.jpeg',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-27','2024-09-20 14:11:56','2024-09-20 14:12:10',NULL),(96,3,'user','Ra\'nya Marcanno','ranya-marcanno','ranya-marcanno','m.ranya0817@gmail.com',NULL,'$2a$10$kCd3iofwtaVsHigwYuZQWu0wpj5DxAfiG/I3lxVVyi25lES2qRC3q',NULL,NULL,'1','1','2024-09-21 01:40:27','1',NULL,'apple','001663.abda2a8a64524bff9e5734482b3265cd.0140',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-28','2024-09-21 01:40:26','2024-09-21 01:40:26',NULL),(97,3,'user','Eddie Mickler','eddie-mickler','eddie-mickler','edmick80@gmail.com',NULL,'$2a$10$DRdl6i.wwjzAXddz6bek1OyE/LO357RUvWBkchv8vHJ5XUQSUI7m.','https://lh3.googleusercontent.com/a/ACg8ocJCIcwU9DT0el7tWpOaPFfPMV50g4jvMj5uCESdPMOEmQMupvVl=s1337',NULL,'1','1','2024-09-21 12:27:10','1',NULL,'google','105100236593754184388',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-28','2024-09-21 12:27:09','2024-09-21 12:27:09',NULL),(98,3,'user','Julia Terrell','julia-terrell','julia-terrell','j5qtss6754@privaterelay.appleid.com',NULL,'$2a$10$Zz.qDAWHlLe3zzRm4bS/buzWmFmMIv0.gI9vHT89m7d73JIbGjV3K',NULL,NULL,'1','1','2024-09-21 18:32:40','1',NULL,'apple','000666.c94b9e5abbea4315a4a11e82be601f32.1832',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-28','2024-09-21 18:32:39','2024-09-21 18:32:39',NULL),(99,3,'user','Bella rose Ramirez','bella-rose-ramirez','bella-rose-ramirez','bellaroseramirez2022@icloud.com',NULL,'$2a$10$ptUFZsuvsByNWfpfx1PWtuJMyXihGphCSeO6.5v.glArHscw/qtZm',NULL,NULL,'1','1','2024-09-22 00:53:08','1',NULL,'apple','000965.03bcb2b8b2994df5bf4ec8b7390e41eb.0053',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-29','2024-09-22 00:53:08','2024-09-22 00:53:08',NULL),(100,3,'user','Heather Byrn','heather-byrn','heather-byrn','qmrbpjpqnx@privaterelay.appleid.com',NULL,'$2a$10$sjjR4pXzg8IjOisKrgrXqeDVT8UxD57OhK0Cxj5ahpehMUZjhmWqm',NULL,NULL,'1','1','2024-09-22 01:40:44','1',NULL,'apple','000584.cc7b3ad9f8874d47b10436f4eeee0039.0140',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-29','2024-09-22 01:40:43','2024-09-22 01:40:43',NULL),(101,3,'user','Maritza Foss','maritza-foss','maritza-foss','maritzafoss@gmail.com','+1-4323867069','$2a$10$AUjgvWjsmXWYFvt5EgLXX.MJu1lB05DV04w8TOdn7.fpWLZFYiHO2','user/1727015599868.jpeg',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-29','2024-09-22 14:33:19','2024-09-22 14:33:37',NULL),(102,3,'user','Davante Young','davante-young','davante-young','davantey@gmail.com',NULL,'$2a$10$nTF3V/ddOFHU14JTLrHn8eYYlqYrP9qTK7kZP5zBdLyT0tTm9tKL6',NULL,NULL,'1','1','2024-09-23 02:57:24','1',NULL,'apple','001881.336d2fd1ae824e00acc34f8f885ae7f5.0257',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-30','2024-09-23 02:57:23','2024-09-23 02:57:23',NULL),(103,3,'user','Caleb Crafton','caleb-crafton','caleb-crafton','Cacrafton00@gmail.com','+1-5023418979','$2a$10$Sllq5zL3q9CKn/q6JWvXpekD1fvurPwtKTwkFG89B/M5l3yvHDxdm','user/1727089462516.jpeg',NULL,'1','0',NULL,'1',NULL,'custom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-30','2024-09-23 11:04:22','2024-09-23 11:04:48',NULL),(104,3,'user','madison miller','madison-miller','madison-miller','madisonmiller59@yahoo.com','+1-5026854349','$2a$10$L7oYObE5o.60L/qckI7tG.pCYX65CtOLzaYqWuZG19CzqVR/Cyefq','user/1727090625092.jpeg',NULL,'1','1','2024-09-23 11:20:07','1',NULL,'apple','000591.321fee4fc246431ab5cde1934e30b036.1120',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-30','2024-09-23 11:20:06','2024-09-23 11:23:45',NULL),(105,3,'user','Caleb C','caleb-c','caleb-c','tqc797nw5y@privaterelay.appleid.com','+1-1502341897','$2a$10$94I3g8eeCD4/Sw880nZHreqn9K0RrXMdRLLA.L2q5TdixnnIcn1Ve','user/1727090580343.jpeg',NULL,'1','1','2024-09-23 11:20:38','1',NULL,'apple','000397.8ba09a53cc634fae812acdc734d8bab3.1120',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,1,'2024-09-30','2024-09-23 11:20:37','2024-09-23 11:23:00',NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `video_categories`
--

DROP TABLE IF EXISTS `video_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `video_categories` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `image_url` varchar(255) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `video_categories_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `video_categories`
--

LOCK TABLES `video_categories` WRITE;
/*!40000 ALTER TABLE `video_categories` DISABLE KEYS */;
INSERT INTO `video_categories` VALUES (1,'cjumdtlz74uy72','Test Category','video_category/1722266253470.png','2024-07-29 15:17:33','2024-08-08 07:58:05','2024-08-08 07:58:05'),(2,'cju12tklzkzwz0o','Christ Centered Couples','video_category/1723104476231.avif','2024-08-08 08:07:56','2024-08-08 08:07:56',NULL),(3,'cju12t8lzkzx8gv','Managing Anger','video_category/1723104488478.avif','2024-08-08 08:08:08','2024-08-16 18:13:49','2024-08-16 18:13:49'),(4,'cju5mkm01auhld','Biblical Wisdom - Managing Anger','video_category/1724090294929.png','2024-08-19 17:58:14','2024-08-19 17:58:14',NULL),(5,'cju5mkm02l6b44','Biblical Apologies','video_category/1724168108740.png','2024-08-20 15:35:08','2024-08-20 15:35:08',NULL),(6,'cju5mkm02m3waq','Social Media & Relationships','video_category/1724169929181.png','2024-08-20 16:01:15','2024-08-20 16:05:29',NULL),(7,'cju4oynm19nugyg','The Fiery Tongue','video_category/1726772640856.png','2024-09-19 19:04:00','2024-09-19 19:04:00',NULL);
/*!40000 ALTER TABLE `video_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `video_watchtimes`
--

DROP TABLE IF EXISTS `video_watchtimes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `video_watchtimes` (
  `user_id` int unsigned NOT NULL,
  `video_id` int unsigned NOT NULL,
  `watch_percent` int NOT NULL,
  `watch_duration` varchar(255) NOT NULL,
  `full_duration` varchar(255) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `video_watchtimes_user_id_video_id_unique` (`user_id`,`video_id`),
  KEY `video_watchtimes_video_id_foreign` (`video_id`),
  CONSTRAINT `video_watchtimes_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `video_watchtimes_video_id_foreign` FOREIGN KEY (`video_id`) REFERENCES `videos` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `video_watchtimes`
--

LOCK TABLES `video_watchtimes` WRITE;
/*!40000 ALTER TABLE `video_watchtimes` DISABLE KEYS */;
INSERT INTO `video_watchtimes` VALUES (9,6,100,'29','29','2024-08-07 07:19:06',NULL),(14,6,7,'2','29','2024-08-07 10:14:10',NULL),(20,10,48,'65','135','2024-08-08 09:32:23',NULL),(22,13,2,'3','156','2024-08-19 17:55:52',NULL),(23,9,1,'3','285','2024-08-08 14:30:02',NULL),(33,14,33,'109','330','2024-08-19 13:48:01',NULL),(37,13,74,'115','156','2024-09-07 00:37:27',NULL),(45,13,51,'79','156','2024-09-02 23:33:56',NULL),(55,13,24,'37','156','2024-09-07 16:41:52',NULL),(58,13,27,'42','156','2024-09-09 17:08:17',NULL),(88,13,13,'20','156','2024-09-19 02:01:26',NULL);
/*!40000 ALTER TABLE `video_watchtimes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `videos`
--

DROP TABLE IF EXISTS `videos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `videos` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `video_category_id` int unsigned NOT NULL,
  `series` varchar(255) NOT NULL,
  `bible_chapter` varchar(255) NOT NULL,
  `author` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `videos_slug_unique` (`slug`),
  KEY `videos_video_category_id_foreign` (`video_category_id`),
  CONSTRAINT `videos_video_category_id_foreign` FOREIGN KEY (`video_category_id`) REFERENCES `video_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `videos`
--

LOCK TABLES `videos` WRITE;
/*!40000 ALTER TABLE `videos` DISABLE KEYS */;
INSERT INTO `videos` VALUES (1,'cjuniclz89ojgn','Title',1,'','Matthew 16:1-4','','Description','2024-07-30 10:20:18','2024-07-30 12:44:26','2024-07-30 12:44:26'),(2,'cjunitlz89q3gw','Title',1,'','Matthew 16:1-4','','Description','2024-07-30 10:21:31','2024-07-30 12:44:26','2024-07-30 12:44:26'),(3,'cjuonslz8ejbey','Title',1,'','Matthew 16:1-4','','Description','2024-07-30 12:36:13','2024-07-30 12:44:26','2024-07-30 12:44:26'),(4,'cjuopilz8eqtz0','test',1,'','testtestte','','test','2024-07-30 12:42:03','2024-07-30 12:43:57','2024-07-30 12:43:57'),(5,'cjuqaylz8et136','test',1,'','testtestte','','test','2024-07-30 12:43:46','2024-07-30 12:43:57','2024-07-30 12:43:57'),(6,'cjuqbulz8eu8za','Title T',1,'','Matthew 16:1-3','','Description hi hello testing','2024-07-30 12:44:43','2024-08-08 07:58:00','2024-08-08 07:58:00'),(7,'cjuzj5lzi84qvt','Title',1,'','Matthew 16:1-4','','Description','2024-08-06 09:34:37','2024-08-08 07:57:56','2024-08-08 07:57:56'),(8,'cju12telzkzyuue','Christ Centered Marriage - Intro ',2,'','1','','Introduction to Christ-Centered Marriage','2024-08-08 08:09:24','2024-08-16 17:44:39','2024-08-16 17:44:39'),(9,'cju12t8lzkzzy0q','Christ Centered Marriage - Foundations 1 ',2,'','2','','The Foundation of Christ-Centered Marriage','2024-08-08 08:10:14','2024-08-16 17:44:39','2024-08-16 17:44:39'),(10,'cju12telzl017z6','BW Managing Anger Intro',3,'','1','','Introduction to Managing Anger in a Marriage','2024-08-08 08:11:14','2024-08-16 17:44:39','2024-08-16 17:44:39'),(11,'cju12u2lzl02mfk','BW Managing Anger Session 1',3,'','3','','Managing Anger Session 1 ','2024-08-08 08:12:19','2024-08-08 08:12:45','2024-08-08 08:12:45'),(12,'cju12t8lzl02wid','BW Managing Anger Session 1',3,'','3','','Managing Anger Session 1 ','2024-08-08 08:12:32','2024-08-16 17:44:39','2024-08-16 17:44:39'),(13,'cju5mklzx04m9f','Marriage Series Introduction',2,'','Intro','','Hi there, and welcome to the Christ-Centered Marriage Series! We\'re so glad you\'re here with us. Whether you’re newly married, have been together for years, or are preparing for marriage, this series is designed to help you build and sustain a strong, loving, and Christ-centered relationship.\r\n\r\nMarriage can be one of the most fulfilling, yet challenging experiences we go through. And having the right mindset in Christ is crucial. Over the next few episodes, we’ll be discussing some key teachings from Jesus and the Bible that offer deep wisdom and practical guidance for our marriages.\r\n\r\nFirst, we’ll talk about \'The Sanctity of Marriage.\' Jesus’ words in Matthew chapter 19, verses 4 to 6 remind us of the sacred and enduring nature of marriage. Understanding this spiritual and unbreakable bond can deepen our commitment to each other and strengthen our relationship. We must see marriage not just as a contract, but as a covenant with God, reflecting His original design.\r\n\r\nNext, we’ll discuss \'Love and Respect in Marriage.\' In Ephesians chapter 5, verses 22 and 25, the apostle Paul gives us insights into the mutual responsibilities of husbands and wives. Loving and respecting each other, just as Christ loves the church, is foundational to a healthy and harmonious marriage. We can’t think of this as just about fulfilling roles, but about nurturing a deep, selfless love that mirrors Christ’s love for us.\r\nFinally, we’ll cover \'Divorce and Marriage.\' In Matthew chapter 19, verse 9, Jesus addresses the challenging topic of divorce. We’ll explore the commitment and faithfulness that marriage requires, and how we can navigate difficulties with a Christ-centered perspective. Understanding these teachings helps us appreciate the seriousness of our vows and the grace and forgiveness we need to extend to each other.\r\n\r\nBy reflecting on these scriptures and applying them to our lives, we can transform and strengthen our marriages. This series is here to offer you valuable insights and guidance, helping you build a relationship that not only honors God but also reflects His love to the world.\r\n\r\nSo, let\'s get started. Grab a cup of coffee, get comfortable, and join us as we explore these important teachings together. We hope this series will inspire you, challenge you, and ultimately bring you closer to your spouse and to God.\r\n','2024-08-16 17:47:07','2024-08-19 17:55:44',NULL),(14,'cju5mklzx0axwn','Foundations 1 - Matthew 19:4-6',2,'','1','','Welcome, everyone, to our Christ-Centered Marriage Series. \r\n\r\nWe’re so glad you’re joining us. In this series, we’re going to talk about the sanctity and enduring nature of marriage, as taught by Jesus in the Gospel of Matthew. In Matthew chapter 19, verses 4 to 6, Jesus explains that marriage is not just a human institution but a symbol of the relationship between Jesus and His church. This spiritual truth is essential for us to understand the true essence of the marital union in Christ.\r\n\r\nLet\'s read Matthew chapter 19, verses 4 to 6: \r\n“And He answered and said to them, \'Have you not read that He who made them at the beginning made them male and female,’ and said, ‘For this reason a man shall leave his father and mother and be joined to his wife, and the two shall become one flesh’? So then, they are no longer two but one flesh. Therefore, what God has joined together, let not man separate.”\r\n\r\nJesus responds to questions about marriage by reminding us of the creation story. His words are not just comments on society but a reaffirmation of God\'s original purpose for marriage. By referring to \'the beginning,\' He emphasizes that the principles of marriage are rooted in God\'s intent, not just human tradition.\r\n\r\nIn Genesis chapter 2, verse 18, we read: \"Then the Lord God said, \'It is not good that the man should be alone; I will make him a helper fit for him.\'” This foundational passage highlights God\'s design for marriage as a companionship and partnership. It\'s within this context that Jesus speaks of marriage as a sacred union, where two become one, reflecting God\'s plan for humanity.\r\n\r\nWhen Jesus quotes Genesis saying, ‘the Creator made them male and female,’ He is emphasizing the complementary nature of marriage. Men and women are created to complement and complete each other, each bringing unique strengths and qualities to the relationship. This union goes beyond the physical; it\'s about a harmonious unity where differences enhance the partnership.\r\n\r\nJesus talks about a man leaving his father and mother and being joined to his wife. This points to a significant transition where two individuals come together to form a new, unified family. The phrase ‘one flesh’ speaks to the depth of marital intimacy. It’s a union that involves emotional, spiritual, and psychological dimensions. This comprehensive and sacred unity reflects the closeness within the Godhead, where there is perfect harmony and love.\r\n\r\nIn this divine union, we find strength, support, and shared faith. The concept of becoming ‘one flesh’ means that in marriage, we are not just two people living parallel lives but deeply intertwined in every aspect of life. This unity is intended to be a source of strength and stability, mirroring the relationship God has with His creation.\r\n\r\nMarriage is also a reflection of the relationship between Christ and the church. In Ephesians chapter 5, verses 22 and 25, the apostle Paul describes the love, sacrifice, and union in marriage as a symbol of Christ’s deep, sacrificial love for His church and the church\'s submission to Christ. Husbands are called to love their wives as Christ loved the church, with a selfless, sacrificial love. Wives are called to respect and support their husbands. This mutual love and respect create a strong, healthy marriage that mirrors Christ’s relationship with His church.\r\n\r\nBy understanding these teachings, we see that marriage is elevated to a living testimony of Christ\'s love and His covenant with His people. When Jesus says, “Therefore what God has joined together, let no one separate,” He emphasizes the permanent and sacred nature of the marriage covenant. This statement highlights that marriage is meant to endure, reflecting God’s unbreakable commitment to His people. This covenantal view of marriage calls for unwavering commitment and resilience, echoing the enduring nature of Christ\'s love for His church.\r\n\r\nIn this life, where the meaning of marriage is often questioned, Jesus offers us a timeless and insightful perspective. He encourages us to see marriage not just as a legal agreement, but as something sacred and special, a promise from God. This perspective is like how Jesus loves and cares for His followers, the church.\r\n\r\nSo, when we think about our own marriages, it’s not about rules or contracts; it’s about something deeply meaningful. It means treating our marriage with respect and understanding that it\'s a significant commitment. It\'s a partnership where both people support and care for each other. In this special bond, we have a chance to grow and learn together, becoming better and more loving people.\r\n\r\nWrapping up in this episode, Matthew chapter 19, verses 4 to 6 offers us a powerful way to view the sanctity of marriage. It\'s not just a human institution but a divine covenant, reflecting the relationship between Jesus and His church. This understanding challenges us to honor, nurture, and cherish the marital union, recognizing it as a sacred symbol of Christ’s enduring love and our response to His gracious call.\r\n','2024-08-16 17:52:02','2024-08-20 15:27:02',NULL),(15,'cju5mklzx0d7ti','Foundations 2 - Ephesians 5',2,'','2','','Welcome back to the Christ-Centered Marriage Series. In this episode, we\'re focusing on a fundamental part of our Christian relationships as taught by the Apostle Paul in Ephesians chapter 5. In this chapter, Paul talks about the important principles of love and respect that Jesus showed us. We’ll look at these principles in detail and see how they apply to our marriages.\r\n\r\nLet\'s start with Paul\'s instruction for husbands in Ephesians chapter 5, verse 25: “Husbands, love your wives, just as Christ loved the church and gave himself up for her.” This command goes far beyond just being affectionate. Husbands are called to love in a self-sacrificial way, just like Jesus did. It means putting your wife\'s needs and well-being first. This love is active, not passive. It cherishes, honors, and uplifts your wife, reflecting the love that Christ has for the Church.\r\n\r\nTo understand this better, let\'s look at Psalms chapter 85, verse 10: “Love and faithfulness meet together; righteousness and peace kiss each other.” \r\n\r\nThis verse encourages both husbands and wives to prioritize love and faithfulness in their marriage. Love should guide your actions and decisions, and faithfulness should be constant. Treating each other with kindness, respect, and honesty helps keep harmony in your relationship. Peace doesn’t mean there will be no conflicts, but that you handle conflicts in a way that promotes understanding and harmony. The idea of righteousness and peace kissing each other suggests having loving and peaceful relationships, encouraging regular expressions of love through touch, kind words, and thoughtful actions.\r\n\r\nNext, let’s consider Paul’s words for wives in Ephesians chapter 5, verse 22: “Wives, submit yourselves to your own husbands as you do to the Lord.” \r\n\r\nThese words are often misunderstood. It\'s important to see this instruction in the context of mutual love and respect within marriage. Submission here means yielding to your husband out of love for Christ. Dominance has no place in a marriage. This is about respect, support, and working together as partners. \r\n\r\nRomans chapter 12, verse 10 tells us: “Be devoted to one another in love. Honor one another above yourselves.” This verse encourages spouses to prioritize their love and commitment to one another. Marriage is a partnership built on love and dedication. Being devoted means putting your spouse’s needs, happiness, and well-being first. It also emphasizes the importance of mutual respect, honoring each other’s opinions and feelings, and being willing to compromise.\r\n\r\nPaul’s broader message in Ephesians chapter 5 is about mutual submission – husbands and wives loving and respecting each other as equals in God’s eyes. In verses 21-33, Paul gives us a plan for a harmonious marriage based on understanding, care, and respect. This partnership reflects Christ’s relationship with the Church, marked by love, sacrifice, support, and mutual honor.\r\n\r\nIn today’s marriages, these principles translate into practical actions. For husbands, loving like Christ means being understanding, caring, actively listening, and supporting their wives’ spiritual growth. For wives, respecting their husbands involves honoring and acknowledging his role, supporting, and encouraging him, honesty and actively listening, mutual yielding and by demonstrating love and care. Both partners are called to nurture their relationship with open and honest communication, empathy, and a shared commitment to each other’s best welfare.\r\n\r\nTo wrap up, Paul’s teachings in Ephesians chapter 5, reflecting Jesus\' teachings, provide a solid framework for marriage – a relationship based on selfless love, mutual respect, and partnership. These principles go far beyond cultural and secular limits, offering timeless guidance for building strong, loving, and respectful marriages. As couples live out these principles, they create a living example of the love and unity that Christ desires for all relationships.\r\n','2024-08-16 17:53:48','2024-08-20 15:26:50',NULL),(16,'cju5mklzx0gdd2','Foundations 3 - Matthew 19:9',2,'','3','','Welcome to the final episode of our Christ-Centered Marriage Series. This episode addresses a delicate but important topic that Jesus discussed: divorce and the sacred nature of marriage. \r\n\r\nIn Matthew chapter 19, verse 9, Jesus speaks about when divorce is allowed and focuses on how serious marriage is. This teaching should offer a deep understanding of the value and lasting nature Jesus places on the marital union.\r\n\r\nLet\'s read Matthew chapter 19, verse 9. “I tell you that anyone who divorces his wife, except for sexual immorality, and marries another woman commits adultery.” \r\n\r\nThis scripture should bring clarity and seriousness to the issue of divorce. At a time when divorce was becoming more common and sometimes treated lightly, Jesus emphasizes how holy and lasting marriage should be. The only special condition to divorce is mentioned in verse 9: “except for sexual immorality.\" This acknowledges the serious breach in the marriage unity. But His main point is about the lifelong commitment of marriage. Jesus sees marriage as a bond meant to last, not something to end at will or for convenience.\r\n\r\nWe can learn more from the Old Testament, especially from Malachi chapter 2, verse 16, which says: “For the Lord, the God of Israel, says that He hates divorce, for it covers one’s garment with violence.” During this time, men were divorcing their wives to marry other women, causing great destruction to the families. This verse highlights God\'s desire to keep marriages together and addresses the harmful nature of divorce. The phrase “covers one’s garment with violence” symbolizes the violent break-up of a once unified bond in marriage, emphasizing the emotional and relational pain that divorce can bring to individuals and families.\r\n\r\nBy emphasizing how serious divorce is, Jesus isn’t just talking about a man-made rule; He’s reminding us how sacred marriage is to God. To Jesus, marriage isn’t just a social agreement; it’s a spiritual connection set up by God. This bond reflects God’s steady love and promise to His people. So, ending this bond through divorce isn’t just a personal issue; it has deep spiritual significance.\r\n\r\nWhile Jesus has high expectations for marriage, we need to consider His approach and teachings. Jesus was known for His kindness and understanding of human weaknesses.\r\n\r\nHis lessons on divorce, though strict, are filled with compassion. They aim to protect the marriage and care for everyone’s well-being. Jesus’s persistence on the lasting nature of marriage encourages people to take marriage seriously and to work hard to fix and heal any problems whenever they can.\r\n\r\nIn our society today, these teachings challenge us to view marriage with a deep sense of seriousness and commitment.. It reminds us that marriage should not be entered into lightly and that the vows made are before God and are intended to last a lifetime. For those facing marital difficulties, This scripture encourages seeking reconciliation and making every effort to preserve the marriage. However, it’s also important to approach situations of marital breakdown with grace, understanding, and support, especially in cases where staying in the marriage might be harmful.\r\n\r\nTo wrap up this series, Jesus\'s teachings on divorce in Matthew chapter 19, verse 9, highlight the sacred and enduring nature of marriage. They remind us to treat our marriage with great seriousness and to view marriage as a holy bond that reflects God’s unwavering love and faithfulness. As we reflect on these teachings, let\'s approach them with kindness, understanding, and a deep appreciation for the Godly purpose of marriage.\r\n','2024-08-16 17:56:15','2024-08-20 15:24:41',NULL),(17,'cju5mklzx0kh6y','Foundations 4 - 10 Essential Principles',2,'','4','','Welcome to this mini episode in our Christ-Centered Marriage Series. Today, we will discuss ten essential principles for building a strong, loving, and Christ-centered marriage. Each principle is rooted in scripture and provides a solid foundation for a healthy and lasting relationship. Let’s get right into these teachings and explore how they can enhance your marriage.\r\n\r\nWe begin with the foundation of love and respect.\r\n“A new command I give you: Love one another. As I have loved you, so you must love one another.” (John chapter 13 verse 34). This teaching is the cornerstone of our marriage. It reminds us to emphasize mutual love and respect as central to our relationship.\r\n\r\nNext, let’s talk about commitment and faithfulness.\r\n“Therefore, what God has joined together, let not man separate.” (Mark chapter 10 verse 9)\r\nJesus\'s words about the permanent nature of marriage highlight the importance of being committed and faithful to each other.\r\n\r\nNow, let\'s move on to forgiveness and grace.\r\n“And when you stand praying, if you hold anything against anyone, forgive them, so that your Father in heaven may forgive you your sins.” (Mark chapter 11 verse 25).\r\nForgiveness helps us overcome conflicts and grow stronger together.\r\n\r\nNext, we focus on humility and service.\r\n“The greatest among you will be your servant.” (Matthew chapter 23 verse 11).\r\nBy serving one another with humility, we reflect Christ’s example in our marriage.\r\n\r\nLet’s discuss unity and oneness.\r\n“So, they are no longer two, but one flesh.” (Matthew chapter 19 verse 6).\r\nThis reminds us to work together as a single unit, fostering a deep sense of unity.\r\n\r\nNow, let\'s talk about prayer and spiritual growth.\r\n“But when you pray, go into your room, close the door and pray to your Father, who is unseen.” (Matthew chapter 6 verse 6).\r\nPersonal and joint prayer can strengthen our spiritual bond and reliance on God.\r\n\r\nNext, we consider patience and understanding.\r\n“Be completely humble and gentle; be patient, bearing with one another in love.” (Ephesians Chapter 4 verse 2)\r\nPatience and striving to understand each other help maintain a harmonious relationship.\r\n\r\nNow, let\'s discuss peace and reconciliation.\r\n“Blessed are the peacemakers, for they will be called children of God.” (Matthew chapter 5 verse 9)\r\nActively seeking peace and reconciliation strengthens our relationship.\r\n\r\nNext, we focus on joy and gratitude.\r\n“Rejoice and be glad, for great is your reward in heaven.” (Matthew chapter 5 verse 12)\r\nA spirit of joy and gratitude leads to a more fulfilling relationship.\r\n\r\nFinally, let’s talk about community support.\r\n“For where two or three gather in my name, there am I with them.” (Matthew chapter 18 verse 20)\r\nOur faith community is important for support and spiritual growth in our marriage.\r\n\r\nAs we conclude this mini episode, remember that these principles from Jesus’s teachings provide a solid foundation for your marriage. Reflect on these lessons with kindness, understanding, and a deep appreciation for the divine purpose of marriage. Thank you for joining us in this Christ-Centered Marriage Series. May God bless your union with love, peace, and joy.\r\n','2024-08-16 17:59:26','2024-08-20 15:24:28',NULL),(18,'cju5mkm01ayyva','Biblical Wisdom Introduction',4,'','Intro','','Hello, and welcome! We\'re so glad you\'re joining us. In this series, we’re talking about something really important for every relationship: understanding and managing anger. This is going to be an amazing series, packed with practical tips and insights that can really transform your relationship.\r\n\r\nWe all get angry; it\'s a natural emotion. But if we don\'t handle it well, it can cause problems. We’ll look at some great stories from the Bible, like Moses\'s frustration at Kadesh and Jesus\' reaction in the temple, to see how even they dealt with anger. These stories will help us learn how to stay calm during those heated moments.\r\n\r\nWe’ll also share some easy, practical steps from the Word of God to help you manage anger better. Imagine having simple tools to help you navigate those tough moments with grace and understanding.\r\nAnd there’s more. We’ll talk about the power of forgiveness and making up. Letting go and forgiving, just like God forgives us, can heal us and make our relationships stronger. This kind of forgiveness helps us face any challenges that come our way.\r\n\r\nAddressing anger is crucial for creating a loving, healthy environment where both partners can thrive. The Bible gives us amazing guidance on this, emphasizing patience, understanding, and communication. Ephesians chapter 4 verse 26 says, \"Be angry and do not sin.\" It reminds us that while anger is natural, it shouldn\'t lead to sinful actions.\r\n\r\nGod encourages us to resolve disputes quickly, speak kindly, listen fully, and forgive freely, just as we have been forgiven (Colossians chapter 3 verse 13). By applying these teachings, we can turn frustrating moments into opportunities for growth.\r\n\r\nGet ready for a series that’s full of wisdom and practical advice. Thanks for joining us. Let’s learn together how to manage anger and build stronger, more loving relationships\r\n','2024-08-19 18:01:43','2024-08-19 18:01:43',NULL),(19,'cju5mkm02jg8dk','Understanding Anger',4,'','1','','Welcome to the first episode of the Understanding Anger Series. We’re glad you’re here. When we think about emotions, what comes to mind? For many it’s the extreme love and affection that revolves around movies and TV shows. For others, it’s bursts of anger that drive a rollercoaster of feelings that don’t settle. Neither of these fulfill us to create an environment that is complete and satisfying. \r\n\r\nThink about it, emotions are a natural part of our daily interactions, and anger is one of those feelings that everyone experiences. It often bubbles up when we feel wronged or threatened, pushing us to defend ourselves and set boundaries. While anger can protect our sense of right and wrong, it needs to be handled carefully, especially with those we care about most. Anger is powerful, but how we manage it shows our true self-control.\r\n\r\nWhen anger gets out of hand, it can destroy the trust and safety that are the foundation of our relationships. Picture living in a home where you’re constantly walking on eggshells, afraid that one wrong step could spark a storm. This constant tension creates an environment filled with fear, stripping away the warmth and comfort we all need. The cycle of angry outbursts, harsh words, and lingering arguments damages our ability to communicate, causing pain and instability.\r\n\r\nAs this goes on, a gap begins to form, one that can\'t be easily fixed by apologies or time. Instead of finding comfort in each other’s company, you retreat into silence, not for peace, but to avoid more pain. This defensive stance against a partner’s unpredictable anger leads to detachment, replacing affection and warmth with distance. The impact isn\'t just emotional; it affects our physical health too, showing up as stress, high blood pressure, and reduced resilience to illnesses, while also harming our mental health, leading to anxiety and depression.\r\n\r\nUnchecked anger doesn’t just affect couples; it impacts our children, who might see it as a normal way to express frustration. It also strains our relationships with friends and family. If left unchecked, this cycle can damage our connections with others and even ourselves.\r\n\r\nUnderstanding what anger is and recognizing its effects on us and our relationships is crucial. Managing our anger is key to improving our relationships. We need to express our feelings and solve problems without hurting others. By identifying what makes us angry, talking openly about our feelings, and trying to understand others\' perspectives, we can manage anger in a positive way.\r\n\r\nThese emotions can be so deeply ingrained that sometimes prayer and counsel are the best ways to address them. In our next episode, we\'ll look at the wrong and right ways to handle anger by exploring the stories of Moses and Jesus. Stay tuned, stay connected to Jesus, and keep listening.\r\n','2024-08-20 14:46:52','2024-08-20 14:46:52',NULL),(20,'cju5mkm02jolo4','Righteous vs Unrighteous Anger',4,'','2','','Welcome to the second episode in the Understanding Anger series. Today, we’ll look at two examples of different types of anger in the Bible. One type leads to sin against God, and the other is an example of righteous anger. It\'s important that we understand these differences because God tells us that in our anger, we must not sin.\r\n\r\nLet’s begin with the story of Moses and the Israelites at Kahdesh, as told in Numbers chapter 20. After nearly four decades of wandering in the desert and with the Promised Land almost within reach, they encountered a significant challenge. To fully appreciate this moment, it\'s important to recognize the dynamic between Moses and the Israelites throughout their journey from Egypt. The Israelites often voiced their dissatisfaction, complaining about shortages of food and water and frequently questioning Moses\'s leadership. There were moments of outright rebellion, like when Aaron and Miriam\'s challenged Moses\' authority, and Korah\'s rebellion against God\'s appointed leaders. During these chaotic episodes and numerous smaller disagreements, Moses found himself attempting to lead the people, ease their concerns, and intercede with God on their behalf.\r\n\r\nWhen they arrived at Meribah, thirsty and worn out, the situation reached its peak. The people started complaining again, this time about not having water. They argued with Moses, saying they would rather have perished with Korah before the Lord! They also said to him, \"Why have you brought the Lord’s assembly into this wilderness, for us and our beasts to die here? Why have you made us come up from Egypt, to bring us into this wretched place? It is not a place of grain or figs or vines or pomegranates, nor is there water to drink.\" All the years of complaints wore down Moses’s patience. Here, at Meribah, Moses reached his limit. His reaction to the constant grumbling shows how even the most patient person can get overwhelmed.\r\n\r\nMoses lost his self-control and didn\'t do what God had asked, which was simply to talk to the rock to provide water. Instead, he let his emotions take over and struck the rock in a moment of frustrated anger. \r\nNow… let’s think about this for a moment. \r\n\r\nDoesn’t this moment in Moses\' life mirror moments in our marriages when stress leads us to react without thinking, acting on impulse rather than with patience and humility? \r\n\r\nWe might forget to follow God\'s guidance, losing our self-control and acting on our immediate feelings. This is a reminder of how crucial it is to stay calm and thoughtful, especially when faced with challenges, rather than letting our emotions dictate our actions.\r\n\r\nNow… there were consequences that Moses had to face for his actions… He received a rebuke from God and lost his chance to enter the Promised Land. This highlights the significance of our actions and choices. It points out the importance of putting our trust in God and watching our actions by making His Word a practical skill during difficult trials. For us as couples, we must stand by each other as peace makers, communicate openly with love and respect, and make choices that honor both our relationship and God.\r\n\r\nSo, how can we apply these lessons to our own marriages? It starts with recognizing those challenging times in our relationships—when we have to make difficult decisions or deal with conflicts. These are the times to lean into humility, talk openly and honestly, and seek wisdom beyond just our own. We must see and value our partner\'s perspective and strengths, with Jesus as our guiding light.\r\n\r\nWe can see how Moses’s moment of frustrated anger led him to sin against God. On the other hand, controlling our anger can help us avoid sin. The key is self-control. It\'s important to handle challenges and grow together in marriage with Jesus as our foundation.\r\n\r\nSo, what does righteous anger look like? Let\'s look at Jesus in Matthew chapter 21. Jesus teaches us to be angry at the things that anger God, not things that anger our flesh. His actions in the temple show us the importance of keeping our relationships clean, honest, and centered on God.\r\n\r\nIn Matthew chapter 21 verses 12 and 13, we find a powerful moment in Jesus\' ministry. He enters the temple, which was meant to be a place of prayer and connection with God, but instead finds it filled with merchants and money changers. Jesus reacts by driving them out, showing His commitment to keeping worship pure and ensuring that sacred spaces remain dedicated to their true purpose.\r\n\r\nFor married couples, this story is a tender reminder to maintain the sacredness of our own relationships. Just as Jesus cleansed the temple, we are called to cleanse our marriages of anything that distracts from our spiritual unity and commitment to God. We need to make our homes—and our lives together—places where God\'s presence is respected and honored. This might involve addressing materialism, selfishness, or any other form of idolatry that creeps into our relationships.\r\n\r\nJesus\' authoritative action in the temple also serves as a powerful example for couples. It reminds us that Christ is the foundation and head of every relationship. His zeal for His Father’s house should inspire us to actively work together to protect the purity and holiness of our marriages, ensuring they remain spaces where God\'s presence is not just welcomed but is the central focus.\r\n\r\nJesus called the temple a \"house of prayer,\" showing how important prayer is in our relationships. Prayer is our direct line to God—a way to seek His help, strength, and wisdom in every part of our marriage. As couples, we need to make time for prayer, both alone and together, to keep our relationship focused on God. Try starting your day with personal prayer each morning, and then praying together during lunch or before bed, making this a regular habit.\r\n\r\nThe transition from cleansing to healing in the temple shows how we can grow and improve in our marriages. Just as Jesus healed the blind and the lame after cleansing the temple, we are encouraged to address and remove harmful patterns in our relationships, always aiming to heal and strengthen our bond. This process, rooted in prayer and scripture, allows God to work in our marriage, healing wounds and bringing us closer to Him and each other.\r\n\r\nJesus\' cleansing of the temple provides a guide for couples to follow in their relationships. It teaches us to honor the purity of our union, submit to Christ\'s authority, prioritize prayer, and commit to ongoing cleansing and restoration. By doing these things, our relationships can truly reflect God\'s holiness and love, becoming a living \"house of prayer\" where His presence guides and blesses our life together. This is a lifelong commitment, and the Lord will continue to work in us as long as we let Him.\r\n\r\nStay tuned, stay connected to Jesus, and keep listening.\r\n','2024-08-20 14:53:22','2024-08-20 14:53:22',NULL),(21,'cju5mkm02jxo9t','Proverbs 14:29 - Slow To Anger',4,'','3','','In the next three clips, we\'ll explore selected scriptures that teach us the importance of managing our words and how we treat one another. We\'ll start with Proverbs chapter 14 verse 29, then move to Ephesians chapter 4 verse 26, and finish with Colossians chapter 3 verse 8.\r\n\r\nLet\'s begin with Proverbs chapter 14 verse 29: \"He who is slow to anger has great understanding, But he who is quick-tempered exalts folly.\"\r\n\r\nProverbs chapter 14 verse 29 really highlights how anger relates to wisdom, or the lack thereof. It talks about two types of people: those who are slow to anger and those who are quick-tempered.\r\n\r\nThe person who is slow to anger doesn\'t let their anger take control easily. They are described as having great understanding because they keep their emotions, especially anger, in check. This type of control isn\'t a sign of weakness; it\'s quite the opposite. It shows that they have a deep understanding of themselves and know how to manage their reactions when they feel wronged. \r\n\r\nThey demonstrate maturity and good judgment by not letting their anger derail them from resolving the issue at hand.\r\n\r\nOn the other hand, the quick-tempered person lets anything set them off. The verse says they essentially highlight their own foolishness by being quick to anger. It\'s like broadcasting their lack of self-control for everyone to see, choosing to act recklessly instead of wisely.\r\n\r\nThis is solid advice for us as couples. Proverbs chapter 14 verse 29 urges us to practice patience and strive to understand each other better. We have to think things through before letting tempers flare up. Keeping our cool helps us build a stronger, more respectful bond together. But when someone snaps too quickly, it just creates more problems, emphasizing why it\'s so important to work on patience and self-awareness.\r\n\r\nNext is Ephesians chapter 4 verse 26. Stay tuned, stay connected to Jesus, and keep listening.','2024-08-20 15:00:26','2024-08-20 15:08:37',NULL),(22,'cju5mkm02k7evq','Ephesians 4:26 - Be Angry and Do Not Sin',4,'','4','','Welcome, in this short episode we\'ll look at is Ephesians chapter 4 verse 26. \r\n\r\nIt says: “Be angry, and yet do not sin; do not let the sun go down on your anger.\"\r\n\r\nThis verse gives us some straight talk about anger. Feeling mad or upset isn\'t forbidden. We all get angry—it\'s our instinctive alarm going off when we feel attacked or wronged, signaling that something is off. But here\'s the key: while feeling angry is natural, what really matters is what we do next. That\'s where things can go really well or really badly.\r\n\r\nThink about anger like fire… Fire has its uses—keeps you warm, cooks your food. But if you let it get out of control, it can destroy everything you care about. The feeling of anger itself isn\'t the problem; it\'s how we manage it. If you let it run wild, you might end up saying or doing things you\'ll regret later.\r\n\r\nTiming and control are crucial when dealing with strong emotions. Picture your anger as an uninvited guest that shows up without notice. Sure, you can\'t always stop it from knocking on your door, but you don\'t have to let it stay. \"Don\'t let the sun go down on your anger\" means don\'t go to bed angry. Work things out before you sleep. If it\'s getting late and you\'re still fuming, it\'s time to let that anger go.\r\n\r\nHere are some ways anger can turn bad:\r\n•	When it shows up for no good reason.\r\n•	When it blows things out of proportion.\r\n•	When it targets a person, not just their actions.\r\n•	When it dreams of revenge.\r\n•	When it lingers, growing stronger over time.\r\n•	When it refuses to forgive and demands payback.\r\n\r\nEphesians chapter 4 verse 26 encourages us to keep our tempers in check and seek peace before the day ends. We need to let go of grudges and embrace forgiveness. This way, as the day wraps up, our hearts are calm, and we are at peace with each other and, most importantly, with God…\r\n','2024-08-20 15:08:00','2024-08-20 15:13:08',NULL),(23,'cju5mkm02kby7v','Colossians 3:8 - Put Aside',4,'','5','','Welcome. This is the third and final scripture in our selected section. \r\n\r\nLet’s start by reading Colossians 3:8:\r\n\"But now you also, put them all aside: anger, wrath, malice, slander, and abusive speech from your mouth.\"\r\n\r\nColossians chapter 3 verse 8 calls for a big change in behavior for those who have embraced Christianity. It means moving from a life marked by sin to one that reflects the holiness and purity of being \"children of light.\" This shift isn\'t just about avoiding physical acts of immorality but also about getting rid of deeper, more harmful attitudes and impulses like unchecked anger, malice, and harmful speech.\r\n\r\nAnger itself isn\'t entirely condemned; it\'s the excessive, unjust, and prolonged anger that\'s the issue. This kind of anger goes beyond an initial, natural response to offenses, and it festers into a desire for retaliation. We need to let go of that deep-seated bitterness that seeks to harm others as revenge.\r\n\r\nWrath and malice are particularly destructive. Wrath refers to explosive, immediate reactions to being provoked, which can lead to actions inappropriate for a Christian. Malice involves a more calculated, lingering hostility that plots harm against others. Both are incompatible with the new life in Christ, similar to what is found in Ephesians chapter 4 verse 31, where such attitudes are linked with bitterness.\r\n\r\nThe apostle Paul also talks about how these internal sins show up in our speech. Blasphemy, or evil-speaking, goes beyond disrespecting God. It includes any speech that damages another\'s reputation, whether through outright slander or more subtle defamation. Similarly, filthy communication, which includes any form of obscene or impure talk, is expressly forbidden, as it goes against the purity and wholesomeness expected of Christians.\r\n\r\nColossians chapter 3 verse 8 urges believers to strip away not only obvious acts of sin but also the underlying emotions and tendencies that lead to sin. This includes a call to eliminate harmful speech patterns, recognizing that words can inflict deep wounds and continue sin\'s cycle. By doing so, believers affirm their commitment to a life that genuinely reflects their identity as followers of Christ, marked by purity, kindness, and grace in both action and speech.\r\n','2024-08-20 15:11:32','2024-08-20 15:11:32',NULL),(24,'cju5mkm02klwh4','Responding To Anger Biblically',4,'','6','','Welcome everyone. This is an exciting episode. We’re focusing on the biblical way to respond to anger, using the Word of God as our foundation. If you or your partner are navigating through the ups and downs of anger, remember, you\'re not alone. Let\'s walk through some biblically inspired steps to handle anger effectively.\r\n\r\nFirst up, acknowledging our anger. It might seem straightforward, but there\'s a lot of power in admitting to ourselves, \"Hey, I\'m really angry right now.\" Ephesians chapter 4 verse 26 tells us, \"Be angry and do not sin.\" This means it\'s totally okay to feel angry, but it\'s crucial we don\'t let that anger push us into doing or saying something we\'d regret. Recognizing our anger is the first big step in addressing it in a positive light.\r\nNow, imagine hitting the pause button right when you\'re feeling the heat build up in your chest. \"Be still, and know that I am God,\" Psalm chapter 46 verse10 invites us to do just that. In those intense moments, taking a breather to pray, meditate on God’s word, or just sit quietly reciting this verse can help us cool down and seek God\'s peace and direction. The key is to keep our minds on heavenly things, trusting that the Lord will walk us through.\r\n\r\nNext, let\'s talk about expressing those fiery feelings. Proverbs chapter 15 verse 1 offers some wisdom here: \"A soft answer turns away wrath, but a harsh word stirs up anger.\" Our feelings can often lead us to misunderstand a situation. It\'s very important to separate feelings from facts and focus only on the truth being said. If something isn\'t clear, ask questions like, “Can you explain what you mean by that?” or say, “This is what I\'m understanding; can you confirm if this is what you mean?” These types of questions help prevent misunderstandings that can lead to arguments.\r\n\r\nKeeping biblical wisdom close is key as we navigate our emotions. Verses like James chapter 1 verses 19 to 20 remind us to be \"quick to listen, slow to speak, and slow to become angry.\" Keeping these scriptures in mind can really guide us through tough times.\r\n\r\nSo, whether it\'s a small annoyance or deep frustration, how we handle anger makes all the difference in our relationships and overall happiness. Recognizing your anger, taking a step back, and then communicating calmly are all steps we can learn from scripture that lead us towards peace and better communication, one step at a time.\r\n\r\nWe have to manage our emotions in a way that brings us closer to the life Christ teaches us to live, strengthening not just our relationship with our partner but also our spiritual walk. And remember, through this process, leaning on your faith in Christ and these practical, biblical steps can guide you from anger to a place of deeper understanding of God\'s will and His peace.\r\n','2024-08-20 15:19:16','2024-08-20 15:19:16',NULL),(25,'cju5mkm02krfee','Forgiveness & Reconciliation',4,'','7','','Welcome everyone to the final episode in this series. This series has been a great addition to our spiritual growth in Christ. In this last episode, we will discuss the crucial role that forgiveness plays in managing anger.\r\n\r\nSo, what\'s the big deal with forgiveness? It\'s like a key that unlocks the door to healing and getting along better with not just your partner, but pretty much everyone in your life. Forgiveness means letting go of those heavy feelings that weigh us down and finding a way to move forward without the burden of unforgiveness.\r\n\r\nEphesians chapter 4 verse 32 says it best: \"Be kind to one another, tenderhearted, forgiving one another, as God in Christ forgave you.\" The message is clear – forgiving others is an essential part of our Christian walk. This reflects the same grace and mercy we\'ve received from God through Jesus. Holding onto anger not only hurts our body and peace of mind; it can strain our relationships too. Choosing to forgive means you\'re choosing freedom – from anger, from bitterness, and acknowledging God’s word by making it a practical skill.\r\n\r\nNow, forgiveness isn\'t just about saying, \"It\'s okay,\" and forgetting the wrongs done to us. It\'s deeper than that. It\'s about setting yourself free from the chains of anger that keep you stuck. And here\'s the beautiful part – it paves the way for reconciliation. This means starting the healing process, rebuilding trust, and maybe even finding a new way to connect that\'s stronger than before. But remember, reconciliation takes time, patience, and sometimes help from someone wise who can guide you through it.\r\n\r\nLet\'s talk about forgiveness stories from the Bible. For example, in Matthew chapter 18 verses 21 and 22, Peter asks Jesus how many times he should forgive someone who sins against him. Jesus replies, \"I tell you, not seven times, but seventy-seven times.\" Jesus calls us to always forgive, reminding us there is no limit on giving second chances.\r\n\r\nThen there\'s Joseph, sold into slavery by his brothers. Yet he chooses forgiveness, saving countless lives and bringing his family back together. It\'s a powerful reminder of forgiveness\'s ability to heal and restore.\r\nAnd who can forget the Parable of the Prodigal Son? It\'s a beautiful picture of a father\'s unconditional love and forgiveness, mirroring God\'s endless forgiveness for us and inspiring us to do the same for others.\r\nAs we wrap up, let\'s remember that forgiveness is essential in cooling off anger and bringing people together. It helps us build our relationships on a foundation of understanding, grace, and, most importantly, love. So, let\'s take this step together, forgiving as we\'ve been forgiven, and watch how it changes our world for the better.\r\n\r\nRemember to stay tuned, stay connected to Jesus, and keep listening.\r\n','2024-08-20 15:23:34','2024-08-20 15:23:34',NULL),(26,'cju5mkm02l9nn2','The Power of Apologies',5,'','1','','We’re glad that you’re joining us on this biblical apologies journey.\r\n\r\nThe first in the series is The Power of Apologies. \r\n\r\nApologies hold immense power, don’t they? In some cases, they’re easy to want but hard to give. So, why are apologies and forgiveness so important in any relationship? They are the driving force to resolutions during disagreements, arguments, and conflicts.\r\n\r\nFrom the Old Testament to the New, the two central themes repeated in the bible are Repentance and forgiveness. We see repentance displayed by the Israelites when they sinned against God, and God\'s forgiveness through grace and mercy. But how does this apply to us as couples?\r\n\r\nThe verse that always comes to mind is Proverbs chapter 15 verse 1, \'A gentle answer turns away wrath, but a harsh word stirs up anger.\' \r\n\r\nIn this one simple verse, we find a truth so deep and powerful that many overlook. Our words can either disarm a tough disagreement and turn it into an opportunity for reconciliation, or they can lead us down a path of destruction and hurt. Proverbs chapter 15 verse 1 lays the foundation for understanding the impact our words have on others.\r\n\r\nIn our relationships, conflicts, although challenging, are often where we learn to understand one another better, deepening our relationship as we work through them. When we become vulnerable by being repentant and offering an apology, we are not showing weakness but demonstrating the humility and love that Christ Himself showed us. By controlling our emotions, we align our actions with what God wants—peace and harmony with one another, rather than being driven by our immediate desires.\r\n\r\nIn a marriage, an apology is an act of humility—an essential ingredient for a healthy, Christ-centered relationship. Ephesians chapter 4 verses 2 and 3, urges us to \'Be completely humble and gentle; be patient, bearing with one another in love. Make every effort to keep the unity of the Spirit through the bond of peace.\' This verse is particularly important for married couples, as it stresses the need for patience and humility—both of which are foundational for a meaningful apology.\r\n\r\nLet’s look at Philippians chapter 2 verses 3 and 4. “Do nothing out of selfish ambition or vain conceit. Rather, in humility value others above yourselves, not looking to your own interests but each of you to the interests of the others.”\r\n\r\nWhat lesson does this teach us? It urges us to place the well-being of others above our own and to embrace the mindset of Christ when interacting with one another. God\'s Word emphasizes the significance of making amends to restore harmony within our relationships. Our apologies should come from a heart that not only acknowledges the pain caused to our partner but also recognizes the deviation from God\'s intended design for marriage. \r\n\r\nIn this context, James chapter 5 verse 16 is frequently cited, encouraging couples to \"Therefore, confess your sins to one another, and pray for one another so that you may be healed.\" This healing isn\'t just about the individual; it also strengthens the couple and their spiritual connection with God.\r\n\r\nFor couples struggling in this area, understanding the power of a repentant apology can be life-changing. It\'s not just saying \"I\'m sorry.\" It\'s about acknowledging the pain caused, understanding the impact of our actions, and committing to a change that aligns with the Godly principles of marriage. An apology in a marriage acts as a bridge—it reconciles couples that have been distanced by hurt or misunderstandings. It\'s a way to forgiveness and proof to the strength and grace that marriage, under God, can represent.\r\n\r\nAs we explore this topic, let us always hold onto the wisdom from Scripture that the Lord has so graciously provided to us. When our apologies are full of sincere repentance and humility, they have the power to heal wounds, bridge gaps, and restore harmony. In the following sections, we will explore how this theme is echoed throughout the Bible and how we can apply it in practical ways in our relationships.\r\n','2024-08-20 15:37:44','2024-08-20 15:37:44',NULL),(27,'cju5mkm02ld0mr','Apologies In The Bible',5,'','2','','Welcome to the second episode in the biblical apologies series. In this episode we will explore two biblical apologies in the Bible. As we continue in this series, it\'s important that we see the examples that the word of God gives us, and how to see and apply them in our relationships.\r\n\r\nFirst, let\'s get into the story of Joseph and his brothers - from Genesis chapter 45.\r\n\r\nThe story unfolds with Joseph, who has risen to a position of great power in Egypt, finally revealing his true identity to his brothers, who had previously sold him into slavery. This revelation comes after a touching plea from Judah, who offers himself in place of his younger brother Benjamin. Joseph is deeply moved by this display of repentance and change of heart in all of his brothers.\r\n\r\nJoseph\'s emotional response is intense and private; he sends everyone out of the room before breaking down in tears. His statement, \"I am Joseph,\" is simple yet packed with emotional resonance, highlighting the story\'s power of forgiveness. His immediate concern following the revelation is for his father, showing his deep longing for him.\r\n\r\nThe brothers, at first shocked and speechless, suddenly understand that their brother, whom they had wronged, is now in a position of power over them. This realization brings to light the unpredictable nature and ethical wrongness of their past actions. Not only was Joseph betrayed by his own flesh and blood, enduring years of hardship in a foreign land, but now he is willing to help his brothers and take care of them, contrary to what they did to him.\r\n\r\nJoseph\'s approach to forgiveness is remarkable. He saw the divine hand in the events that led him to his position of power, choosing to see God\'s will rather than seek revenge. This perspective allows him to genuinely forgive his brothers and view his sufferings as part of a larger, God-ordained plan that ultimately led to the survival of his family and many others during a time of famine. This story shows that for real forgiveness to occur, the person who was wronged needs to see genuine repentance and change in the offender before it can lead to a heartfelt reunion.\r\n\r\nThis act of making peace teaches us an important lesson for marriage. It shows us that forgiveness isn\'t simply about erasing painful memories; it\'s about consciously deciding to place love and kindness over holding grudges and feeling bitter. It encourages us to view our spouse not merely in light of their errors but as a companion on a shared path under Christ.\r\n\r\nNow, let\'s reflect on the Parable of the Prodigal Son in Luke chapter 15 verse 11. The first two parables—the lost sheep and the lost coin—emphasize the human tendency to value what is lost more than what is securely held. These stories reveal a deep understanding of human nature and the joy in recovering what was once lost. \r\n\r\nThe third parable, however, brings the message to a deeper level by tapping into the emotions of fatherhood. It tells the story of a prodigal son who, desiring independence, asks his father for his inheritance before it\'s due to him. Let\'s understand the gravity of this request. At that time, asking for an inheritance before it was due was highly disrespectful and equivalent to wishing his father dead, as inheritances were typically distributed after the father\'s death.\r\n\r\nThe father, loving his son, complies with the request. The son then wastes his inheritance in a distant land and faces severe suffering. In his misery, he decides to return to his father, who receives him with open arms, celebrating his return rather than condemning his past actions. This parable teaches us about forgiveness and reconciliation, showing how differently people can experience losing their way, and then finding it again. Through these stories, we see the serious consequences of going astray and the joy of getting back on the right track.\r\n\r\nThe core message of these parables is about showcasing God\'s boundless grace and forgiveness. They emphasize that repentance and a return to God bring immense joy in heaven, surpassing even the joy over those who never strayed.\r\n\r\nIn our relationships, the message of these parables is truly relevant. They remind us that forgiveness and grace are crucial components of a healthy relationship. Just as God welcomes back the repentant person with open arms, we too should be ready to forgive our spouse when they acknowledge their mistakes and seek reconciliation. \r\n\r\nTurning our attention to Matthew Chapter 5 verses 23 and 24, we are reminded of the deep connection between our spiritual lives and our earthly relationships: \"Therefore, if you are offering your gift at the altar and there remember that your brother or sister has something against you, leave your gift there in front of the altar. First go and be reconciled to them; then come and offer your gift.\" Christ gently opens our eyes to see how holding onto anger or contempt can deeply affect our most cherished relationships. He points out that if we don\'t deal with these feelings, they can harm our relationship with our spouse and our spiritual relationship with God. This message encourages us to adopt humility and empathy, to reflect on our own behavior, and to understand how our words and emotions affect the holy bond of marriage.\r\n\r\nBut, you might wonder, how do we initiate this path towards forgiveness and understanding? To find our answer, let\'s go back to the start of our series, where we read Proverbs chapter 15 verse 1: \"A gentle answer turns away wrath, but a harsh word stirs up anger.\" This proverb is not merely advice; it\'s a guiding principle for developing peace and understanding in our relationships. It teaches us that the tone and nature of our responses can either diffuse tension or escalate it. By choosing gentle, thoughtful words, we can create an environment of love and respect, paving the way for genuine forgiveness and reconciliation.\r\n\r\nWhen we face arguments or irritation, responding with kindness and calmness can stop conflicts from escalating and keep our relationship peaceful. This approach allows emotions to settle, creating a space where we can later talk to each other in a calm and gentle manner. By doing so, we honor the wisdom of Proverbs 15:1 and pave the way for more constructive and loving interactions. Importantly, it also prevents bitterness from taking root, which can poison our relationship over time.\r\n\r\nAs we navigate this path, let\'s hold onto the wisdom of Ephesians chapter 4 verse 32: \'Be kind and compassionate to one another, forgiving each other, just as in Christ God forgave you.\' This verse isn\'t just advice; it\'s urging us to show Christ\'s love in our marriage. It means looking at each other with kindness and understanding that forgiving one another is what keeps our marriage strong and loving.\r\n\r\nDear friends, let\'s hold on to these stories as lessons that we learn from. They should guide us through the challenges of marriage. Let\'s learn to say sorry with true repentance, to forgive generously with the grace given to us by Christ, and most importantly, to love each other with a limitless love that mirrors God\'s own heart. By doing so, we can build a foundation of trust, compassion, and unwavering support in our relationships.\r\n','2024-08-20 15:40:21','2024-08-20 15:40:21',NULL),(28,'cju5mkm02lgu7j','Psalm 51 - Elements Of An Apology',5,'','3','','Welcome to the third episode of our Biblical Apologies series. In this episode, we’re going to explore the critical difference between remorse and repentance. Understanding this distinction is vital for genuine healing and reconciliation in our relationships.\r\n\r\nRemorse often arises when we face the consequences of our actions, particularly the negative outcomes like conflict or hurt in our marriage. It\'s that feeling of regret when we realize our actions have led to unwanted results. While remorse acknowledges the pain caused, it doesn\'t necessarily lead to change.\r\n\r\nBut repentance goes much deeper. It\'s about recognizing our wrongdoing, feeling true sorrow for it, and making a conscious decision to change. This isn\'t just about managing the aftermath of our actions; it\'s about a genuine transformation of the heart, a realignment of our mind towards moral and spiritual growth. Repentance involves not only seeking forgiveness but also committing to making different choices in the future.\r\n\r\nThere are three steps to a biblical apology.\r\n\r\nThe first is: Sincere remorse and confessing what was done wrong.\r\nThe second is: Seeking forgiveness from God and the person offended.\r\nThe third is: repentance and a true commitment to change. \r\n\r\nTo understand this, we are going to dig into David’s plea of repentance from Psalm chapter 51.\r\nYou can pause now to open your bible to read along, or you can just listen as we read it now.\r\n\r\nHave mercy upon me, O God,\r\nAccording to Your lovingkindness;\r\nAccording to the multitude of Your tender mercies,\r\nBlot out my transgressions.\r\nWash me thoroughly from my iniquity,\r\nAnd cleanse me from my sin.\r\nFor I acknowledge my transgressions,\r\nAnd my sin is always before me.\r\nAgainst You, You only, have I sinned,\r\nAnd done this evil in Your sight—\r\nThat You may be found just when You speak,\r\nAnd blameless when You judge.\r\nBehold, I was brought forth in iniquity,\r\nAnd in sin my mother conceived me.\r\nBehold, You desire truth in the inward parts,\r\nAnd in the hidden part You will make me to know wisdom.\r\nPurge me with hyssop, and I shall be clean;\r\nWash me, and I shall be whiter than snow.\r\nMake me hear joy and gladness,\r\nThat the bones You have broken may rejoice.\r\nHide Your face from my sins,\r\nAnd blot out all my iniquities.\r\nCreate in me a clean heart, O God,\r\nAnd renew a steadfast spirit within me.\r\nDo not cast me away from Your presence,\r\nAnd do not take Your Holy Spirit from me.\r\nRestore to me the joy of Your salvation,\r\nAnd uphold me by Your generous Spirit.\r\nThen I will teach transgressors Your ways,\r\nAnd sinners shall be converted to You.\r\nDeliver me from the guilt of bloodshed, O God,\r\nThe God of my salvation,\r\nAnd my tongue shall sing aloud of Your righteousness.\r\nO Lord, open my lips,\r\nAnd my mouth shall show forth Your praise.\r\nFor You do not desire sacrifice, or else I would give it;\r\nYou do not delight in burnt offering.\r\nThe sacrifices of God are a broken spirit,\r\nA broken and a contrite heart—\r\nThese, O God, You will not despise.\r\nDo good in Your good pleasure to Zion;\r\nBuild the walls of Jerusalem.\r\nThen You shall be pleased with the sacrifices of righteousness,\r\nWith burnt offering and whole burnt offering;\r\nThen they shall offer bulls on Your altar.\r\n\r\nThis chapter unfolds a tale of heartfelt repentance and yearning for forgiveness after some awful mistakes involving Bathsheba and Uriah. Picture David going through a whole year, where outwardly everything seems normal, but inside, he\'s wrestling with guilt and sorrow. It’s as if he\'s carrying a heavy weight on his shoulders, feeling distant from God’s warmth and approval. This struggle is beautifully expressed in Psalm chapter 32, where he describes how his joy was overshadowed by his inner turmoil.\r\n\r\nThen comes a key moment: the prophet Nathan steps in. He holds up a mirror to David, showing him the gravity of his actions. This confrontation leads to a breakthrough, where David openly admits his wrongs. Even though God forgives him swiftly, it doesn\'t erase the consequences, as the story takes a sorrowful turn with the illness and passing of his child with Bathsheba. This whole rollercoaster of events leads David to pour out his feelings in Psalm chapter 51.\r\n\r\nIn this Psalm, David examines his actions from all angles. He sees the individual wrongs and understands they\'re part of a bigger problem within him. He doesn\'t make excuses; he owns up to his mistakes as his own, seeing them as acts of rebellion and moral missteps. His prayer in this Psalm is intense – he’s not just asking for a quick fix. He\'s asking for a real change in his heart, for a chance to start anew. This Psalm is about the struggles we all face with our mistakes and the hope that true repentance and seeking forgiveness can bring.\r\n\r\nIn our marriages, this means having a genuine recognition of the hurt we\'ve caused our partners – a sincere acknowledgment that goes far beyond an admission and goes into the deep pain we have caused them. This first step is necessary if we want to repair any damage that we’ve caused. Put yourself in your partner’s shoes. How would you like their repentance to look? We must display this too.\r\n\r\nThe second crucial step in a biblical apology is seeking forgiveness, both from God and from the person we\'ve wronged. As David seeks purification, verse 2 says, \"Wash away all my iniquity and cleanse me from my sin”, he reminds us of the humility required in seeking forgiveness. In our marriage, this step involves approaching our spouse with a heart that genuinely desires reconciliation and healing, understanding that this process begins with their grace and mercy after they recognize we’re truly repentant.\r\n\r\nThe third step, and perhaps the most challenging, is true repentance with a commitment to change. In verse 10, David pleads with God, \"Create in me a pure heart, O God, and renew a steadfast spirit within me\". This is the essence of true repentance in marriage – not just aspiring to change but committing to it in tangible ways. It involves a deep internal transformation, where we reshape our heart and spirit to create a God-centered marriage. We must ensure that past mistakes are not repeated, and that our actions consistently reflect our commitment to our spouse and our relationship.\r\n\r\nThis verse is a call to action, urging us to turn away from the behaviors that have caused hurt and to align ourselves with God\'s path. It reminds us that true repentance brings not only forgiveness but also a renewed sense of peace and restoration in our relationships.\r\n\r\nIn marriage, this means actively working towards healing the wounds we\'ve inflicted and working tirelessly to strengthen our relationship with our spouse. We have to consistently choose behaviors that create understanding, empathy, and love. This path of repentance might include seeking guidance from other Christians, engaging in honest communication, and taking time to understand and meet our partner\'s needs. It can also be counseling with a pastor or Christian marriage counselor.\r\n\r\nAs we walk this path of repentance, we open ourselves to the \'times of refreshing\' that come from the Lord – a renewal of our love, our commitment, and our spirit. The refining process, rooted in faith and action, is a testimony to the strength and depth of our love in marriage, a love that endures, heals, and grows.\r\n','2024-08-20 15:43:20','2024-08-20 15:43:20',NULL),(29,'cju5mkm02ll7py','Practical Tips for Apologizing',5,'','4','','Welcome! Thanks for joining us in the fourth and final episode of the Biblical Apologies series.\r\n\r\nIn our previous episodes, we explored the biblical basis of apologizing, broke down the differences between remorse and genuine repentance, and took a closer look at Psalm chapter 51. Now, it’s time to get practical—how do we take these principles and put them into action in our lives?\r\n\r\nThis episode is full of straightforward, actionable steps for making sincere, biblically based apologies. We\'ll guide you on how to approach those you\'ve hurt, communicate your repentance in line with God\'s word, and show a genuine commitment to improvement.\r\n\r\nBefore we approach those we\'ve hurt, let’s get our hearts and minds ready. Reflecting on second Corinthians chapter 5 verse 9, we aim to please God in all we do, including seeking forgiveness. This preparation involves prayer and seeking the Holy Spirit\'s guidance to choose the right moment and words. Ask God to soften your heart and the hearts of those you’ve hurt, preparing you both for a conversation filled with His grace.\r\n\r\nJames chapter 5 verse 16 says, \"Confess your sins to each other and pray for each other so that you may be healed.\" There’s incredible healing in confessing our sins to one another, both for the body and the spirit. Approaching someone with an apology requires courage and humility, traits that are strengthened through our faith and trials. Start by expressing sincere repentance for your actions, making it clear that you\'re seeking forgiveness and a chance to restore the relationship.\r\n\r\nWhen it comes to listening, we put James chapter 1 verse 19 into action: \"Everyone should be quick to listen, slow to speak and slow to become angry.\" After you’ve spoken, give the other person space to voice their feelings. Truly understand their pain without defensiveness or interruption.\r\n\r\nFocus fully on what the other person is saying, resisting the urge to create a response while they\'re speaking. Proverbs chapter 18 verse 13 tells us, \"To answer before listening—that is folly and shame.\" We must fully listen to everything they say before responding.\r\n\r\nSomething we don’t often think about is validating one another. Validation is key to rebuilding trust and shows that you understand their pain and are ready to begin the healing process together. Acknowledge their emotions, affirming that their feelings are understood and respected.\r\n\r\nLuke chapter 3 verse 8 calls us to \"produce fruit in keeping with repentance.\" It\'s not enough to simply apologize; we must show a willingness to change. Discuss how you can make amends and what steps you will take to ensure your mistake isn’t repeated. This could involve seeking counseling or taking practical steps to address the issue at hand. Demonstrating your commitment to change reinforces the sincerity of your apology.\r\n\r\nTrust is rebuilt through consistent, truthful actions, as we’re reminded in first John chapter 3 verse 18. Apologies must be lived out through our actions, showing our commitment to change over time. Let every action moving forward be proof of your repentance. Ensure your actions consistently reflect your commitment to change and keep the lines of communication open, sharing what has changed and seeking feedback.\r\n\r\nThe path to reconciliation is ongoing, guided by Ephesians chapter 4 verse 15. It involves continuous, honest communication where both parties feel heard and valued. Regular check-ins can help evaluate the healing process and boost mutual commitment. Be willing to make adjustments based on feedback, showing flexibility and commitment to the healing of your relationship.\r\n\r\nProverbs chapter 11 verse 14 praises the wisdom found in a multitude of counselors. Recognize when you need external support to navigate the difficulties of reconciliation. Seek guidance from a pastor, a Christian counselor, or a trusted Christian mentor who focuses on building healthy relationships through the Word of God. This can be incredibly helpful for moving forward.\r\n\r\nFinally, let’s walk in the footsteps of Christ, practicing empathy and compassion. We must see the situation through the eyes of those we\'ve hurt, feel with them, and extend the unconditional love that Christ shows us. In doing so, our apologies become a powerful stream of God\'s grace, creating healing and redemption. Try hard to understand the other person\'s pain, committing to a response that seeks to heal rather than justify. Offer your support, understanding, and patience as your partner heals, reflecting Christ\'s love in every interaction.\r\n\r\nAs we wrap up today’s episode, let’s remember that the path of biblical apologies is paved with grace, humility, and love. It’s evidence of our faith and our commitment to representing Christ\'s teachings in our relationships.\r\n\r\nThanks for joining us, and may your journey of forgiveness and reconciliation be blessed in Christ Jesus.\r\n\r\n','2024-08-20 15:46:44','2024-08-20 15:46:44',NULL),(30,'cju5mkm02m7nij','Social Media & Discernment',6,'','Intro','','Hey everyone! Welcome to our new series where we talk about how social media fits into our faith. \r\n\r\nLet\'s be real, social media is everywhere, right? Whether it’s watching YouTube videos, scrolling through Instagram, or checking out TikTok, it\'s a big part of our daily lives. For many of us, imagining a day without it feels almost impossible.\r\n\r\nSo here’s a question for us, especially as married couples trying to live out our faith: How do we navigate this digital world in a way that honors our biblical values? Sure, posting scriptures and inspirational messages are great, but there\'s so much more we can do.  It’s about how we engage, connect, and share our lives on these platforms in a way that reflects our faith.\r\n\r\nLet’s start the series today with a powerful verse from Philippians chapter 4 verse 8. It says, \"Finally, brethren, whatever is true, whatever is honorable, whatever is right, whatever is pure, whatever is lovely, whatever is of good repute, if there is any excellence and if anything worthy of praise, dwell on these things.\" This verse is our guide as we approach social media.\r\n\r\nIn this series, we’ll cover everything from shaping our personal identity and improving our relationships, to finding unique ways to express our faith online. We’ll face the challenges of self-examination head-on, offer strategies for keeping a balanced digital life, and share wisdom for guiding the next generation in these spaces.\r\n\r\nThis series is your invitation to see social media through a biblical lens, acknowledging both the opportunities and the challenges it presents. Expect lots of practical advice, spiritual insights, and real-world tips to help transform your online presence into a beacon of light in a dark world.\r\n\r\nRemember, we are called to be a light in this world, a city on a hill that cannot be hidden. Let’s show Christ in everything we do, including our online interactions. Listen on and may the Holy Spirit work great things within you!\r\n','2024-08-20 16:04:11','2024-08-20 16:04:11',NULL),(31,'cju5mkm02mdjdu','Social Media and Identity – Who Are We Online?',6,'','1','','Welcome everyone! In this episode we’re going into the topic of our Identity and who we truly are. It’s so important that we stand on the right foundation, no matter what we do. We can’t let the world move us; we need to understand our identity in Christ.\r\n\r\nSo, let\'s get to it!\r\n\r\nWhat defines us? Is our identity rooted in Christ, or is it shaped by worldly views? Where do we derive our sense of self? Are we influenced by the seemingly perfect life of a social media influencer, complete with flawless relationships and children? How does God view us, and what should our self-perception be according to Him?\r\n\r\nSocial media is such a huge part of our daily lives that it impacts our sense of self and identity. It’s like a double-edged sword: it gives us a way to express ourselves, create connections, and build communities, but it also opens the door to comparisons, envy, and the pressure to create a perfectly polished persona.\r\n\r\nWhile the Bible doesn’t specifically talk about social media, it offers plenty of guidance on navigating life\'s challenges, both in private and in public.\r\n\r\nOur identity raises some big questions. What do others see when they look at us? What parts of ourselves do we want them to see? Online platforms can make it tempting to hide the less appealing sides of our lives. Many times this creates a fear of being truly seen and known. This fear can lead to a tangled web of half-truths, where even our partner might not fully know who we are.\r\n\r\nSo, we have to ask ourselves again: what makes up our true identity? Are we placing too much value on our looks and neglecting our spirit? Can we accept our flaws just as we accept those of our friends, family, and spouse? God’s perspective encourages us to look inside, to value the inward parts over the superficial, and to create a realistic self-perception based on His understanding and love.\r\n\r\nThis brings us to the question of how to balance being genuine with maintaining privacy when we’re online.\r\n\r\nThink about how much we share online. Are the images we share respectful of our bodies? Are we more fascinated with the likes and hearts we receive than keeping certain things private for our partner’s eyes only? Where does modesty come into play? This applies to both men and women. While we often think of women in terms of modesty, men can also post images that reveal too much.\r\n\r\nWhat is our body to God?\r\nGod gives us a clear picture of what our body means to Him. Do we share this perception, or has society led us to not care about our bodies? First Corinthians chapter 6 verses 19 to 20 says: “Or do you not know that your body is the temple of the Holy Spirit who is in you, whom you have from God, and you are not your own? For you were bought at a price; therefore, glorify God in your body and in your spirit, which are God’s.”\r\n\r\nReflect on this verse...\r\nWhat goes through your mind when you read this? Does it make you reconsider your actions and how they serve your personal pleasure? How does this scripture place God in your life?\r\nRecognizing our commitment to Christ involves a transformation—a renewal of mind and heart that sets us apart from what’s accepted in society. As God’s children, we represent the likeness of our Heavenly Father in this world.\r\n\r\nOur value isn’t tied to the human approval we often seek. Psalm chapter 139 tells us that our true worth isn’t from our social standing, successes, or the views others have of us through this world, but from being uniquely created by God. This Psalm captures David’s understanding of God’s detailed work in our creation. It’s a reminder that our significance goes beyond any worldly value.\r\n\r\nWe possess a worth that surpasses all earthly values because we are made in the likeness of God, belonging to Him. It is His image we bear, not the world’s.\r\n\r\nLet’s be beacons of light in the darkness of this world!\r\n','2024-08-20 16:08:45','2024-08-20 16:08:45',NULL),(32,'cju5mkm02mmcnv','The Influence of Social Media on Relationships',6,'','2','','Welcome everyone! In this episode, we\'re digging into how social media influences our relationships and our actions online.\r\n\r\nSometimes we think that our actions online only affect us, but they actually impact those closest to us—our partner, family, and friends. The effects of our online activities on these relationships can vary widely, depending on the things we do online.\r\n\r\nLet’s start with the good stuff. Social media makes it super easy to keep in touch with friends and family, no matter where they live. It helps us share life updates, interests, and stay connected over time... But, on the flip side, the convenience of social media can sometimes lead to more superficial interactions that lack the authenticity and richness of face-to-face conversations. It can also create comparisons and envy when we see the seemingly perfect lives our friends and family post about. This can make us feel inadequate and sometimes it can even strain those relationships.\r\n\r\nNow, what about our relationship with our partner?\r\nSure... couples can use social media to communicate, share meaningful content, and publicly express affection, which can strengthen your relationship. But the line between use and overuse is thin, and misuse can sow seeds of distrust... Jealousy and conflicts can start from closely watching or misinterpreting each other\'s online interactions.\r\n\r\nOversharing can also strain relationships, especially if one partner likes social media more than the other... It’s important to decide together what is appropriate to share about your relationship on social media... Remember, deciding together is key... Oversharing or inappropriate interactions with others online and in person can lead to tension and unhappiness within your relationship.\r\n\r\nSo, let’s think about the words we use on social media and the images we\'re posting about ourselves, are we looking for external attention from the opposite sex?\r\n\r\nLet’s turn to Philippians chapter 2 verses 3 and 4: “Let nothing be done through selfish ambition or conceit, but in lowliness of mind let each esteem others better than himself. Let each of you look out not only for his own interests, but also for the interests of others.”\r\n\r\nThis verse guides us away from selfishness and towards humility and consideration, urging us to put our partner’s well-being and respect over our desire for online attention... How does the content we post respect our partner and ourselves? We need to avoid posting things that seek attention and approval from others if it causes a breakdown in our relationship and reduces our trustworthiness.\r\n\r\nPut yourself in your partner’s shoes. Would you accept the actions you do being done by them? Do your actions display mutual respect and admiration towards your partner? This respect should be shown both in person and in the digital world.\r\n\r\nSo, what does mutual respect look like?\r\nIt looks like treating your partner better than you treat yourself... It means honoring your partner by listening, being kind, considering their feelings in all you do, uplifting each other, having each other’s best interests at heart, never speaking badly about one another, and always putting each other first.\r\n\r\nCelebrate your partner’s achievements and qualities online, engage respectfully with each other\'s posts, and avoid public exchanges that could embarrass or belittle one another. What you do online should reflect what you do offline too.\r\n\r\nIt\'s important to set boundaries around what you share, including the types of photos and personal information, to ensure both partners feel comfortable and respected with their online activity.\r\nFor couples where one partner does not like social media, the priority becomes clear: does social media hold more value than your partner? This prompts deeper questions about balancing independence with our commitment to our partner. Sometimes, we can’t keep both social media and our relationships because of the path it leads us down.\r\n\r\nWe must aim for an image that reflects Christ in all we do. It’s not an easy walk, but it’s a foundation that must be set for Jesus to work in us. Philippians chapter 2 verses 3 and 4 serves as a reminder to act with humility and consider our partner’s needs, aiming for a digital presence that strengthens rather than breaks down our most cherished relationships.\r\n\r\nRemember that we are citizens of Christ\'s kingdom.\r\n','2024-08-20 16:15:36','2024-08-20 16:15:36',NULL),(33,'cju5mkm02mpgqx','Sharing Your Faith Online',6,'','3','','Welcome everyone! In this episode, we\'re going to cover sharing your faith online.\r\n\r\nFor individuals or couples sharing their faith on social media, the digital world offers some incredible chances to spread your beliefs. Social media\'s wide reach can help partners share God’s message far beyond their usual circles, acting as a powerful platform for both evangelism and upliftment... This kind of digital sharing can create deep connections and start important conversations about our Christian Walk with a varied audience, potentially impacting many lives for the kingdom of God.\r\n\r\nBut, with these opportunities come challenges like misunderstandings or facing doubt and negativity from others... So... how do we navigate these waters effectively?\r\n\r\nFor couples wanting to share their faith online, First Peter Chapter 3 verse 15 gives us some great advice: \"But sanctify the Lord God in your hearts, and always be ready to give a defense to everyone who asks you a reason for the hope that is in you, with meekness and fear.\"\r\n\r\n\r\nLet’s break this down.\r\n\r\nThe word “sanctify” here means to set apart Christ as holy in our hearts. We must make sure that our devotion to Him is clear and genuine, influencing everything we do, including how we interact online. By recognizing His holiness and treating Him with the respect He deserves, we replace our fear of people with a deep, respectful fear of God. This helps us live a life that reflects His purity and righteousness.\r\n\r\nAlways be ready to give an answer—this means that when we live a pure life devoted to Christ, we should always be prepared to explain our hope in Him, no matter who asks or when. The word \"answer\" here comes from the Greek word \"apologia,\" which means a defense, not an apology in the modern sense of saying sorry, but a reasoned explanation.\r\n\r\nThis doesn\'t mean every Christian must be able to explain every detail of the Christian faith, though that might be a good goal. Instead, it means that a Christian\'s life should be so clean and Christ-centered that they can confidently defend their faith against accusations, as mentioned in first Peter chapter 2 verse 12... The key is to always be ready to defend the faith without being burdened by sin. This means, that while we should be ready to defend our faith, we must also consider the right time, person, and extent to do so. If someone is living a morally impure life, they can\'t effectively defend Christian morality.\r\n\r\nThe phrase \"with meekness and fear\" reminds us that our defense should be marked by humility and respect... We\'re not here to win arguments but to share our faith in a way that honors God and respects others, even when they disagree with us.\r\n\r\n\r\nImagine you’re having a conversation online about your faith. Instead of getting defensive or aggressive, you listen actively, respond thoughtfully, and respect different viewpoints, even if they clash with your own. By doing this, you create an environment where meaningful and respectful conversations about faith can happen.\r\n\r\nThis approach maximizes the opportunities for spiritual connection that social media offers.\r\n\r\nAs we navigate sharing our faith online, let\'s remember to be a light in this world, a city on a hill that cannot be hidden. Let our online presence reflect the love, humility, and respect that Christ shows us.','2024-08-20 16:18:02','2024-08-20 16:18:02',NULL),(34,'cju5mkm02mtme9','Self-Examination - Walk Wisely',6,'','4','','Welcome! This is the fourth episode in the social media and Relationships series. We\'re glad you\'re joining us.\r\n\r\nAs Christians, we\'re not just living for ourselves; we\'re representing God in this world, and that means that we must always walk wisely not as the unwise.\r\n\r\nWhen we think about social media as Christians, what comes to mind?... Do you think of other Christians and what they should be doing, while not accounting for your own activity?\r\n\r\nIt’s so important to remember that our online actions should mirror our commitment to Christ. We’re called to transform our lives to reflect Him, especially in this digital age where our online presence can have a big impact on our relationships.\r\n\r\nSocial media often tempts us to keep our individuality and privacy while expecting our partners to be open about their digital lives. But as couples, we\'re called to be transparent with each other, including our actions online. Let\'s be honest, none of us are perfect. That’s why today, we’re focusing on self-examination—making sure we\'re living according to God’s commands, as advised in Ephesians chapter 4.\r\n\r\nYou can pause now to grab your Bible and read along, or just listen as we read these verses from Ephesians chapter 4, verses 17 to 24:...\r\n\r\n“So I say this, and affirm in the Lord, that you are to no longer walk just as the Gentiles also walk, in the futility of their minds, being darkened in their understanding, excluded from the life of God because of the ignorance that is in them, because of the hardness of their heart; and they, having become callous, have given themselves up to indecent behavior for the practice of every kind of impurity with greediness.\r\n\r\nBut you did not learn Christ in this way, if indeed you have heard Him and have been taught in Him, just as truth is in Jesus, that, in reference to your former way of life, you are to rid yourselves of the old self, which is being corrupted in accordance with the lusts of deceit, and that you are to be renewed in the spirit of your minds, and to put on the new self, which in the likeness of God has been created in righteousness and holiness of the truth.”\r\n\r\nThese verses challenge us to analyze our social media use. Is it really any different from before we were followers of Christ? Are we just mixing in a little scripture while continuing old habits? If someone looked at your social media today, would they see a transformed individual?\r\n\r\nPaul warns us about the \"vanity of their minds\"—the meaningless pursuit of likes, shares, and online approval. Chasing digital validation is shallow and can hinder our spiritual growth and affect our relationships with our partner, family, and friends. Paul urges us to put on a new self, created in the likeness of God, filled with righteousness and holiness.\r\n\r\nThis means avoiding content that could lead us into sin and using our platforms to promote spiritual growth through daily scripture reading, prayer, and living out our faith.\r\n\r\nSo, how does this self-examination apply to couples?\r\n\r\nCouples need to understand that they are working together for a common goal... to glorify God. In Genesis chapter 2 verse 24, the Bible says, \"Therefore a man shall leave his father and his mother and hold fast to his wife, and they shall become one flesh.\" This idea of becoming one flesh is not only about physical unity but also about creating a deep emotional and spiritual connection that includes openness and honesty. There’s no room for secrets or actions that benefit just one partner in a relationship.\r\n\r\nEphesians chapter 4 verse 25 says, \"Therefore, each of you must put away falsehood and speak truthfully to your neighbor, for we are members of one another.\" Secrets that harm and deceive do not benefit the long-term survival of a relationship under Christ.\r\n\r\nWe need to have a balanced approach where love, as described in first Corinthians chapter 13, is practiced daily. We might not be perfect, but that\'s not an excuse to sin.\r\n\r\n\r\n\r\nEphesians chapter 4 verse 32 reminds us to be kind and compassionate to one another, forgiving each other just as in Christ God forgave us.\r\n\r\nThis is how we should approach our relationships, both offline and online, striving for unity that respects each other while focusing on transparency and trust.\r\n\r\nLet’s make sure our online presence aligns with our faith and strengthens our relationships, reflecting the love and light of Christ in all we do.','2024-08-20 16:21:16','2024-08-20 16:21:16',NULL),(35,'cju5mkm02myg2p','Mental Health & Social Media',6,'','5','','Hello everyone! Thanks for joining us today.\r\n\r\nWe\'re tackling an important topic that affects many of us: the impact of social media on our mental health. Social media is such a big part of our lives today, and it can really affect how we feel about ourselves. Constant notifications, updates, and the urge to compare ourselves with others can lead to stress, anxiety, and feelings of not being good enough. It’s crucial to recognize these challenges and find a healthier way to use social media.\r\n\r\nThe Bible offers us wonderful advice on maintaining peace and mental stability. Isaiah chapter 26 verse 3 says, \"You will keep in perfect peace those whose minds are steadfast, because they trust in you.\" This verse is a beautiful reminder to keep our focus on God and spiritual truths. When we feel overwhelmed by social media, turning our attention to God can help stabilize our emotions and bring us peace.\r\n\r\nOne practical way to maintain this peace is by taking regular breaks from social media. The Bible talks about the Sabbath in Exodus chapter 20 verses 8 to 11, teaching us the value of resting and stepping back from our usual routines, and in today\'s modern world, our digital activities. Just like the Sabbath refreshes our spirit and body, taking breaks from social media can help us recharge, pay more attention to our relationships, and enjoy life away from screens. This practice isn’t just good for avoiding burnout; it aligns with living a balanced life that honors the rest God encourages us to take.\r\n\r\nSometimes, we can get caught up in mindless scrolling, and before we know it, hours have passed without spending any meaningful time with God. This not only affects our spiritual growth but can leave us feeling empty and unfulfilled. Philippians chapter 4 verse 8 gives us further guidance: \"Finally, brothers and sisters, whatever is true, whatever is noble, whatever is right, whatever is pure, whatever is lovely, whatever is admirable—if anything is excellent or praiseworthy—think about such things.\" Applying this to our social media use, we should focus on content that uplifts, inspires, and draws us closer to God, rather than content that breeds negativity and worldliness.\r\n\r\nConsider creating times when you step away from social media, like during meals or the first and last hour of your day. Think about trying a social media fast once a week or month to focus more on face-to-face relationships and activities that boost your mental health, such as reading, daily prayer, or spending time outdoors. These steps can help you keep a good balance between your online and offline life, ensuring that you stay mentally healthy and live a life that reflects Biblical values.\r\n\r\nBy taking these small steps, we can protect our mental health while still enjoying the benefits of social media. Remember, it\'s all about balance and keeping our eyes on God.\r\n\r\nStay blessed, and remember to keep your mind and heart anchored in Christ’s peace. Let\'s be intentional about the way we walk with God, and ensure it reflects his love and peace.','2024-08-20 16:25:01','2024-08-20 16:25:01',NULL),(36,'cju5mkm02n1ujx','Parenting - Raising Digital Disciples',6,'','6','','Welcome to the final episode in the social media & relationships series. In this episode, we\'re focusing on the significant role of parenting in this digital era. In a world dominated by social media, it’s very important for us as parents to guide our children in ways that reflect God’s values and our faith. We’re called to be examples for our children, guiding them thoughtfully and lovingly.\r\n\r\nThe Bible offers incredible guidance on parenting. For example, Proverbs chapter 22 verse 6 tells us, \"Train up a child in the way he should go; and when he is old, he will not depart from it.\" This wisdom isn’t limited to offline activities—it extends to where our children spend considerable time. As parents, our role in shaping our children\'s behaviors and beliefs is critical, especially when social media can often present values that conflict with Christian teachings.\r\n\r\nFirst, let\'s talk about setting clear guidelines.\r\n\r\nAs the primary influencers in our children’s lives, we need to establish specific rules about how much time they spend on social media and the types of content they should engage with or avoid. It’s important to discuss the values of privacy and respecting others online. This aligns with Deuteronomy chapter 6 verses 6 and 7, which encourages us to keep God’s commandments and discuss them with our children consistently, integrating these teachings into every part of life.\r\n\r\nDeuteronomy chapter 6 verses 6 and 7 says, \"And these words which I command you today shall be in your heart. You shall teach them diligently to your children, and shall talk of them when you sit in your house, when you walk by the way, when you lie down, and when you rise up.\" This passage emphasizes the importance of meditating on God\'s words, consistently teaching them to our children, and making them a regular part of our conversations. We have to embed these truths into every aspect of our daily life.\r\n\r\nThis means our conversations about faith and values shouldn’t be limited to formal settings like church but should be part of everyday interactions—whether we\'re at home, traveling, or during daily routines. We can integrate Scripture into our lives in practical ways, like discussing biblical principles during family meals, reflecting on verses before bed, or using teachable moments throughout the day to reinforce God’s teachings.\r\n\r\nMoving on, Ephesians chapter 6 verse 4 urges us to bring up our children with Christian teachings. This means more than monitoring their screen time; it involves understanding the apps they use, the content they consume, and discussing all these from a Christian perspective. We can set practical boundaries such as having specific times during the day when devices are put away or keeping computers and phones in common family areas to avoid unsupervised use. This helps instill self-control and respect for others, values we dearly want to cultivate in our children.\r\n\r\nWe can encourage our children to use their online presence to positively reflect their faith. This might involve using apps that aid in Bible study, participating in online family devotions, or sharing messages that uplift and inspire. We should also use stories from the Bible to teach values like bravery, honesty, and kindness, and relate these teachings to the things they might encounter on social media.\r\n\r\nTo bring these biblical teachings into everyday practice, encourage your children to start each day with a verse of Scripture to reflect on. Use everyday situations as teaching moments to discuss biblical principles. Create opportunities for family discussions about faith and make Scripture a constant presence in your home by placing Bible verses around the house. Teach your children to practice gratitude and regularly evaluate and adjust your family’s routines to ensure they prioritize spiritual activities.\r\n\r\nBy guiding our children in how they use social media, we are helping them lay a strong foundation in their faith. We’re not shielding them from negative influences but instead, we\'re empowering them to be a positive force online, and to reflect Christ’s love and truth in their interactions. This approach will help them grow into thoughtful, responsible individuals who navigate their digital lives with integrity and Christian values.\r\n\r\nThis commitment to biblical parenting will create a home environment that deeply respects God\'s teachings, preparing each member of your family to live a life led by faith, both online and offline. By implementing these practices, you ensure your children understand and embrace the Christian walk as designed by God.\r\n\r\nThank you for joining us in this series. We hope this discussion empowers you and your family to approach social media with intention and faith, nurturing a digital environment that honors God and enriches your family life. May the Lord richly bless you.','2024-08-20 16:27:39','2024-08-20 16:27:39',NULL),(37,'cju5mkm02n4udd','Selected Scriptures - 1 Peter 3:3-4',6,'','7','','Welcome Everyone! In this episode we\'re focusing on inward and outward adornments.\r\n\r\nThis is found on First Peter chapter 3, verses 3 and 4, which says, \"Do not let your adornment be merely outward—arranging the hair, wearing gold, or putting on fine apparel—rather let it be the hidden person of the heart, with the incorruptible beauty of a gentle and quiet spirit, which is very precious in the sight of God.\" This powerful message reminds us that while outward appearances can be nice, our true focus should be on cultivating inner beauty and character that reflects our faith.\r\n\r\nThe Bible doesn’t dismiss looking presentable or enjoying beauty. God\'s creation is full of beauty—from vibrant sunsets to the intricate patterns on a butterfly’s wing. Beauty is part of God’s design. However, Peter is steering us towards a beauty that doesn’t fade—that which comes from within. Our actions, words, and choices should be driven by a heart that seeks God first, exhibiting the fruits of the Spirit like gentleness, patience, and kindness.\r\n\r\nThink about how this scripture can influence our daily lives, especially in a world where social media often emphasizes and magnifies the external. We can nurture our inner beauty by spending time in God\'s Word, letting Scripture shape our thoughts and actions. Start each day with prayer and reading a passage from the Bible, reflecting on how it can influence your interactions, both online and in person.\r\n\r\nWhen we interact, whether online or off, let\'s focus on speaking words that uplift and encourage others. This aligns with the biblical instruction to have our speech be always full of grace, seasoned with salt (Colossians chapter 4, verse 6). And when it comes to our appearance, while it’s fine to look nice, our priority shouldn’t be to impress others with our looks but to be known for our love, joy, and compassion—qualities that truly reflect Christ.\r\n\r\nBy focusing on growing a gentle and quiet spirit, we follow the guidance in First Peter and set a powerful example in a culture heavily focused on superficial appearances. This doesn’t only apply to women but is equally relevant to men. All followers of Christ are called to prioritize the substance of their character over the style of their clothes or the flashiness of their accessories.\r\n\r\nThis approach to life—focusing on the internal rather than the external—demonstrates what we value most as followers of Jesus. We show the world that our identity in Christ is our most cherished and defining attribute.\r\n\r\nIn this world, where social media often encourages us to present an unrealistic version of ourselves, let\'s strive to be genuine and let our faith shine through. Instead of getting caught up in mindless scrolling and comparing ourselves to others, let\'s use these platforms to share God’s love and wisdom. Remember daily that our true worth comes from how God sees us and how we reflect His love in our lives.\r\n\r\nMay this message inspire you to cultivate inner beauty and live out your faith with sincerity and grace, both online and offline.','2024-08-20 16:29:59','2024-08-20 16:29:59',NULL),(38,'cju4oynm19nzfhk','The Power of Our Words',7,'','Intro','','Welcome, everyone, to \"The Fiery Tongue\" series! In this series, we will explore the immense power our words hold and how they shape all of our relationships, especially within our marriage. In this introductory episode, we’re focusing on \"The Power of Our Words.\" What we say to our spouse and to others around us carries significant weight—far more than we often realize. Just a few words, spoken with care or carelessness, can have a lasting emotional and mental effect.\r\n\r\nThe Bible gives us a powerful reminder of this in James 3:5-6:\r\n\r\n\"Even so the tongue is a little member and boasts great things. See how great a forest a little fire kindles! And the tongue is a fire, a world of iniquity. The tongue is so set among our members that it defiles the whole body, and sets on fire the course of nature; and it is set on fire by hell.\" \r\n\r\nThese two verses from James use vivid imagery to warn us about the power of the tongue. Though it is a small part of our body, the tongue can cause immense harm, much like a tiny spark that sets a large forest on fire. Think about that for a moment—a single spark, so small and seems insignificant, can lead to a wildfire that consumes everything in its path. The same is true for our words. A careless comment or a thoughtless remark can ignite a firestorm of conflict, misunderstanding, and pain.\r\n\r\nJames emphasizes that the tongue \"boasts great things,\" showing its potential to cause significant impact. The Greek word for \"boast\" carries the sense of lifting up the neck in pride, much like a horse does in triumph. This image reminds us that the tongue is powerful and can have far-reaching effects, both good and bad. It has the ability to control and direct, much like a rudder on a ship or a bit in a horse\'s mouth. \r\n\r\nEven though these objects are small, they have the capacity to drive something much larger. In the same way, our words, while small and seemingly insignificant, have the power to guide the direction of our relationships and our lives.\r\n\r\nThe tongue is also described as \"a world of iniquity.\" This means that within our words lies the potential for every kind of sin—lying, gossiping, slandering, and more. It\'s as if the tongue has a mini-world of evil, capable of unleashing great destruction. The phrase \"defiles the whole body\" suggests that the tongue can stain and corrupt not just our speech but our entire being. It affects our character, our reputation, and our witness to others. Just as fire produces smoke that blackens and tarnishes everything it touches, the tongue can spread its poisonous effects throughout our entire life, staining our actions and relationships.\r\n\r\nJames also warns that the tongue \"sets on fire the course of nature.\" This expression refers to the entire cycle of human existence—our life, our relationships, and our legacy. The tongue has the power to disrupt and damage the natural order of things, setting on fire the very fabric of our lives. This isn’t a fleeting moment of anger or frustration; it’s creating lasting harm that can span generations. Think about the conflicts that come up from a single harsh word, the way a rumor can tear apart friendships, or how a lie can destroy trust. The tongue, if not controlled, can lead to a chain reaction of destruction that affects not just us, but everyone around us.\r\n\r\nAnd this destructive potential of the tongue is not from God; rather, it is \"set on fire by hell.\" The term \"hell\" here refers to Gehenna, the place of torment, symbolizing the ultimate source of evil. When our words are used to harm, deceive, or manipulate, they are being fueled by a force opposed to God’s will. This suggests that the tongue, when misused, taps into a hellish source of destruction, capable of igniting all sorts of chaos and hurt. It\'s a sobering reminder that our words have a spiritual impact; they can either align with God’s purposes or oppose them.\r\n\r\nSo, what does this mean for us in our daily lives? It means we must be vigilant in how we use our words. The tongue has the potential to harm or heal, to bless or curse. If we’re not careful, we might find ourselves speaking in ways that tear others down instead of building them up. We need to recognize the power of our words and use them to encourage, uplift, and bring healing. Our speech should reflect the love and grace of God, rather than the destructive forces of anger, bitterness, or envy.\r\n\r\nThroughout this series, we’ll explore practical ways to use our words to strengthen our marriages and relationships. We will turn to God’s Word for guidance, seeking to understand how we can speak life, encouragement, and wisdom into the hearts of those around us. The tongue may be a \"fire,\" but it can also be a source of light and warmth. It has the power to bring comfort, inspire, and heal, but only if we use it with wisdom and love.\r\n\r\nWe’re excited to have you join us. Together, as Kingdom Couples, let’s commit to building stronger marriages and communities through every conversation in \"The Fiery Tongue\" series.\r\n','2024-09-19 19:07:52','2024-09-19 19:07:52',NULL),(39,'cju4oynm19o22i2','Understanding the Impact of Words',7,'','1','','Welcome back to \"The Fiery Tongue\" series. In this episode we’re learning about the impact our words can have on our relationships, particularly how they can either heal or harm. Have you taken the time to analyze your words and how others receive them? \r\n\r\nProverbs 12:18 paints a vivid picture of the power our words hold.\r\n\r\n\"There is one who speaks like the piercings of a sword, but the tongue of the wise promotes health.\" \r\n\r\nThis verse emphasizes the two very different effects that our words can have. On one hand, our words can be like the sharp piercings of a sword, cutting deeply and causing pain. We’re not only talking about harsh or angry words here, we’re also talking about slander, gossip, and even those subtle, damaging whispers that can create division. These words can hurt the one who hears them, inflicting hurt that may be difficult to heal. They can harm reputations, break down friendships, and cause rifts that are hard to repair.\r\n\r\nThink about phrases like, “You never listen to me,” or “I wish you were more like…,” or even the dismissive “I don’t care what you think.” These are the kinds of words that pierce like a sword. They diminish, criticize, and can make our spouse feel unvalued, unloved, and disconnected.\r\n\r\nBut then there’s the flip side: “the tongue of the wise promotes health.” This is where the power of words becomes truly life-giving. When we speak with wisdom, our words have the ability to heal, to close up the wounds that careless or cruel words have made. Wise words bring comfort, restore peace, and can even lead to reconciliation between people who were once at odds.\r\n\r\nConsider the difference when we say things like, “I appreciate everything you do for our family,” or “You mean so much to me,” or simply, “I thank God for you.” These words uplift, encourage, and strengthen the unity between us and our spouse. They bring life and health to the relationship, helping it to grow and flourish.\r\n\r\nAs we navigate our marriages, it’s important to be mindful of how we use our words. Are we speaking in ways that build up and bring healing, or are we allowing careless words to cut deeply and cause harm? Remember that we are of one spirit and that is the Spirit of God. We are also one with our spouse as the Lord has permitted it to be in Genesis 2… Our words have the potential to either nurture and strengthen our relationships or to tear them down.\r\n\r\nAs we continue in \"The Fiery Tongue\" series, let’s commit to using our words wisely, choosing to speak life and healing into our marriages and to our outside relationships. After all, our words can be a powerful tool for good when we allow God’s wisdom to guide us.\r\n\r\nThank you for joining us today. If this episode clicked with you, be sure to share it with others who might benefit. Together, we’re learning to speak life into our marriages and build relationships that honor God and one another.','2024-09-19 19:09:55','2024-09-19 19:09:55',NULL),(40,'cju4oynm19o9y5g','The Biblical Perspective on Speech',7,'','2','','Welcome back to our series, \"The Fiery Tongue.\" In this episode, we’re covering what the Bible says about the words we use and how we can follow the example of Jesus in our communication. To guide us, we’ll be reviewing Ephesians 4:29 and Colossians 4:6.\r\n\r\nLet’s start with Ephesians 4:29:\r\n\"Let no corrupt word proceed out of your mouth, but what is good for necessary edification, that it may impart grace to the hearers.\" \r\n\r\nThe phrase \"corrupt word\" in this verse is quite strong. The Greek word translated as \"corrupt\" literally means \"rotten\" or \"putrid,\" very much like decaying fruit or meat. Just as rotten food is not only unpleasant but also spreads decay, corrupt words can contaminate our relationships and our own selves. We’re not only avoiding obvious vulgar language; this includes any speech that is unwholesome, unprofitable, or harmful—like gossip, slander, or even subtle negativity that chips away at someone’s spirit.\r\n\r\nThis verse then instructs us to speak \"what is good for necessary edification.\" This means our words should build others up, meeting the specific needs of the hearer. Think of it like tailoring our speech to suit the moment—whether someone needs to be encouraged, corrected, or comforted. Our words should be full of grace, offering kindness and understanding, so that they impart blessings to those who hear them.\r\n\r\nLet’s talk marriage, this teaching is especially powerful. Imagine the difference between saying, “You never do anything right,” versus, “I see how hard you’re trying, and I truly appreciate you.” The first statement is like a rotten fruit that spreads decay, while the second is like a nourishing meal that strengthens and builds up the relationship.\r\n\r\nNow, let’s look at Colossians 4:6:\r\n\"Let your speech always be with grace, seasoned with salt, that you may know how you ought to answer each one.\" \r\n\r\nHere, we’re encouraged to ensure our speech is \"with grace,\" meaning it should be kind, gentle, and filled with love. But what does it mean for our speech to be \"seasoned with salt\"? Historically, salt was used to preserve food and enhance its flavor. Similarly, our words should preserve and add value to our conversations. They should be thoughtful and full of wisdom to be effective—never bland or dull.\r\n\r\nRemember when Jesus taught us about the salt of the earth in Mark 9:50, He said, “Salt is good, but if the salt loses its flavor, how will you season it?” Our words, when seasoned with the grace and wisdom that comes from God, become a powerful tool for good, influencing others positively and preserving the truth in our relationships. This means that even in casual conversations, our speech should make an impact and have meaning, rather than being idle or careless.\r\n\r\nFor example, instead of responding to a spouse’s concern with indifference or annoyance, we might say, “I understand why you’re worried; let’s work through this together.” Such a response is not only kind but also thoughtful and constructive, showing that we value the relationship and are committed to maintaining its health.\r\n\r\nJesus modeled this perfectly throughout His ministry. He used His words to teach and heal others. His speech was always filled with grace, and yet it was also \"seasoned with salt\"—it had weight and significance. It also had the ability to change lives. Whether He was speaking to crowds in parables or offering a word of comfort to an individual, His words always had purpose and were filled with love.\r\n\r\nAs we continue through \"The Fiery Tongue\" series, let’s take these biblical teachings and ensure that our words—whether in our marriages or in any other area of life—are always gracious and wise. That our words are not idle and make an impact. By doing so, we can speak life into our relationships, just as Jesus did.\r\n\r\nThank you for joining us today. If this episode made a difference to you, be sure to subscribe and share it with others who might benefit. Together, we’re learning to speak life into our marriages and relationships, building a foundation that honors God and each other.\r\n','2024-09-19 19:16:02','2024-09-19 19:16:02',NULL),(41,'cju4oynm19ode4e','Bridling the Tongue in Anger',7,'','3','','Welcome back to \"The Fiery Tongue\" Series. In this episode, we’re discussing a topic that can be challenging for many of us: Bridling the Tongue in Anger. We’ll explore strategies for controlling our speech when emotions run high and how the Bible guides us to pause and reflect before speaking.\r\n\r\nLet’s start with James 1:19-20:\r\n\"So then, my beloved brethren, let every man be swift to hear, slow to speak, slow to wrath; for the wrath of man does not produce the righteousness of God.\" \r\n\r\nThese two verses provide a roadmap for how we should handle our words, especially in moments of anger. James begins by urging us to be \"swift to hear\"—in other words, we should be eager and ready to listen. This is an essential step because listening allows us to fully understand a situation before reacting. \r\n\r\nThe wisdom in being \"slow to speak\" comes from the understanding that our words, once spoken, cannot be taken back. When we rush to speak, especially in anger, we often say things we regret later on.\r\nThe phrase \"slow to wrath\" is important. Anger is a powerful emotion that can quickly lead to words and actions that are destructive. The Bible recognizes that while anger itself isn’t necessarily sinful, unrestrained anger can lead to sin. As the verse says, “The wrath of man does not produce the righteousness of God.” In other words, our anger doesn’t lead to the kind of righteous life that God desires for us. Instead, it often leads us away from the peace and harmony that should illustrate our relationships.\r\n\r\nThese verses bring to mind the wisdom found in Proverbs 16:32: “He who is slow to anger is better than the mighty, and he who rules his spirit than he who takes a city.” This proverb gives us a picture of the strength and wisdom required to control our temper and our words in challenging situations.\r\n\r\nJames is essentially teaching us that the \"quick speaker is the quick kindler.\" When we speak fast in anger, we’re more likely to ignite more fighting rather than to resolve it. Think of how easily a small spark can set an entire forest ablaze. In the same way, a few reckless words can escalate a situation, causing significant harm in our relationships.\r\n\r\nIn our marriages, this teaching is extremely relevant. It’s easy to let our emotions get the best of us in the heat of the moment, but the Bible encourages us to take a different approach. One practical strategy is to practice pausing before we speak. When anger flares up, our first instinct might be to lash out, but if we take a moment to breathe and reflect on our words, we allow ourselves the time to choose our words carefully. This pause can prevent us from saying something we’ll later regret and helps us respond thoughtfully instead of reacting impulsively.\r\n\r\nFor example, instead of blurting out something hurtful like, “You always do this!”—which can only escalate the situation—we might pause and choose to say, “I’m feeling really upset right now. Can we talk about this when we’re both calmer?” This approach not only helps to de-escalate the conflict but also opens the door to a more productive and loving conversation later on.\r\n\r\nJames also warns us that \"the wrath of man does not produce the righteousness of God.\" This is a serious point: our anger, especially when expressed in harsh words, does not lead to the righteous life that God desires for us. Instead, it often results in division, hurt, and often, regret. The goal is to align our responses with God’s righteousness, allowing His peace to rule in our lives, even in moments of tension.\r\n\r\nSo, how do we align ourselves with this teaching? One way is to remember that our words should build up rather than tear down. This means that even in difficult conversations, we should strive to speak in ways that are seasoned with love, that are constructive, and aimed at reconciliation. By doing so, we not only honor God but also strengthen our marriages.\r\n\r\nAs we continue to navigate the challenges of bridling our tongues in anger, let’s commit to being swift to hear, slow to speak, and slow to wrath. By practicing these principles, we can have peace and understanding in our marriages, creating an environment that reflects God’s love and righteousness.\r\n\r\nThank you for joining us today. If you found this episode helpful, be sure to subscribe and share it with others who might benefit. Together, we’re learning to speak life into our marriages and relationships, building a foundation that honors God and each other in \"The Fiery Tongue\" series.\r\n','2024-09-19 19:18:43','2024-09-19 19:18:43',NULL),(42,'cju4oynm19oh66r','Speaking with Love',7,'','4','','Welcome back to \"The Fiery Tongue\" series. In this episode we’re exploring the critical role of speech in maintaining healthy relationships, focusing on how speaking with love can truly impact the way we interact with our spouse, family, and friends. \r\n\r\nLet’s begin with 1 Peter 3:10:\r\n\"For he who would love life and see good days, let him refrain his tongue from evil, and his lips from speaking deceit.\" \r\n\r\nThis verse highlights that if we desire a life filled with joy and peace, it begins with how we use our words. We must intentionally choose to speak in ways that uplift rather than tear down. This scripture encourages us to hold back from speaking evil and to keep deceit far from our lips, reminding us that our words directly influence the quality of our life and relationships.\r\n\r\nImagine a moment of tension in your relationship. It’s easy to feel the temptation to lash out, especially when emotions are running high. The Bible, however, calls us to pause in these moments. Even when the evil word is right on the tip of our tongue, we’re urged to hold back, to refrain. Instead of speaking words that could escalate the situation, we’re called to choose silence or, better yet, words that show grace and are edifying. By doing so, we prevent unnecessary wounds that could take time to heal, making room for reconciliation and peace.\r\n\r\nIn our relationships, particularly in marriage, trust is the foundation. This verse also warns against speaking deceit—whether through outright lies, half-truths, or manipulative words. Consider the small moments of dishonesty in everyday life—like when your spouse asks if something’s wrong, and you say “nothing,” even though there is, or when you exaggerate details to make your point seem stronger. These might seem minor, but they chip away at the trust and intimacy in the relationship. Choosing to be honest, even in the little things, builds a stronger bond over time.\r\n\r\nIt’s essential to approach our conversations with empathy. Before speaking, we can take a moment to consider how our words will affect the other person. This empathetic approach helps to soften the conversation, opening the door to mutual understanding and compassion. Speaking with empathy involves not just choosing our words carefully but also delivering them with a tone and attitude that reflects love and respect.\r\n\r\nAt the same time, honesty remains crucial, but it should always be tempered with kindness. Even when addressing difficult issues, we can choose words that are gentle and aimed at healing rather than hurting. For example, instead of pointing fingers or focusing on what went wrong, we can guide the conversation toward finding a solution. This shifts the dynamic from conflict to collaboration, creating a spirit of unity and strengthening the relationship.\r\n\r\nIncorporating words of encouragement and affirmation into our daily interactions also plays a vital role. Regularly expressing appreciation and acknowledging the positive qualities of our spouse or loved ones helps to build them up and creates a loving environment where the relationship can thrive. These small acts of kindness through our words can have a deep impact, making the other person feel valued and cherished.\r\n\r\nBy making these practices a part of our daily lives, we align our speech with the biblical principles found in 1 Peter 3:10. This alignment not only leads to better relationships but also contributes to a life filled with the kind of joy and peace that God desires for us.\r\n\r\nThank you for joining us on this episode. Be sure to subscribe and share this podcast with others who might benefit. Together, we’re learning to speak life into our marriages and relationships, building a foundation that honors God and each other in \"The Fiery Tongue\" series.\r\n','2024-09-19 19:21:39','2024-09-19 19:21:39',NULL),(43,'cju4oynm19oks5r','Gossip and Slander: The Hidden Traps',7,'','5','','Welcome back to \"The Fiery Tongue\" Series. In this episode we’re talking about the hidden traps of gossip and slander, and how these seemingly small sins can cause so much damage in our relationships. \r\n\r\nProverbs 16:28 gives us a clear warning about the destructive power of our words:\r\n\"A perverse man sows strife, and a whisperer separates the best of friends.\" \r\n\r\nThis verse paints a vivid picture of the harm that can be caused by gossip and slander. It describes a person who, through twisted and malicious words, deliberately creates conflicts. Just like a farmer planting seeds in a field, this individual plants seeds of disagreements in people. Unfortunately, these seeds can grow into full-blown conflicts, tearing apart relationships.\r\n\r\nThe verse also speaks about the role of a \"whisperer\"—someone who spreads gossip in secret, often behind the backs of those involved. This person thrives on stirring up trouble by sharing information that may be exaggerated or completely false. The result? Destroyed relationships. Gossip and slander don’t just harm the person being talked about; they also corrupt the heart of the one speaking and poison the minds of those who listen.\r\n\r\nThe term \"separates the best of friends\" is particularly striking. It highlights how even the most intimate and trusted relationships can be destroyed by a few harmful words. It’s not just the lies themselves that cause damage; it’s the way these words sow distrust and suspicion, making it difficult for people to see each other with the same affection and respect they once had.\r\n\r\nIn Christian communities, the dangers of gossip and slander are especially destructive. These sins can slip in subtly, often disguised as concerns or prayer requests, but their impact is anything but caring. They create divisions, breed resentment, and ultimately weaken the unity that should define us as followers of Christ.\r\n\r\nSo how can we avoid falling into these hidden traps? First, it’s essential to be mindful of our own words. Before speaking about someone, especially when they’re not present, we should ask ourselves: Is what I’m about to say true? Is it necessary? Is it kind? If the answer to any of these questions is no, it’s better to remain silent. Gossip and slander often thrive on idle talk, so by choosing our words carefully, we can prevent these seeds of discord from taking root.\r\n\r\nWe also need to be vigilant about what we allow ourselves to hear. When someone comes to us with gossip, it’s important to gently but firmly redirect the conversation. We might say something like, “I’m not comfortable discussing this without them being here. Let’s talk about something else.” By refusing to participate in gossip, we not only protect our own minds but also set a positive example for others.\r\n\r\nAddressing gossip when it arises is another crucial step. If we find ourselves in a situation where gossip or slander is spreading, we can take the opportunity to address it directly. This might involve correcting false information or encouraging others to speak directly to the person involved rather than behind their back. Confronting gossip with truth and love can help stop it in its tracks, preserving the peace and unity within our relationships.\r\n\r\nFinally, it’s important to create a culture of transparency and forgiveness within our relationships and communities. When we encourage open communication and a spirit of reconciliation, we create an environment where gossip and slander struggle to take hold. In such a culture, people feel safe to be vulnerable, knowing they are valued and respected, not judged or talked about behind their backs.\r\n\r\nAs we strive to avoid the hidden traps of gossip and slander, let’s remember Proverbs 16:28. Our words have incredible power—power to build up or to tear down, to bring people together or to drive them apart. By choosing to speak with integrity and love, we can create stronger, healthier relationships that reflect the unity and grace of God.\r\n\r\nThank you for joining us for this episode. Be sure to subscribe and share this episode with others who might benefit. Together, we’re learning to speak life into our marriages and relationships, building a foundation that honors God and each other in \"The Fiery Tongue\" series.\r\n','2024-09-19 19:24:28','2024-09-19 19:24:28',NULL),(44,'cju4oynm19oppgl','Taming the Digital Tongue',7,'','6','','Welcome back to \"The Fiery Tongue\" series! In this episode we’re covering something that\'s super relevant in our digital age: Taming the Digital Tongue. With so much of our communication happening online—through social media, emails, and text messages—it\'s just as important to control our speech digitally as it is in face-to-face conversations. The Bible guides us on how to communicate online, reminding us to honor God with every word we type.\r\n\r\nAs You know, the digital world brings some unique challenges. When we talk to someone face-to-face, we can see their reactions, feel the mood of the conversation, and see if we\'ve offended someone. But online, that personal connection is missing. It\'s easy to forget that there\'s a real person on the other side of the screen, and this detachment can sometimes lead us to say things we might never say in person. That’s why it’s crucial to remember that the words we type, carry just as much weight as the words we speak.\r\n\r\nProverbs 18:21 tells us, “Death and life are in the power of the tongue, and those who love it will eat its fruit.” This verse is a powerful reminder that our words—whether spoken or written—carry immense power. They can either bring life or cause harm, build up or tear down, bless or curse. The tongue is an instrument capable of producing great good or significant harm, and we will without doubt face the consequences of how we use it, for better or worse.\r\n\r\nThe tongue has the power to bring \"death and life.\" This means our words can deeply impact not just others but also ourselves. A careless or hurtful comment online can cause deep emotional pain, while a thoughtful and kind word can uplift and encourage someone in ways we might not even realize. And those who love to talk or share their opinions online? They need to be especially mindful because, as the proverb says, they\'ll \"eat the fruit\" of their words—they\'ll experience the outcomes, whether positive or negative, of what they choose to say.\r\n\r\nOne of the biggest hurdles with digital communication is that it lacks context. When we send a text, email, or post something on social media, there\'s no tone of voice, facial expressions, or body language to help pass along what we truly mean. This makes it even more important to be thoughtful and deliberate in our online words. Before hitting \"send\" or \"post,\" let\'s ask ourselves: Is this message clear? Could it be misunderstood? Am I expressing myself in a way that reflects Christ’s love and wisdom?\r\n\r\nJames 1:19 offers great advice that perfectly applies to our online interactions: “Be swift to hear, slow to speak, slow to wrath.” We live in a fast-paced world, it\'s easy to react quickly, especially when we feel upset or offended. But James encourages us to take a moment, to pause and really think before we respond. In the digital world, that means reading carefully and choosing our words wisely. This approach can prevent unnecessary conflicts and aligns our communication with the principles of our faith.\r\n\r\nEphesians 4:29 challenges us to think about whether our digital communication is building others up or tearing them down. It says, “Let no corrupt word proceed out of your mouth, but what is good for necessary edification, that it may impart grace to the hearers.” This verse reminds us that our words—whether spoken or typed—should be used to encourage and bring grace to our conversations, rather than adding to the negativity and stress that so often shape our online interactions.\r\n\r\nSo what does taming the digital tongue mean? It can mean stepping back before responding to something that frustrates or angers us online. It could mean choosing not to engage in heated discussions that we know will lead to conflict rather than constructive conversations. Or it might involve using our platforms to share messages of hope, encouragement, and love, instead of just venting frustrations or criticisms.\r\n\r\nWhen we find ourselves in difficult online conversations, it\'s also important to approach them with humility and grace. Remember, the person on the other side of the screen is a human being, made in the image of God, just like us. Keeping this in mind can help us navigate even the most argumentative topics with compassion and a genuine desire for understanding, rather than just trying to win an argument.\r\n\r\nFinally, let’s be mindful of how much time we spend online and what kind of content we\'re consuming. The digital world is full of material that can shape our thoughts, attitudes, and ultimately, our speech. By setting boundaries for ourselves and being selective about what we engage with, we can protect our hearts and minds from being drawn into negativity or sin.\r\n\r\nAs we continue to navigate the difficulties of digital communication, let’s remember our ultimate goal: to reflect Christ in everything we do—including how we communicate online. By taming the digital tongue, we can be a light in the often-dark world of social media and online platforms, pointing others toward the love, grace, and truth of God.\r\n\r\nThanks for joining us for this episode. Be sure to subscribe and share this series with others who might benefit. Together, we’re learning to speak life into our marriages and relationships, building a foundation that honors God and each other in \"The Fiery Tongue\" series.\r\n','2024-09-19 19:28:18','2024-09-19 19:28:18',NULL),(45,'cju4oynm19oug0x','Encouragement and Edification through Words',7,'','7','','Welcome back to \"The Fiery Tongue\" series. In this episode we will be speaking about the heart and our words. How does the state of our hearts affect the words we speak? How can we use those words to encourage and build up those around us? \r\n\r\nLet’s start with a verse that really lays it out for us. Luke 6:45 says, “A good man out of the good treasure of his heart brings forth good; and an evil man out of the evil treasure of his heart brings forth evil. For out of the abundance of the heart his mouth speaks.” What Jesus is telling us here is pretty clear: our words aren’t just random. They come from deep within us, from what’s stored up in our hearts. If we’re harboring kindness, love, and grace, that’s what’s going to come out. But if we’re holding onto bitterness, anger, or unforgiveness, our words are going to show that, too.\r\n\r\nThis is a big deal, especially in our relationships—whether it’s with our spouse, our kids, our friends, or even online. If we’re noticing that our words are often harsh or critical, that’s a sign we need to take a look at what’s going on inside of us. Our words are like the fruit on a tree; they show what’s happening in the heart, the root of it all.\r\n\r\nSo, how do we start changing our words? It starts with changing our hearts. This means taking some time to reflect on what we’re allowing to take root inside us. Are we filling up on God’s Word and letting that shape our thoughts and attitudes? Or are we letting the stress of life, unresolved anger, or the negativity of the world take over?\r\n\r\nOne practical step is to spend time in the Bible. God’s Word is like a mirror—it shows us where we need to make changes and guides us in the right direction. Another step is prayer. Through prayer, we can ask God to cleanse our hearts from anything that’s not like Him and to fill us with His love and wisdom. It’s a way of inviting God into our daily lives to help us be more mindful of what we say.\r\n\r\nAnd let’s not forget the importance of choosing our words carefully. Before we speak, especially in moments of frustration or stress, we can pause and ask ourselves: Are my words kind? Are they necessary? Will they build up or tear down? This small pause can make a big difference in how our words are received.\r\n\r\nNow, let’s shift gears a bit to talk about the power of our words to encourage and uplift others. 1 Thessalonians 5:11 says, “Therefore comfort each other and edify one another, just as you also are doing.” This is a beautiful reminder that we have the power to build each other up with our words. In a world where it’s so easy to be negative or critical, choosing to speak life and encouragement is a powerful way to reflect God’s love.\r\n\r\nProverbs 18:21 also reminds us that “Death and life are in the power of the tongue, and those who love it will eat its fruit.” This means our words can either bring life or cause harm. They can either encourage and build up or tear down and destroy. The choice is ours, and we will experience the consequences of what we say, whether good or bad.\r\n\r\nSo, how do we use our words to encourage others? One way is by being specific with our compliments and affirmations. Instead of just saying, “Good job,” try to point out something specific you appreciate, like, “I really admire how you handled that situation with such patience and grace.” It makes your encouragement more meaningful and shows that you’re paying attention.\r\n\r\nAnother way to encourage is by sharing scripture. God’s Word is full of promises and truths that can bring comfort and hope. If someone you know is going through a tough time, sending them a verse that’s helped you can be a simple yet powerful way to lift them up.\r\n\r\nAnd let’s remember that our words matter not just in private conversations but also in public, like on social media. With so much negativity online, choosing to post positive, uplifting messages can make a big difference. It’s about being a light in a world that often feels pretty dark.\r\n\r\nAs we wrap up today, let’s commit to being more intentional with our words. Let’s aim to speak life, to build up, and to reflect the love and grace of God in all our interactions. By doing this, we’re not just following God’s command in 1 Thessalonians 5:11, but we’re also creating a community that truly reflects His love.\r\n\r\nThanks for joining us today. Make sure to subscribe and share this episode with others who might need some encouragement. Together, we’re learning to speak life into our marriages and relationships, building a foundation that honors God and each other in \"The Fiery Tongue\" series.\r\n','2024-09-19 19:31:59','2024-09-19 19:31:59',NULL),(46,'cju4oynm19oxoh9','Confession and Repentance',7,'','8','','Welcome back to our series, \"The Fiery Tongue.\" \r\n\r\nIn this episode, we\'re talking about something that’s really important, but often pretty challenging: confession and repentance. The goal here is to live in peace with everyone, as much as it depends on us, just like Paul encourages in Romans 12:18\r\n\r\nIn order for us to do this, we\'re going to explore how confession and repentance can lead to healing and restoration in our relationships. Let\'s ground our discussion in James 5:16, which gives us clear guidance on how to approach this:\r\n\r\n\"Confess your trespasses to one another, and pray for one another, that you may be healed. The effective, fervent prayer of a righteous man avails much.\" \r\n\r\nThis verse is powerful because it calls us to do something that’s not always easy—confess to one another when we’ve messed up. It’s not about secretly and quietly saying sorry to God; We have to acknowledge the impact of our words and actions on others and take steps to make things right.\r\n\r\nWhen we confess our faults to each other, we’re opening the door to healing. Bringing our sins into the light takes away the power they hold over us. It’s a humbling experience, but it’s also freeing. When we confess, we’re saying, “I recognize I’ve caused harm, and I want to make it right.” This act of humility can bring healing to both the one who confesses and the one who has been hurt. It creates an environment of honesty and vulnerability where the real healing can take place.\r\n\r\nConfession isn’t only a solo act; it’s a joint one. When we confess, we’re asking others to join us in our path towards healing. We’re inviting them to pray with us and for us, to support us as we seek to make amends. And James assures us that there’s great power in these prayers. The “effective, fervent prayer of a righteous person” has tremendous impact. When we pray earnestly—whether we’re the one who’s confessed or the one who’s been hurt—our prayers move the heart of God and open the door to our own personal transformation.\r\n\r\nBut what if you’re the one who’s been hurt? The same principles apply. We’re called to pray for those who have wronged us, not just for their change of heart, but for our own healing too. Holding onto bitterness or resentment can keep our wounds open. But when we pray for those who have hurt us, we’re allowing God to work in our hearts, softening us and paving the way for real reconciliation.\r\n\r\nI know the idea of confession can feel intimidating, maybe even a little scary. But it’s not about shaming ourselves or feeling condemned. It’s about embracing God’s grace, recognizing our need for it, and taking steps to restore the relationships our words may have damaged.\r\n\r\nAfter confession comes repentance. This is where we turn away from the behavior that caused the hurt and commit to doing better. We have to make a change, not just say sorry. A sincere apology acknowledges the pain we’ve caused and shows a real desire to make things right. It’s a commitment to learn from our mistakes and to work on healing the relationship.\r\n\r\nAnd then there’s forgiveness, which is so crucial. Forgiveness is a gift, both to the person who hurt us and to ourselves. It frees us from the weight of carrying pain and allows us to move forward. Forgiveness doesn’t mean forgetting what happened or saying it was okay, but it does mean letting go of its hold on us and choosing to love anyway. When we forgive, we mirror the grace that God has extended to us, showing the same mercy we’ve been given.\r\n\r\nIn our Christian communities, where our words have so much power, practicing confession, repentance, and forgiveness is essential. These steps not only restore relationships but also strengthen the unity we have in Christ. When we’re quick to confess, eager to repent, and ready to forgive, we create a culture of grace and healing.\r\n\r\nAs we try to live out these principles, let’s keep the promise of James 5:16 in mind. Healing comes through confession and prayer, and there’s great power in our earnest prayers. Let’s be quick to ask for forgiveness, willing to turn away from our mistakes, and ready to forgive, knowing that in doing so, we reflect Jesus’ heart and bring His healing into our relationships.\r\n\r\nThanks for tuning in to this episode. If you found this helpful, don’t forget to subscribe and share this episode with others who might need to hear it. Together, we’re learning to speak life into our marriages and relationships, building a foundation that honors God and each other in \"The Fiery Tongue\" series.\r\n','2024-09-19 19:34:30','2024-09-19 19:34:30',NULL);
/*!40000 ALTER TABLE `videos` 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 2024-09-23 13:32:17
