HOME


sh-3ll 1.0
DIR:/chroot/home/temp/iwxfinal/dbs_prefinal/
Upload File :
Current File : /chroot/home/temp/iwxfinal/dbs_prefinal/calendarholidays_ch.sql
-- MariaDB dump 10.19  Distrib 10.6.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: calendarholidays_ch
-- ------------------------------------------------------
-- Server version	10.6.16-MariaDB

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

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

DROP TABLE IF EXISTS `events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `summary` varchar(255) NOT NULL DEFAULT '',
  `cal_uri` varchar(255) DEFAULT NULL,
  `cat_id` int(10) unsigned NOT NULL,
  `cat_name` varchar(40) NOT NULL DEFAULT '',
  `event_main_id` int(10) unsigned NOT NULL COMMENT 'Event main Id',
  `sub_cat_name` varchar(40) NOT NULL DEFAULT '',
  `sub_cat_uri` varchar(255) DEFAULT NULL,
  `start_date_time` datetime NOT NULL COMMENT 'event start date',
  `end_date_time` datetime DEFAULT NULL COMMENT 'event end date',
  `year` int(11) DEFAULT NULL,
  `timezone` varchar(40) DEFAULT NULL,
  `is_repeat` tinyint(1) DEFAULT NULL,
  `eid` varchar(255) DEFAULT NULL COMMENT 'event id',
  `parent_id` varchar(255) DEFAULT NULL COMMENT 'parent event Id',
  `event_type` varchar(45) DEFAULT NULL COMMENT 'Type of the event ex: For cricket : ODI/TEST/T20',
  `team` varchar(50) DEFAULT NULL COMMENT 'only for sports, ',
  `freq` varchar(50) DEFAULT NULL COMMENT 'Frequency Formula',
  `img_path` varchar(255) DEFAULT NULL,
  `location` varchar(50) DEFAULT NULL COMMENT 'Location of event',
  `page_link` varchar(255) DEFAULT NULL COMMENT 'URL for the content page',
  `is_all_day` char(1) DEFAULT NULL,
  `result` tinytext DEFAULT NULL COMMENT 'JSON format result for sports matches',
  `details` text DEFAULT NULL COMMENT 'Free text for event',
  `created_on` date DEFAULT NULL,
  `created_by` varchar(120) DEFAULT NULL,
  `is_active` char(1) DEFAULT '' COMMENT 'Y=active',
  PRIMARY KEY (`id`),
  KEY `cat_id` (`cat_id`),
  KEY `event_main_id` (`event_main_id`),
  CONSTRAINT `events_ibfk_1` FOREIGN KEY (`cat_id`) REFERENCES `events_main` (`cat_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `events_ibfk_3` FOREIGN KEY (`event_main_id`) REFERENCES `events_main` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6854 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `events_category`
--

DROP TABLE IF EXISTS `events_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `events_category` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(40) DEFAULT NULL,
  `uri` varchar(120) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `type_uri` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `img_path` varchar(255) DEFAULT NULL,
  `rank` int(11) DEFAULT NULL,
  `is_active` char(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `events_category`
--

LOCK TABLES `events_category` WRITE;
/*!40000 ALTER TABLE `events_category` DISABLE KEYS */;
INSERT INTO `events_category` VALUES (1,'Baseball','/{year}-baseball-events','sports','/{year}-sports-events',NULL,'baseball.jpg',NULL,'N'),(2,'Basketball','/{year}-basketball-events','sports','/{year}-sports-events',NULL,'basketball.jpg',NULL,'N'),(3,'Cricket','/{year}-cricket-events','sports','/{year}-sports-events',NULL,'cricket.jpg',NULL,'N'),(4,'American Football','american-football','sports','/{year}-sports-events',NULL,'football.jpg',NULL,'N'),(5,'Hockey','hockey','sports','/{year}-sports-events',NULL,'hockey.jpg',NULL,'N'),(6,'Rugby','rugby','sports','/{year}-sports-events',NULL,'rugby.jpg',NULL,'N'),(7,'F1 Race','f1-race','sports','/{year}-sports-events',NULL,'f1-race.jpg',NULL,'N'),(8,'Tennis','tennis','sports','/{year}-sports-events',NULL,'tennis.jpg',NULL,'N'),(9,'Musical Plays','musical-plays','entertainment',NULL,NULL,'musical-plays.jpg',NULL,'N'),(10,'Broadways','broadways','entertainment',NULL,NULL,'broadways.jpg',NULL,'N'),(11,'Theater Plays','theater-plays','entertainment',NULL,NULL,'theater-plays.jpg',NULL,'N'),(12,'Car Expo','car-expo','automobiles',NULL,NULL,'car-expo.jpg',NULL,'N'),(13,'Micrsoft TechEd','microsoft-teched','Technology',NULL,NULL,'microsoft-teched.jpg',NULL,'N'),(38,'Health Awareness Events','/{year}-health-awareness-events','Health','/{year}-health-events',NULL,NULL,NULL,'N'),(39,'Health Awareness Months Calendar','/events/{year}-health-awareness-months-calendar','Health','/{year}-health-events',NULL,NULL,NULL,'N'),(40,'Health Awareness Days Calendar','/events/{year}-health-awareness-days-calendar','Health','/{year}-health-events',NULL,'',NULL,'N'),(41,'Fun Days','/events/{year}-fun-days','fun events','/{year}-fun-events',NULL,'fun-events.jpg',NULL,'Y');
/*!40000 ALTER TABLE `events_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `events_main`
--

DROP TABLE IF EXISTS `events_main`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `events_main` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uri` varchar(255) DEFAULT NULL,
  `cal_name` varchar(45) NOT NULL DEFAULT '',
  `summary` varchar(255) NOT NULL DEFAULT '',
  `cat_type` varchar(75) DEFAULT NULL,
  `cat_type_uri` varchar(255) DEFAULT NULL,
  `cat_id` int(10) unsigned NOT NULL,
  `cat_name` varchar(40) NOT NULL DEFAULT '',
  `cat_uri` varchar(255) DEFAULT NULL,
  `sub_cat_id` int(10) unsigned DEFAULT NULL,
  `sub_cat_name` varchar(40) DEFAULT '',
  `sub_cat_uri` varchar(255) DEFAULT NULL,
  `details` text DEFAULT NULL COMMENT 'short description of the calendar',
  `year` int(11) DEFAULT NULL,
  `start_date_time` datetime DEFAULT NULL,
  `end_date_time` datetime DEFAULT NULL,
  `calendar_id` varchar(255) DEFAULT NULL,
  `timeZone` varchar(40) DEFAULT NULL,
  `page_link` varchar(255) DEFAULT NULL,
  `img_path` varchar(255) DEFAULT NULL,
  `popularity` int(11) DEFAULT NULL,
  `fgcolor` varchar(30) DEFAULT NULL,
  `bgcolor` varchar(30) DEFAULT NULL,
  `location` varchar(40) DEFAULT NULL,
  `icon_path` varchar(255) DEFAULT '',
  `calendar_link` varchar(255) DEFAULT NULL COMMENT 'page link for the calendar content',
  `redirect` varchar(75) DEFAULT NULL,
  `created_on` date DEFAULT NULL,
  `created_by` varchar(40) DEFAULT NULL,
  `is_active` char(1) DEFAULT NULL COMMENT 'Y=active',
  PRIMARY KEY (`id`),
  UNIQUE KEY `calendar_id` (`calendar_id`),
  UNIQUE KEY `uri` (`uri`),
  KEY `cat_id` (`cat_id`),
  CONSTRAINT `events_main_ibfk_4` FOREIGN KEY (`cat_id`) REFERENCES `events_category` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=418 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `events_main`
--

LOCK TABLES `events_main` WRITE;
/*!40000 ALTER TABLE `events_main` DISABLE KEYS */;
INSERT INTO `events_main` VALUES (1,'/when-is/national-cousins-day','National Cousins Day','National Cousins Day','fun events','/{year}-fun-events',41,'Fun','/{year}-fun-days',NULL,'',NULL,NULL,2023,'2023-07-24 00:00:00','2023-07-24 00:00:00',NULL,NULL,'/national-cousins-day/','national-cousins-day.jpg',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,'Y'),(2,'/when-is/husband-appreciation-day','Husband Appreciation day','Husband Appreciation Day','fun events','/{year}-fun-events',41,'Fun','/{year}-fun-days',NULL,'',NULL,NULL,2023,'2023-04-15 00:00:00','2023-04-15 00:00:00',NULL,NULL,'/husband-appreciation-day/','husband-appreciation-day.jpg',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,'Y'),(3,'/when-is/cyber-monday','Cyber Monday','Cyber Monday','fun events','/{year}-fun-events',41,'Fun','/{year}-fun-days',NULL,'',NULL,NULL,2023,'2023-11-27 00:00:00','2023-11-27 00:00:00',NULL,NULL,'/cyber-monday/','cyber-monday.jpg',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,'Y'),(4,'/when-is/black-friday','Black Friday','Black Friday','fun events','/{year}-fun-events',41,'Fun','/{year}-fun-days',NULL,'',NULL,NULL,2023,'2023-11-24 00:00:00','2023-11-24 00:00:00',NULL,NULL,'/black-friday/','black-friday.jpg',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,'Y'),(5,'/when-is/candle-day','Candle day','Candle Day','fun events','/{year}-fun-events',41,'Fun','/{year}-fun-days',NULL,'',NULL,NULL,2023,'2023-12-02 00:00:00','2023-12-02 00:00:00',NULL,NULL,'/candle-day/','candle-day.jpg',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,'Y');
/*!40000 ALTER TABLE `events_main` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `events_sub_category`
--

DROP TABLE IF EXISTS `events_sub_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `events_sub_category` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uri` varchar(50) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `cat_type` varchar(75) DEFAULT '',
  `cat_type_uri` varchar(255) DEFAULT NULL,
  `cat_id` int(10) unsigned DEFAULT NULL,
  `cat_name` varchar(40) DEFAULT NULL,
  `cat_uri` varchar(255) DEFAULT NULL,
  `img_path` varchar(255) DEFAULT NULL,
  `is_active` char(1) DEFAULT NULL COMMENT 'Y=active',
  PRIMARY KEY (`id`),
  UNIQUE KEY `uri` (`uri`),
  KEY `cat_fk` (`cat_id`),
  CONSTRAINT `cat_fk` FOREIGN KEY (`cat_id`) REFERENCES `events_category` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `events_sub_category`
--

LOCK TABLES `events_sub_category` WRITE;
/*!40000 ALTER TABLE `events_sub_category` DISABLE KEYS */;
INSERT INTO `events_sub_category` VALUES (1,'/events/{year}-icc-schedule','International Cricket Council - ICC','sports','/{year}-sports-events',3,'cricket','cricket',NULL,'N'),(2,'/events/{year}-mlb-schedule','Major League Baseball - MLB','sports','/{year}-sports-events',1,'baseball','/{year}-baseball-events',NULL,'N'),(3,'/events/{year}-nba-schedule','National Basketball Association - NBA','sports','/{year}-sports-events',2,'basketball','basketball',NULL,'N'),(4,'/events/{year}-nfl-schedule','National Football League - NFL','sports','/{year}-sports-events',4,'amerircan football','amerircan football',NULL,'N'),(6,'/events/{year}-nhl-schedule','National Hockey League - NHL','sports','/{year}-sports-events',5,'hockey','hockey',NULL,'N'),(7,'/events/asian-series-schedule','Asian Series - AS','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(8,'/events/caribbean-world-series-{year}','Caribbean World Series - CWS','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(10,'/events/{year}-chinese-baseball-league','Chinese Baseball League - CPBL','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(11,'/dominican-winter-league','Dominican Winter League - DL','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(12,'/mexican-pacific-baseball-league','Mexican Pacific Baseball League - LMP','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(13,'/events/minor-league-baseball-2022-schedule','Minor League Baseball - MINBB','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(14,'/events/{year}-nippon-professional-baseball-games','Nippon Professional Baseball - NPB','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(15,'/venezuelan-winter-league','Venezuelan Winter League - VL','sports','/{year}-sports-events',1,'baseball','baseball',NULL,'N'),(16,'/australian-womens-national-basketball-league','Australian Women\'s National Basketball League - WNBL','sports','/{year}-sports-events',2,'basketball','basketball',NULL,'N'),(17,'/events/{year}-cfl-schedule','Canadian Football League - CFL','sports','/{year}-sports-events',4,'american football','america-football',NULL,'N'),(18,'/events/{year}-ncaa-schedule','NCAA Football - NCAAF','sports','/{year}-sports-events',4,'american football','america-football',NULL,'N'),(19,'/{year}-ipl-schedule','Indian Premier League - IPL','sports','/{year}-sports-events',3,'cricket','cricket',NULL,'N'),(20,'/amlin-challenge-cup','Amlin Challenge Cup - ECC','sports','/{year}-sports-events',6,'rugby','rugby',NULL,'N'),(22,'/{year}-ahl-schedule','American Hockey League - AHL','sports','/{year}-sports-events',5,'hockey','hockey',NULL,'N'),(23,'/{year}-ehl-schedule','East Coast Hockey League - ECHL','sports','/{year}-sports-events',5,'hockey','hockey',NULL,'N'),(36,'/events/january-health-awareness-month-{year}','January Health Awareness Month','health','/{year}-health-events',38,'Health','/{year}-health-awareness-events',NULL,'N'),(37,'/events/february-health-awareness-month-{year}','February Health Awareness Month','health','/{year}-health-events',38,'Health','/{year}-health-awareness-events',NULL,'N');
/*!40000 ALTER TABLE `events_sub_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `holiday_master`
--

DROP TABLE IF EXISTS `holiday_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `holiday_master` (
  `id` int(5) NOT NULL AUTO_INCREMENT,
  `area_type` varchar(15) DEFAULT NULL COMMENT 'country, religious, regional(tamil), state(india),bank-geo,market(NSE),intl-org(UN)',
  `area` varchar(20) DEFAULT NULL COMMENT 'like: India, Hindu, Karnatama, icici bank etc.',
  `country` varchar(20) DEFAULT NULL,
  `region` varchar(15) DEFAULT NULL COMMENT 'Economic Regions',
  `religion` varchar(15) DEFAULT NULL COMMENT 'Obsolete, should be changed to region',
  `holiday` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'Holiday name',
  `lang_key` varchar(75) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'language key for localization',
  `rank` tinyint(1) DEFAULT NULL COMMENT '1=single country, 2= multile/international',
  `show_content` varchar(1) DEFAULT NULL COMMENT 'x=yes:show snippet',
  `holiday_date` date DEFAULT NULL COMMENT 'Consider Month and Date only',
  `same_date` varchar(1) DEFAULT NULL COMMENT 'if holiday falls on same day',
  `page_link` varchar(150) DEFAULT NULL,
  `article` tinyint(1) DEFAULT NULL COMMENT '1: article exists',
  `observe` varchar(40) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'ND=National day, NH=National holiday, RH=Regional Holiday,RE=Religious,IH=International Holiday,OH=Optional Holiday,OB=Observance',
  `day_off` varchar(1) DEFAULT NULL COMMENT 'Y=Yes, N=No, M=Morning Off,E=Evening Off, H=Half day,Blank=Yes,R=Restrcted (Example: for hindus)',
  `img_file` varchar(70) DEFAULT NULL COMMENT 'img file for page widget',
  `img_source` varchar(30) DEFAULT NULL,
  `comment` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'Details of holiday',
  `sync` varchar(1) DEFAULT NULL COMMENT 'Obsolete, delete column after deleting from Program',
  `update_date` date DEFAULT NULL,
  `is_active` varchar(1) DEFAULT NULL COMMENT 'Y=active',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6237 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `holiday_master`
--

LOCK TABLES `holiday_master` WRITE;
/*!40000 ALTER TABLE `holiday_master` DISABLE KEYS */;
INSERT INTO `holiday_master` VALUES (5,'country','india','india','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'RH','Y','new-years-day.jpg',NULL,NULL,'','2012-09-23','Y'),(6,'country','india','india','Asia Pacific','','Makar Sankranti / Pongal','PONGAL',1,NULL,'2020-01-15','','/india/pongal.php',1,'RH','N',NULL,NULL,NULL,'','2012-09-23','Y'),(7,'country','india','india','Asia Pacific','','Republic Day','REPUBLIC-DAY',1,NULL,'2020-01-26','Y','/india/republic-day.php',1,'ND','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(8,'country','india','india','Asia Pacific','','Milad un Nabi','MILAD-UN-NABI',1,NULL,'2020-10-30','','/india/milad-un-nabi.php',1,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(9,'country','india','india','Asia Pacific','','Maha Shivaratri','MAHA-SHIVARATRI',1,'X','2020-02-21','','/india/maha-shivratri.php',1,'RH','N','maha-shivaratri.jpg',NULL,NULL,'','2012-09-23','Y'),(10,'country','india','india','Asia Pacific','','Holi','HOLI',1,'X','2020-03-10','','/india/holi.php',1,'NH','Y','holi.jpg',NULL,NULL,'','2012-09-23','Y'),(11,'country','india','india','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-09-23','Y'),(12,'country','india','india','Asia Pacific','','Rath Yatra','RATH-YATRA',1,'X','2020-06-23','','/india/rath-yatra.php',1,'RH','N','rath-yatra.jpg',NULL,NULL,'','2012-09-23','Y'),(13,'country','india','india','Asia Pacific','','Raksha Bandhan','RAKSHA-BANDHAN',1,NULL,'2020-08-03','','/india/raksha-bandhan.php',1,'RH','N',NULL,NULL,NULL,'','2012-09-23','Y'),(14,'country','india','india','Asia Pacific','','Janmashtami','JANMASHTAMI',1,'X','2020-08-12','','/india/janmashtami.php',1,'NH','Y','janmashtami.jpg',NULL,NULL,'','2012-09-23','Y'),(15,'country','india','india','Asia Pacific','','Independence Day','INDEPENDENCE-DAY',1,'X','2020-08-15','Y','/india/independence-day.php',1,'ND','Y','india-flag.gif',NULL,NULL,'','2012-09-23','Y'),(16,'country','india','india','Asia Pacific','','Labour Day','LABOR-DAY',1,'X','2020-05-01','Y','/uk/may-day.php',1,'RH','N',NULL,NULL,NULL,'','2012-10-06','Y'),(17,'country','india','india','Asia Pacific','','Eid-ul-Fitar','EID-UL-FITAR',1,NULL,'2020-05-25','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-06','Y'),(18,'country','india','india','Asia Pacific','','Onam','ONAM',1,'X','2020-08-31','','/india/onam.php',1,'RH','N','onam.jpg',NULL,NULL,'','2012-10-06','Y'),(19,'country','india','india','Asia Pacific','','Vinayaka Chaturthi','VINAYAKA-CHATURTHI',NULL,NULL,'2020-08-22','','/india/ganesh-chaturthi.php',1,'RH','N',NULL,NULL,NULL,'','2012-10-06','Y'),(20,'country','india','india','Asia Pacific','','Mathatma Gandhi Jayanti','GANDHI-JAYANTI',1,'X','2020-10-02','Y','/india/gandhi-jayanti.php',1,'NH','Y','mahatma-gandhi.jpg',NULL,NULL,'','2012-10-06','Y'),(21,'country','india','india','Asia Pacific','','Dussehra / Dasara','DUSSEHRA',1,'X','2020-10-25','','/india/dussehra.php',1,'NH','Y','dussehra.jpg',NULL,NULL,'','2012-10-06','Y'),(22,'country','india','india','Asia Pacific','','Diwali / Deepavali','DIWALI',2,'X','2020-11-14','','/india/diwali.php',1,'NH','Y','diwali.jpg',NULL,NULL,'','2012-10-06','Y'),(23,'country','india','india','Asia Pacific','','Bakri Id / Eid ul-Adha','EID-UL-ADHA',1,NULL,'2020-08-01','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(24,'country','india','india','Asia Pacific','','Muharram','MUHARRAM',1,'X','2020-08-30','','/india/muharram.php',1,'NH','Y','kaaba.jpg',NULL,NULL,'','2012-10-06','Y'),(25,'country','india','india','Asia Pacific','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(26,'country','australia','australia','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(27,'country','australia','australia','Asia Pacific','','Australia Day','AUSTRALIA-DAY',1,'X','2020-01-26','Y','/australia/australia-day.php',1,'ND','Y','australia-flag.gif',NULL,NULL,'','2012-10-14','Y'),(28,'country','australia','australia','Asia Pacific','','Labour Day (WA)','LABOUR-DAY-WA',1,NULL,'2020-03-02','','/australia/labour-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(29,'country','australia','australia','Asia Pacific','','Labour Day (VIC)','LABOUR-DAY-VIC',1,NULL,'2020-03-09','','/australia/labour-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(30,'country','australia','australia','Asia Pacific','','Eight Hours Day (TAS)','EIGHT-HOURS-DAY-TAS',NULL,NULL,'2020-03-09','','/australia/eight-hours-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(31,'country','australia','australia','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(32,'country','australia','australia','Asia Pacific','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'RE','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(33,'country','australia','australia','Asia Pacific','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(34,'country','australia','australia','Asia Pacific','','Anzac Day','ANZAC-DAY',1,'X','2020-04-25','Y','/australia/anzac-day.php',1,'NH','Y','anzac-day.jpg',NULL,NULL,'','2012-10-14','Y'),(35,'country','australia','australia','Asia Pacific','','May Day (NT)','MAY-DAY-NT',1,NULL,'2020-05-04','','/uk/may-day.php',1,'RH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(36,'country','australia','australia','Asia Pacific','','Queen\'s Birthday (Most region)','QUEENS-BIRTHDAY-MR',1,'X','2020-06-08','','/australia/queens-birthday.php',1,'RH','Y','queens_birthday.jpg',NULL,NULL,'','2012-10-14','Y'),(37,'country','australia','australia','Asia Pacific','','Labour Day (Most Region)','LABOUR-DAY-MR',1,NULL,'2020-10-05','','/australia/labour-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(38,'country','australia','australia','Asia Pacific','','Queen\'s Birthday (WA)','QUEENS-BIRTHDAY(WA)',1,NULL,'2020-09-28','','/australia/queens-birthday.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(39,'country','australia','australia','Asia Pacific','','Remembrance Day','REMEMBRANCE-DAY',0,NULL,'2020-11-11','Y','/australia/remembrance-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(40,'country','australia','australia','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(41,'country','australia','australia','Asia Pacific','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-26','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(42,'country','australia','australia','Asia Pacific','','New Year\'s Eve','NEW-YEARS-EVE',1,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(43,'country','brazil','brazil','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(44,'country','brazil','brazil','Americas','','Carnival Monday','CARNIVAL-MONDAY',1,'X','2020-02-24','','/brazil/carnival.php',1,'RH','Y','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(45,'country','brazil','brazil','Americas','','Carnival Saturday','CARNIVAL-SATURDAY',NULL,NULL,'2020-02-22','','/brazil/carnival.php',1,'OB','N','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(46,'country','brazil','brazil','Americas','','Carnival Sunday','CARNIVAL-SUNDAY',NULL,NULL,'2020-02-23','','/brazil/carnival.php',1,'OB','N','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(47,'country','brazil','brazil','Americas','','Carnival/Shrove Tuesday','SHROVE-TUESDAY',NULL,NULL,'2020-02-25','','/brazil/carnival.php',1,'RH','Y','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(48,'country','brazil','brazil','Americas','','Carnival end','CARNIVAL-END',NULL,NULL,'2020-02-14','','/brazil/carnival.php',1,'RH','Y','carnival.jpg',NULL,NULL,'','2012-10-14',''),(49,'country','brazil','brazil','Americas','','Tiradentes Day','TIRADENTES-DAY',1,'X','2020-04-21','Y','/brazil/tiradentes-day.php',1,'NH','Y','tiradentes-day.jpg',NULL,NULL,'','2012-10-14','Y'),(50,'country','brazil','brazil','Americas','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(51,'country','brazil','brazil','Americas','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(52,'country','brazil','brazil','Americas','','Labor Day / May Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(53,'country','brazil','brazil','Americas','','Corpus Christi','CORPUS-CHRISTI',NULL,NULL,'2020-06-11','','/us/corpus-christi.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(54,'country','brazil','brazil','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-09-07','Y','/brazil/independence-day.php',1,'ND','Y','brazil-flag.jpg',NULL,NULL,'','2012-10-14','Y'),(55,'country','brazil','brazil','Americas','','Our Lady of Aparecida','OUR-LADY-OF-APARECIDA',NULL,NULL,'2020-10-12','Y','/brazil/our-lady-of-aparecida.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(56,'country','brazil','brazil','Americas','','All Soul\'s Day','ALL-SOULS-DAY',NULL,NULL,'2020-11-02','Y','/christian/all-souls-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(57,'country','brazil','brazil','Americas','','Republic Day','REPUBLIC-DAY',1,NULL,'2020-11-15','Y','/brazil/republic-day.php',0,'ND','Y','brazil-flag.jpg',NULL,NULL,'','2012-10-14','Y'),(58,'country','brazil','brazil','Americas','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(59,'country','brazil','brazil','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'National',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(60,'country','canada','canada','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(61,'country','canada','canada','Americas','','Valentine\'s Day','VALENTINES-DAY',NULL,NULL,'2020-02-14','Y','/us/valentines-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(62,'country','canada','canada','Americas','','Flag Day','FLAG-DAY',1,'X','2020-02-15','Y','/canada/national-flag-of-canada-day.php',1,'OB','N','flag-day.jpg',NULL,'A day of commemoration, not a statutory holiday.','','2012-10-14','Y'),(63,'country','canada','canada','Americas','','Commonwealth Day','COMMONWEALTH-DAY',1,'X','2020-03-12','','/canada/commonwealth-day.php',1,'OB','N','commonwealth-day.jpg',NULL,NULL,'','2012-10-14','Y'),(64,'country','canada','canada','Americas','','St. Patrick\'s Day','ST-PATRICKS-DAY',2,'X','2020-03-17','Y','/us/st-patricks-day.php',1,'OB','N','st-patricks-day.jpg',NULL,NULL,'','2012-10-14','Y'),(65,'country','canada','canada','Americas','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-03-30','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(66,'country','canada','canada','Americas','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-01','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(67,'country','canada','canada','Americas','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-02','','/christian/easter-monday.php',0,'RH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(68,'country','canada','canada','Americas','','Victoria Day (Many regions)','VICTORIA-DAY',1,'X','2020-05-21','','/canada/victoria-day.php',1,'RH','Y','victoria-day.jpg',NULL,NULL,'','2012-10-14','Y'),(69,'country','canada','canada','Americas','','Canada Day','CANADA-DAY',1,'X','2020-07-01','Y','/canada/canada-day.php',1,'ND','Y','canada-day.jpg',NULL,NULL,'','2012-10-14','Y'),(70,'country','canada','canada','Americas','','Civic Holiday (Many regions)','CIVIC-HOLIDAY',1,'X','2020-08-06','','/canada/provincial-day.php',1,'RH','Y','provincial-day.jpg',NULL,NULL,'','2012-10-14','Y'),(71,'country','canada','canada','Americas','','Labour Day','LABOR-DAY',NULL,NULL,'2020-09-03','','/canada/labor-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(72,'country','canada','canada','Americas','','Thanksgiving Day','THANKSGIVING-DAY',1,NULL,'2020-10-08','','/canada/thanksgiving-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(73,'country','canada','canada','Americas','','Halloween','HALLOWEEN',NULL,NULL,'2020-10-31','Y','/us/halloween.php',1,'OB','N','halloween.jpg',NULL,NULL,'','2012-10-14','Y'),(74,'country','canada','canada','Americas','','Remembrance Day (Many regions)','REMEMBRANCE-DAY',2,NULL,'2020-11-11','Y','/canada/remembrance-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(75,'country','canada','canada','Americas','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(76,'country','canada','canada','Americas','','Boxing Day (Many regions)','BOXING-DAY',2,'X','2020-12-26','Y','/canada/boxing-day.php',1,'RH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(77,'country','china','china','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(78,'country','china','china','Asia Pacific','','Spring Festival Eve','SPRING-FESTIVAL-EVE',NULL,NULL,'2020-01-24','','/china/spring-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(79,'country','china','china','Asia Pacific','','Chinese New Year','CHINESE-NEW-YEAR',2,'X','2020-01-25','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(80,'country','china','china','Asia Pacific','','Spring Festival Holiday','SPRING-FESTIVAL-HOLIDAY',NULL,NULL,'2020-01-26','','/china/spring-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(81,'country','china','china','Asia Pacific','','Intl. Women\'s Day','INTL-WOMENS-DAY',0,NULL,'2020-03-08','Y','/international/international-womens-day.php',1,'OH','H',NULL,NULL,NULL,'','2012-10-14','Y'),(82,'country','china','china','Asia Pacific','','Arbor Day','ARBOR-DAY',1,'X','2020-03-12','Y','/china/arbor-day.php',1,'OB','N','arbor-day.jpg',NULL,NULL,'','2012-10-14','Y'),(83,'country','china','china','Asia Pacific','','Qingming Festival','QINGMING-FESTIVAL',1,'X','2020-04-04','','/china/qingming-festival.php',1,'NH','Y','qingming-festival.jpg',NULL,NULL,'','2012-10-14','Y'),(84,'country','china','china','Asia Pacific','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(85,'country','china','china','Asia Pacific','','National Youth Day','NATIONAL-YOUTH-DAY',1,NULL,'2020-05-04','Y','/china/national-youth-day.php',1,'OH','H',NULL,NULL,NULL,'','2012-10-14','Y'),(86,'country','china','china','Asia Pacific','','Intl. Children\'s Day','INTL-CHILDRENS-DAY',NULL,NULL,'2020-06-01','Y','/china/international-childrens-day.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(87,'country','china','china','Asia Pacific','','Dragon Boat Festival','DRAGON-BOAT-FESTIVAL',1,NULL,'2020-06-25','','/china/dragon-boat-festival.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(88,'country','china','china','Asia Pacific','','CPC Foundation Day','CPC-FOUNDATION-DAY',1,NULL,'2020-07-01','Y','/china/cpc-foundation-day.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(89,'country','china','china','Asia Pacific','','Liberation Army Day','LIBERATION-ARMY-DAY',1,NULL,'2020-08-01','Y','/china/liberation-army-day.php',0,'OH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(90,'country','china','china','Asia Pacific','','Mid-Autumn Festival','MID-AUTUMN-FESTIVAL',1,NULL,'2020-10-01','','/china/mid-autumn-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(91,'country','china','china','Asia Pacific','','National Day','NATIONAL-DAY',1,'X','2020-10-01','Y','/china/national-day.php',1,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(92,'country','china','china','Asia Pacific','','National Day Holiday','NATIONAL-DAY-HOLIDAY',NULL,NULL,'2020-10-03','Y','/china/national-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(93,'country','china','china','Asia Pacific','','National Day Holiday','NATIONAL-DAY-HOLIDAY',NULL,NULL,'2020-10-04','Y','/china/national-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(94,'country','france','france','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(95,'country','france','france','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'RH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(96,'country','france','france','Europe','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(97,'country','france','france','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(98,'country','france','france','Europe','','Labor day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(99,'country','france','france','Europe','','Victory in WWII Day','VICTORY-IN-WWII-DAY',NULL,NULL,'2020-05-08','Y','/france/liberation-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(100,'country','france','france','Europe','','Ascension Day','ASCENSION-DAY',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(101,'country','france','france','Europe','','Whit Sunday','WHIT-SUNDAY',NULL,NULL,'2020-05-31','','/france/whit-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(102,'country','france','france','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(103,'country','france','france','Europe','','Bastille Day','BASTILLE-DAY',1,'X','2020-07-14','Y','/france/bastille-day.php',1,'ND','Y','bastile-day.jpg',NULL,NULL,'','2012-10-14','Y'),(104,'country','france','france','Europe','','Assumption Day','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(105,'country','france','france','Europe','','All Saints Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','Y','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(106,'country','france','france','Europe','','Armistice Day','ARMISTICE-DAY',1,NULL,'2020-11-11','Y','/france/armistice-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(107,'country','france','france','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(108,'country','france','france','Europe','','St Stephen\'s Day','ST-STEPHENS-DAY',NULL,NULL,'2020-12-26','Y','/italy/st-stephens-day.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(109,'country','germany','germany','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(110,'country','germany','germany','Europe','','Epiphany (BW, BY & ST)','EPIPHANY',NULL,NULL,'2020-01-06','Y','/spain/epiphany.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(111,'country','germany','germany','Europe','','Carnival','CARNIVAL',NULL,NULL,'2020-02-25','','/brazil/carnival.php',1,'OB','N','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(112,'country','germany','germany','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(113,'country','germany','germany','Europe','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(114,'country','germany','germany','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(115,'country','germany','germany','Europe','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(116,'country','germany','germany','Europe','','Ascension Day','ASCENSION-DAY',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(117,'country','germany','germany','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(118,'country','germany','germany','Europe','','Corpus Christi','CORPUS-CHRISTI',1,NULL,'2020-06-11','','/us/corpus-christi.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(119,'country','germany','germany','Europe','','Assumption Day','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'RH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(120,'country','germany','germany','Europe','','Unity Day (National)','UNITY-DAY',1,NULL,'2020-10-03','Y','/germany/unity-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(121,'country','germany','germany','Europe','','Reformation Day','REFORMATION-DAY',1,NULL,'2020-10-31','Y','/germany/reformation-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(122,'country','germany','germany','Europe','','All Saints Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','Y','/philippines/all-saints-day.php',1,'RH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(123,'country','germany','germany','Europe','','National Day of Mourning','DAY-OF-MOURNING',NULL,NULL,'2020-11-15','','/germany/national-day-of-mourning.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(124,'country','germany','germany','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(125,'country','germany','germany','Europe','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-26','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(126,'country','germany','germany','Europe','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14',''),(127,'country','hong-kong','hong-kong','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(128,'country','hong-kong','hong-kong','Asia Pacific','','Lunar New Year','CHINEASE-NEW-YEAR',NULL,NULL,'2020-01-25','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(129,'country','hong-kong','hong-kong','Asia Pacific','','Second day of Lunar New Year','CHINEASE-NEW-YEAR-D2',NULL,NULL,'2020-01-26','','/china/chinese-new-year.php',1,'NH','N','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(130,'country','hong-kong','hong-kong','Asia Pacific','','Third day of Lunar New Year','CHINEASE-NEW-YEAR-D3',NULL,NULL,'2020-01-27','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(131,'country','hong-kong','hong-kong','Asia Pacific','','Ching Ming Festival','CHING-MING-FESTIVAL',NULL,NULL,'2020-04-04','','/china/qingming-festival.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(132,'country','hong-kong','hong-kong','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(133,'country','hong-kong','hong-kong','Asia Pacific','','Easter Saturday','EASTER-SATURDAY',NULL,NULL,'2020-04-11','','/us/easter.php',1,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(134,'country','hong-kong','hong-kong','Asia Pacific','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(135,'country','hong-kong','hong-kong','Asia Pacific','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(136,'country','hong-kong','hong-kong','Asia Pacific','','Buddha\'s Birthday','BUDDHAS-BIRTHDAY',NULL,NULL,'2020-04-30','','/singapore/vesak-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(137,'country','hong-kong','hong-kong','Asia Pacific','','Dragon Boat Festival','DRAGON-BOAT-FESTIVAL',NULL,NULL,'2020-06-25','','/china/dragon-boat-festival.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(138,'country','hong-kong','hong-kong','Asia Pacific','','Spl Admin. Region Establishment Day','ESTABLISHMENT-DAY',1,NULL,'2020-07-01','Y','/hong-kong/special-admin-region-establishment-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(139,'country','hong-kong','hong-kong','Asia Pacific','','Mid-Autumn Festival','MID-AUTUMN-FESTIVAL',NULL,NULL,'2020-09-15','','/hong-kong/mid-autumn-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(140,'country','hong-kong','hong-kong','Asia Pacific','','Mid-Autumn Festival Holiday','MID-AUTUMN-FESTIVAL-HOLIDAY',NULL,NULL,'2020-10-02','','/hong-kong/mid-autumn-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(141,'country','hong-kong','hong-kong','Asia Pacific','','National Day','NATIONAL-DAY',1,NULL,'2020-10-01','Y','/hong-kong/national-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(142,'country','hong-kong','hong-kong','Asia Pacific','','National Day Holiday','NATIONAL-DAY-HOLIDAY',NULL,NULL,'2020-10-02','Y','/hong-kong/national-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(143,'country','hong-kong','hong-kong','Asia Pacific','','Chung Yeung Festival','CHUNG-YEUNG-FESTIVAL',NULL,NULL,'2020-10-26','','/hong-kong/chung-yeung-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(144,'country','hong-kong','hong-kong','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(145,'country','hong-kong','hong-kong','Asia Pacific','','Christmas Day Holiday','CHRISTMAS-DAY-HOLIDAY',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(146,'country','indonesia','indonesia','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(147,'country','indonesia','indonesia','Asia Pacific','','Chinese New Year','CHINESE-NEW-YEAR',NULL,NULL,'2020-01-25','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(148,'country','indonesia','indonesia','Asia Pacific','','Prophet Muhammad\'s Birthday','PROPHET-MUHAMMADS-BIRTHDAY',NULL,NULL,'2020-10-29','','/india/milad-un-nabi.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(149,'country','indonesia','indonesia','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(150,'country','indonesia','indonesia','Asia Pacific','','Vesak Day','VESAK-DAY',NULL,NULL,'2020-05-07','','/singapore/vesak-day.php',1,'NH','Y','vesak-day-buddha.jpg',NULL,NULL,'','2012-10-14','Y'),(151,'country','indonesia','indonesia','Asia Pacific','','Ascension Day of Jesus Christ','ASCENSION-DAY',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(152,'country','indonesia','indonesia','Asia Pacific','','Independence Day','INDEPENDENCE-DAY',1,NULL,'2020-08-17','Y','/indonesia/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(153,'country','indonesia','indonesia','Asia Pacific','','1st Day of Eid-ul-Fitar','EID-UL-FITAR-D1',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(154,'country','indonesia','indonesia','Asia Pacific','','2nd Day of Eid-ul-Fitar','EID-UL-FITAR-D2',NULL,NULL,'2020-05-25','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(155,'country','indonesia','indonesia','Asia Pacific','','Eid-al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(156,'country','indonesia','indonesia','Asia Pacific','','Muharram / Islamic New Year','MUHARRAM',NULL,NULL,'2020-08-20','','/india/muharram.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(157,'country','indonesia','indonesia','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(158,'country','italy','italy','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(159,'country','italy','italy','Europe','','Epiphany','EPIPHANY',NULL,NULL,'2020-01-06','Y','/spain/epiphany.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(160,'country','italy','italy','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'OB','N','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(161,'country','italy','italy','Europe','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(162,'country','italy','italy','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(163,'country','italy','italy','Europe','','Liberation Day','LIBERATION-DAY',1,NULL,'2020-04-25','Y','/italy/liberation-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(164,'country','italy','italy','Europe','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(165,'country','italy','italy','Europe','','Republic Day','REPUBLIC-DAY',1,NULL,'2020-06-02','Y','/italy/republic-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(166,'country','italy','italy','Europe','','Assumption Day','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(167,'country','italy','italy','Europe','','All Saints Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','Y','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(168,'country','italy','italy','Europe','','Immaculate Conception Day','IMMACULATE-CONCEPTION-DAY',NULL,NULL,'2020-12-08','Y','/italy/immaculate-conception-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(169,'country','italy','italy','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(170,'country','italy','italy','Europe','','St. Stephen\'s Day','ST-STEPHENS-DAY',NULL,NULL,'2020-12-26','Y','/italy/st-stephens-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(171,'country','italy','italy','Europe','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(172,'country','japan','japan','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(173,'country','japan','japan','Asia Pacific','','Coming of Age Day','COMING-OF-AGE-DAY',NULL,NULL,'2020-01-13','','/japan/coming-of-age-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(174,'country','japan','japan','Asia Pacific','','National Foundation Day','NATIONAL-FOUNDATION-DAY',1,'X','2020-02-11','Y','/japan/national-foundation-day.php',1,'ND','Y','japan-flag.gif',NULL,NULL,'','2012-10-14','Y'),(175,'country','japan','japan','Asia Pacific','','Spring Equinox','SPRING-EQUINOX',1,'X','2020-03-20','','/japan/spring-equinox.php',1,'NH','Y','spring-equinox.jpg',NULL,NULL,'','2012-10-14','Y'),(176,'country','japan','japan','Asia Pacific','','Showa Day','SHOWA-DAY',1,NULL,'2020-04-29','Y','/japan/showa-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(177,'country','japan','japan','Asia Pacific','','Constitution Memorial Day','CONSTITUTION-MEMORIAL-DAY',NULL,NULL,'2020-05-03','Y','/japan/constitution-memorial-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(178,'country','japan','japan','Asia Pacific','','Greenery Day','GREENERY-DAY',NULL,NULL,'2020-05-04','Y','/japan/greenery-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(179,'country','japan','japan','Asia Pacific','','Children\'s Day','CHILDRENS-DAY',NULL,NULL,'2020-05-05','Y','/japan/childrens-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(180,'country','japan','japan','Asia Pacific','','Children\'s Day Observed','CHILDRENS-DAY-OBSERVED',NULL,NULL,'2020-05-06','','/japan/childrens-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(181,'country','japan','japan','Asia Pacific','','Festival of Souls (Obon)','FESTIVAL-OF-SOULS',NULL,'','2020-08-15','','/japan/festival-of-souls.php',1,'OB','N','festival-of-souls.jpg',NULL,NULL,'','2012-10-14','Y'),(182,'country','japan','japan','Asia Pacific','','Marine Day','MARINE-DAY',1,NULL,'2020-07-23','','/japan/sea-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(183,'country','japan','japan','Asia Pacific','','Respect for the Aged Day','RESPECT-FOR-THE-AGED-DAY',NULL,NULL,'2020-09-21','','/japan/respect-for-the-aged-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(184,'country','japan','japan','Asia Pacific','','Autumn Equinox Day','AUTUMN-EQUINOX-DAY',1,NULL,'2020-09-22','Y','/japan/autumn-equinox-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(185,'country','japan','japan','Asia Pacific','','Health and Sports Day','SPORTS-DAY',NULL,NULL,'2020-07-24','','/japan/sports-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(186,'country','japan','japan','Asia Pacific','','Culture Day','CULTURE-DAY',1,NULL,'2020-11-03','Y','/japan/culture-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(187,'country','japan','japan','Asia Pacific','','Culture Day Observed','CULTURE-DAY-OBSERVED',NULL,NULL,'2020-11-04','','/japan/culture-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(188,'country','japan','japan','Asia Pacific','','Labor Thanksgiving Day','LABOR-THANKSGIVING-DAY',NULL,NULL,'2020-11-23','Y','/japan/labor-thanksgiving-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(189,'country','japan','japan','Asia Pacific','','Emperor\'s Birthday','EMPERORS-BIRTHDAY',1,NULL,'2020-02-23','','/japan/emperors-birthday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(190,'country','japan','japan','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'OB','N','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(191,'country','japan','japan','Asia Pacific','','Omisoka','OMISOKA',1,NULL,'2020-12-31','Y','/japan/omisoka.php',0,'OB','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(192,'country','malaysia','malaysia','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'RH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(193,'country','malaysia','malaysia','Asia Pacific','','Chinese New Year','CHINEASE-NEW -YEAR',NULL,NULL,'2020-01-25','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(194,'country','malaysia','malaysia','Asia Pacific','','2nd day of Chinese New Year','CHINEASE-NEW -YEAR-D2',NULL,NULL,'2020-01-27','','/china/chinese-new-year.php',1,'RH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(195,'country','malaysia','malaysia','Asia Pacific','','Prophet Muhammad\'s Birthday','MUHAMMADS-BIRTHDAY',NULL,NULL,'2020-10-29','','/india/milad-un-nabi.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(196,'country','malaysia','malaysia','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'RH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(197,'country','malaysia','malaysia','Asia Pacific','','Labor day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(198,'country','malaysia','malaysia','Asia Pacific','','Waisak Day','VESAK-DAY',NULL,NULL,'2020-05-07','','/singapore/vesak-day.php',1,'NH','Y','vesak-day-buddha.jpg',NULL,NULL,'','2012-10-14','Y'),(199,'country','malaysia','malaysia','Asia Pacific','','Agong\'s Birthday','AGONGS-BIRTHDAY',1,NULL,'2020-06-06','','/malaysia/agongs-birthday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(200,'country','malaysia','malaysia','Asia Pacific','','National Day','NATIONAL-DAY',1,'X','2020-08-31','Y','/malaysia/national-day.php',1,'ND','Y','malaysia-flag.gif',NULL,NULL,'','2012-10-14','Y'),(201,'country','malaysia','malaysia','Asia Pacific','','Hari Raya Puasa (Day 1)','HARI-RAYA-PUASA-D1',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(202,'country','malaysia','malaysia','Asia Pacific','','Hari Raya Puasa (Day 2)','HARI-RAYA-PUASA-D2',NULL,NULL,'2020-05-25','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(203,'country','malaysia','malaysia','Asia Pacific','','Malaysia Day','MALAYSIA-DAY',1,NULL,'2020-09-16','Y','/malaysia/malaysia-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(204,'country','malaysia','malaysia','Asia Pacific','','Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14','','/india/diwali.php',1,'RH','Y','diwali.jpg',NULL,NULL,'','2012-10-14','Y'),(205,'country','malaysia','malaysia','Asia Pacific','','Hari Raya Haji','HARI-RAYA-HAJI',1,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',1,'NH','Y','kaaba.jpg',NULL,NULL,'','2012-10-14','Y'),(206,'country','malaysia','malaysia','Asia Pacific','','Awal Muharram','MUHARRAM',NULL,NULL,'2020-08-20','','/india/muharram.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(207,'country','malaysia','malaysia','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(208,'country','mexico','mexico','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(209,'country','mexico','mexico','Americas','','Constitution Day','CONSTITUTION-DAY',1,'X','2020-02-05','','/mexico/constitution-day.php',1,'NH','Y','constitution-day-mexico.jpg',NULL,NULL,'','2012-10-14','Y'),(210,'country','mexico','mexico','Americas','','Benito Juarez\'s Birthday','BENITO-JUAREZS-BIRTHDAY',NULL,NULL,'2020-03-21','','/mexico/benito-juarez-birthday.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(211,'country','mexico','mexico','Americas','','Holy Thursday','HOLY-THURSDAY',NULL,NULL,'2020-04-18','','/philippines/maundy-thursday.php',1,'RE','N',NULL,NULL,NULL,'','2012-10-14',''),(212,'country','mexico','mexico','Americas','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'RE','N','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(213,'country','mexico','mexico','Americas','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(214,'country','mexico','mexico','Americas','','Cinco de Mayo','CINCO-DE-MAYO',1,NULL,'2020-05-05','Y','/mexico/cinco-de-mayo.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(215,'country','mexico','mexico','Americas','','Independence Day','INDEPENDENCE-DAY',1,'X','2020-09-16','Y','/mexico/independence-day.php',1,'ND','Y','mexico-flag.jpg',NULL,NULL,'','2012-10-14','Y'),(216,'country','mexico','mexico','Americas','','Columbus Day','COLUMBUS-DAY',NULL,NULL,'2020-10-12','Y','/us/columbus-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(217,'country','mexico','mexico','Americas','','All Souls\' Day','ALL-SOULS-DAY',NULL,NULL,'2020-11-02','Y','/christian/all-souls-day.php',0,'RE','N',NULL,NULL,NULL,'','2012-10-14','Y'),(218,'country','mexico','mexico','Americas','','Revolution Day Memorial','REVOLUTION-DAY-MEMORIAL',NULL,NULL,'2020-11-20','Y','/mexico/revolution-day-memorial.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(219,'country','mexico','mexico','Americas','','Virgin of Guadalupe','VIRGIN-OF-GUADALUPE',1,NULL,'2020-12-12','Y','/mexico/virgin-of-guadalupe.php',0,'RE','N',NULL,NULL,NULL,'','2012-10-14','Y'),(220,'country','mexico','mexico','Americas','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(221,'country','new-zealand','new-zealand','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(222,'country','new-zealand','new-zealand','Asia Pacific','','Waitangi Day','WAITANGI-DAY',1,'X','2020-02-06','Y','/new-zealand/waitangi-day.php',1,'ND','Y','waitangi-day.jpg',NULL,NULL,'','2012-10-14','Y'),(223,'country','new-zealand','new-zealand','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(224,'country','new-zealand','new-zealand','Asia Pacific','','Easter','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'RE','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(225,'country','new-zealand','new-zealand','Asia Pacific','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(226,'country','new-zealand','new-zealand','Asia Pacific','','ANZAC Day','ANZAC-DAY',NULL,NULL,'2020-04-25','Y','/australia/anzac-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(227,'country','new-zealand','new-zealand','Asia Pacific','','Queen\'s Birthday','QUEENS-BIRTHDAY',1,NULL,'2020-06-01','','/new-zealand/queens-birthday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(228,'country','new-zealand','new-zealand','Asia Pacific','','Labour Day','LABOUR-DAY',1,NULL,'2020-10-26','','/new-zealand/labor-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(229,'country','new-zealand','new-zealand','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(230,'country','new-zealand','new-zealand','Asia Pacific','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-26','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(231,'country','new-zealand','new-zealand','Asia Pacific','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(232,'country','philippines','philippines','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(233,'country','philippines','philippines','Asia Pacific','','Maundy Thursday','MAUNDY-THURSDAY',2,'X','2020-04-09','','/philippines/maundy-thursday.php',1,'NH','Y','maundy-thursday.jpg',NULL,NULL,'','2012-10-14','Y'),(234,'country','philippines','philippines','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(235,'country','philippines','philippines','Asia Pacific','','Araw ng Kagitingan','BATAAN-DAY',NULL,NULL,'2020-04-09','','/philippines/araw-ng-kagitingan.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(236,'country','philippines','philippines','Asia Pacific','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(237,'country','philippines','philippines','Asia Pacific','','Independence Day','INDEPENDENCE-DAY',1,NULL,'2020-06-12','Y','/philippines/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(238,'country','philippines','philippines','Asia Pacific','','Ninoy Aquino Day','NINOY-AQUINO-DAY',NULL,NULL,'2020-08-21','Y','/philippines/ninoy-aquino-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(239,'country','philippines','philippines','Asia Pacific','','National Heroes\' Day','NATIONAL-HEROS-DAY',1,'X','2020-08-31','','/philippines/national-heroes-day.php',1,'NH','Y','philippines-flag.gif',NULL,NULL,'','2012-10-14','Y'),(240,'country','philippines','philippines','Asia Pacific','','Eid Ul Fitr','EID-UL-FITR',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(241,'country','philippines','philippines','Asia Pacific','','All Saints\' Day','ALL-SAINTS-DAY',2,'X','2020-11-01','Y','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(242,'country','philippines','philippines','Asia Pacific','','Bonifacio Day','BONIFACIO-DAY',1,NULL,'2020-11-30','Y','/philippines/bonifacio-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(243,'country','philippines','philippines','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(244,'country','philippines','philippines','Asia Pacific','','Rizal Day','RIZAL-DAY',1,NULL,'2020-12-30','Y','/philippines/rizal-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(245,'country','philippines','philippines','Asia Pacific','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(246,'country','romania','romania','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(247,'country','romania','romania','Europe','','Orthodox Easter Day','ORTHODOX-EASTER',NULL,NULL,'2020-04-19','','/romania/orthodox-easter-day.php',0,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(248,'country','romania','romania','Europe','','Orthodox Easter Monday','ORTHODOX-EASTER-MONDAY',NULL,NULL,'2020-04-20','','/romania/orthodox-easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(249,'country','romania','romania','Europe','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(250,'country','romania','romania','Europe','','Orthodox Whit Sunday','ORTHODOX-WHIT-SUNDAY',NULL,NULL,'2020-06-07','','/romania/orthodox-whit-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(251,'country','romania','romania','Europe','','Orthodox Whit Monday','ORTHODOX-WHIT-MONDAY',NULL,NULL,'2020-06-08','','/romania/orthodox-whit-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(252,'country','romania','romania','Europe','','The Assumption of Mary','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(253,'country','romania','romania','Europe','','Orthodox Ascension Day','ORTHODOX-ASCENSION-DAY',2,'X','2020-05-28','','/romania/ascension-day.php',1,'OB','N','ascension-day.jpg',NULL,NULL,'','2012-10-14','Y'),(254,'country','romania','romania','Europe','','Flag Day','FLAG-DAY',NULL,NULL,'2020-06-26','Y','/romania/flag-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(255,'country','romania','romania','Europe','','National Anthem Day','NATIONAL-ANTHEM-DAY',1,NULL,'2020-07-29','Y','/romania/national-anthem-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(256,'country','romania','romania','Europe','','Saint Andrew\'s Day','SAINT-ANDREWS-DAY',NULL,NULL,'2020-11-30','Y','/christian/st-andrews-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(257,'country','romania','romania','Europe','','National Day ','NATIONAL-DAY',1,NULL,'2020-12-01','Y','/romania/national-day-.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(258,'country','romania','romania','Europe','','Christmas Day ','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2549,'country','spain','spain','Europe','','Immaculate Conception Holiday','IMMACULATE-CONCEPTION-HOLIDAY',NULL,NULL,'2020-12-09','Y','/spain/immaculate-conception-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(260,'country','romania','romania','Europe','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(261,'country','singapore','singapore','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(262,'country','singapore','singapore','Asia Pacific','','Chinese New Year','CHINEASE-NEW-YEAR',NULL,NULL,'2020-01-25','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(263,'country','singapore','singapore','Asia Pacific','','2nd day of Chinese New Year','2ND-CHINEASE-NEW-YEAR',NULL,NULL,'2020-01-26','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(264,'country','singapore','singapore','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(265,'country','singapore','singapore','Asia Pacific','','Labour Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(266,'country','singapore','singapore','Asia Pacific','','Vesak Day','VESAK-DAY',2,'X','2020-05-07','','/singapore/vesak-day.php',1,'NH','Y','vesak-day-buddha.jpg',NULL,NULL,'','2012-10-14','Y'),(267,'country','singapore','singapore','Asia Pacific','','National Day','NATIONAL-DAY',1,'X','2020-08-09','Y','/singapore/national-day.php',1,'ND','Y','national-day-singapore.jpg',NULL,NULL,'','2012-10-14','Y'),(268,'country','singapore','singapore','Asia Pacific','','Hari Raya Puasa','HARI-RAYA-PUASA',2,'X','2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(269,'country','singapore','singapore','Asia Pacific','','Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14','','/india/diwali.php',1,'NH','Y','diwali.jpg',NULL,NULL,'','2012-10-14','Y'),(270,'country','singapore','singapore','Asia Pacific','','Hari Raya Haji','HARI-RAYA-HAJI',1,'X','2020-07-31','','/singapore/hari-raya-haji.php',1,'NH','Y','kaaba.jpg',NULL,NULL,'','2012-10-14','Y'),(271,'country','singapore','singapore','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(272,'country','south-africa','south-africa','Africa','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(273,'country','south-africa','south-africa','Africa','','Human Rights Day','HUMAN-RIGHTS-DAY',1,NULL,'2020-03-21','Y','/south-africa/human-rights-day.php',0,'NH',NULL,NULL,NULL,NULL,'','2012-10-14','Y'),(274,'country','south-africa','south-africa','Africa','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(275,'country','south-africa','south-africa','Africa','','Easter','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'RE','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(276,'country','south-africa','south-africa','Africa','','Family Day','FAMILY-DAY',1,'X','2020-04-13','','/south-africa/family-day.php',1,'NH',NULL,'family-day.jpg',NULL,NULL,'','2012-10-14','Y'),(277,'country','south-africa','south-africa','Africa','','Freedom Day','FREEDOM-DAY',1,'X','2020-04-27','Y','/south-africa/freedom-day.php',1,'ND',NULL,'flag-south_africa.gif',NULL,NULL,'','2012-10-14','Y'),(278,'country','south-africa','south-africa','Africa','','Workers Day','WORKERS-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH',NULL,'may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(279,'country','south-africa','south-africa','Africa','','Africa Day','AFRICA-DAY',1,NULL,'2020-05-25','Y','/south-africa/africa-day.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(280,'country','south-africa','south-africa','Africa','','Youth Day','YOUTH-DAY',1,'X','2020-06-16','Y','/south-africa/youth-day.php',1,'NH',NULL,'youth-day.jpg',NULL,NULL,'','2012-10-14','Y'),(281,'country','south-africa','south-africa','Africa','','Nelson Mandela\'s Birthday','NELSON-MANDELA-DAY',1,'X','2020-07-18','Y','/south-africa/nelson-mandela-birthday.php',1,'OB','N','nelson-mandela-birthday.jpg',NULL,NULL,'','2012-10-14','Y'),(282,'country','south-africa','south-africa','Africa','','National Women\'s Day','WOMENS-DAY',1,NULL,'2020-08-09','Y','/south-africa/womens-day.php',0,'NH',NULL,NULL,NULL,NULL,'','2012-10-14','Y'),(283,'country','south-africa','south-africa','Africa','','Heritage Day','HERITAGE-DAY',1,'X','2020-09-24','Y','/south-africa/heritage-day.php',1,'NH',NULL,'heritage-day.jpg',NULL,NULL,'','2012-10-14','Y'),(284,'country','south-africa','south-africa','Africa','','Day of Reconciliation','RECONCILLATION-DAY',1,NULL,'2020-12-16','Y','/south-africa/reconciliation-day.php',0,'NH',NULL,NULL,NULL,NULL,'','2012-10-14','Y'),(285,'country','south-africa','south-africa','Africa','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(286,'country','south-africa','south-africa','Africa','','Day of Goodwill','DAY-OF-GOODWILL',NULL,NULL,'2020-12-26','Y','/south-africa/day-of-goodwill.php',0,'NH',NULL,NULL,NULL,NULL,'','2012-10-14','Y'),(287,'country','spain','spain','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(288,'country','spain','spain','Europe','','Epiphany','EPIPHANY',2,'X','2020-01-06','Y','/spain/epiphany.php',1,'NH','Y','epiphany.jpg',NULL,NULL,'','2012-10-14','Y'),(289,'country','spain','spain','Europe','','San Jose (Many Regions)','SAN-JOSE',1,'X','2020-03-19','Y','/spain/san-jose.php',1,'RH','Y','san-jose.jpg',NULL,NULL,'','2012-10-14','Y'),(290,'country','spain','spain','Europe','','Maundy Thursday (Many Regions)','MAUNDY-THURSDAY',NULL,NULL,'2020-04-09','','/philippines/maundy-thursday.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(291,'country','spain','spain','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(292,'country','spain','spain','Europe','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(293,'country','spain','spain','Europe','','Assumption Day','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(294,'country','spain','spain','Europe','','Hispanic Day','HISPANIC-DAY',1,NULL,'2020-10-12','Y','/spain/national-day.php',1,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(295,'country','spain','spain','Europe','','All Saints Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','Y','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(296,'country','spain','spain','Europe','','Constitution Day','CONSTITUTION-DAY',NULL,NULL,'2020-12-06','Y','/spain/constitution-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(297,'country','spain','spain','Europe','','Immaculate Conception Day','IMMACULATE-CONCEPTION-DAY',NULL,NULL,'2020-12-08','Y','/spain/immaculate-conception-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(298,'country','spain','spain','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(299,'country','spain','spain','Europe','','New Year\'s Eve ','NEW-YEARS-EVE ',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14',''),(300,'country','sweden','sweden','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(301,'country','sweden','sweden','Europe','','Epiphany','EPIPHANY',NULL,NULL,'2020-01-06','Y','/spain/epiphany.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(302,'country','sweden','sweden','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(303,'country','sweden','sweden','Europe','','Easter','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(304,'country','sweden','sweden','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(305,'country','sweden','sweden','Europe','','May Day','MAY-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(306,'country','sweden','sweden','Europe','','Ascension Day','ASCENSION-DAY',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(307,'country','sweden','sweden','Europe','','National Day','NATIONAL-DAY',1,'X','2020-06-06','Y','/sweden/national-day.php',1,'ND','Y','national-day-sweden.jpg',NULL,NULL,'','2012-10-14','Y'),(308,'country','sweden','sweden','Europe','','Whit Sunday','WHIT-SUNDAY',NULL,NULL,'2020-05-31','','/france/whit-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(309,'country','sweden','sweden','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-01-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(310,'country','sweden','sweden','Europe','','Midsummer Day','MIDSUMMER-DAY',NULL,NULL,'2020-06-20','','/sweden/midsummer-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(311,'country','sweden','sweden','Europe','','All Saints','ALL-SAINTS-DAY',NULL,NULL,'2020-10-31','','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(312,'country','sweden','sweden','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(313,'country','sweden','sweden','Europe','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-26','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(314,'country','sweden','sweden','Europe','','New Year\'s Eve ','NEW-YEARS-EVE ',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'RH','N',NULL,NULL,NULL,'','2012-10-14','Y'),(315,'country','uk','uk','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(316,'country','uk','uk','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-02','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(317,'country','uk','uk','Europe','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-04','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(318,'country','uk','uk','Europe','','Easter Monday (ENG, NIR, WAL)','EASTER-MONDAY-ENG-NIR-WAL',1,NULL,'2020-04-05','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(319,'country','uk','uk','Europe','','Early May Bank Holiday','EARLY-MAY-BANK-HOLIDAY',1,NULL,'2020-05-03','','/uk/early-may-bank-holiday.php',0,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(320,'country','uk','uk','Europe','','Spring Bank Holiday','EARLY-MAY-BANK-HOLIDAY',1,NULL,'2020-05-31','','/uk/may-spring-bank-holiday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(321,'country','uk','uk','Europe','','Summer Bank Holiday (SCT)','SUMMER-BANK-HOLIDAY-SCT',NULL,NULL,'2020-08-02','','/uk/summer-bank-holiday.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(322,'country','uk','uk','Europe','','Summer Bank Holiday (ENG, NIR, WAL)','SUMMER-BANK-HOLIDAY-ENG-NIR-WAL',1,NULL,'2020-08-30','','/uk/summer-bank-holiday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(323,'country','uk','uk','Europe','','Halloween','HALLOWEEN',NULL,'','2020-10-31','Y','/us/halloween.php',1,'OB','N','halloween.jpg',NULL,NULL,'','2012-10-14','Y'),(324,'country','uk','uk','Europe','','Guy Fawkes Day','GUY-FAWKES-DAY',1,'X','2020-11-05','Y','/uk/guy-fawkes-day.php',1,'NH','Y','guy-fawkes-day.jpg',NULL,NULL,'','2012-10-14','Y'),(325,'country','uk','uk','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(326,'country','uk','uk','Europe','','Boxing Day','BOXING-DAY',1,NULL,'2020-12-26','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(327,'country','us','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',2,'X','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(328,'country','us','us','Americas','','M L King Day','M-L-KING-DAY',1,'X','2020-01-20','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(329,'country','us','us','Americas','','Valentine\'s Day','VALENTINES-DAY',2,'X','2020-02-14','Y','/us/valentines-day.php',1,'OB','N','valentines-day.jpg',NULL,NULL,'','2012-10-15','Y'),(330,'country','us','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',1,'X','2020-02-17','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(331,'country','us','us','Americas','','Good Friday','GOOD-FRIDAY',2,'X','2020-04-18','','/us/good-friday.php',1,'OB',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(332,'country','us','us','Americas','','Easter Sunday','EASTER-SUNDAY',2,'X','2020-04-20','','/us/easter.php',1,'OB',NULL,'easter.jpg',NULL,NULL,'','2012-10-15','Y'),(333,'country','us','us','Americas','','Mother\'s Day','MOTHERS-DAY',2,'X','2020-05-11','','/shared/mothers-day.php',1,'OB',NULL,'mothers-day.jpg',NULL,NULL,'','2012-10-15','Y'),(334,'country','us','us','Americas','','Memorial Day','MEMORIAL-DAY',1,'X','2020-05-26','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(335,'country','us','us','Americas','','Father\'s Day','FATHERS-DAY',2,'X','2020-06-15','','/shared/fathers-day.php',1,'OB',NULL,'fathers-day.jpg',NULL,NULL,'','2012-10-15','Y'),(336,'country','us','us','Americas','','Independence Day','INDEPENDENCE-DAY',1,'X','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(337,'country','us','us','Americas','','Labor Day','LABOR-DAY',1,'X','2020-09-01','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(338,'country','us','us','Americas','','Columbus Day','COLUMBUS-DAY',2,'X','2020-10-13','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(339,'country','us','us','Americas','','Halloween','HALLOWEEN',2,'X','2020-10-31','Y','/us/halloween.php',1,'NH',NULL,'halloween.jpg',NULL,NULL,'','2012-10-15','Y'),(340,'country','us','us','Americas','','Veterans Day','VETERANS-DAY',1,'X','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(341,'country','us','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',2,'X','2020-11-27','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(342,'country','us','us','Americas','','Christmas','CHRISTMAS',2,'X','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(349,'country','greece','greece','Europe','','Orthodox Easter Sunday','ORTHODOX-EASTER-SUNDAY',NULL,NULL,'2020-04-19','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-15','Y'),(350,'country','greece','greece','Europe','','Orthodox Easter Monday','ORTHODOX-EASTER-MONDAY',NULL,NULL,'2020-04-20','','/us/easter.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(353,'country','greece','greece','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(359,'country','greece','greece','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(360,'country','greece','greece','Europe','','Epiphany','EPIPHANY',NULL,NULL,'2020-01-06','Y','/spain/epiphany.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(361,'country','greece','greece','Europe','','Clean Monday','CLEAN-MONDAY',NULL,NULL,'2020-03-02','','/greece/ash-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(362,'country','greece','greece','Europe','','Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-03-25','Y','/greece/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(363,'country','greece','greece','Europe','','Labor day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(364,'country','greece','greece','Europe','','Orthodox Good Friday','ORTHODOX-GOOD-FRIDAY',NULL,NULL,'2020-04-17','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(365,'country','greece','greece','Europe','','Orthodox Whit Monday','ORTHODOX-WHIT-MONDAY',NULL,NULL,'2020-06-08','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(366,'country','greece','greece','Europe','','The Assumption of Mary','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(367,'country','greece','greece','Europe','','The Ochi Day','THE-OCHI-DAY',NULL,NULL,'2020-10-28','Y','/greece/the-ochi-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(343,'country','ireland','ireland','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(344,'country','ireland','ireland','Europe','','St. Patrick\'s Day','ST-PATRICKS-DAY',NULL,NULL,'2020-03-17','Y','/us/st-patricks-day.php',1,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(345,'country','ireland','ireland','Europe','','Maundy Thursday','MAUNDY-THURSDAY',NULL,NULL,'2020-01-01','','/philippines/maundy-thursday.php',1,'OB','N',NULL,NULL,NULL,'Y','2012-10-14',''),(346,'country','ireland','ireland','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'OB','N','good-friday.jpg',NULL,NULL,'Y','2012-10-15','Y'),(347,'country','ireland','ireland','Europe','','Easter','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-15','Y'),(348,'country','ireland','ireland','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(351,'country','ireland','ireland','Europe','','May Bank Holiday','MAY-BANK-HOLIDAY',NULL,NULL,'2020-05-04','','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'Y','2012-10-14','Y'),(352,'country','ireland','ireland','Europe','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(354,'country','ireland','ireland','Europe','','St. Stephen\'s Day','ST-STEPHENS-DAY',1,NULL,'2020-12-26','Y','/italy/st-stephens-day.php',0,'NH','Y',NULL,NULL,NULL,'Y','2012-10-14','Y'),(355,'country','ireland','ireland','Europe','','New Year\'s Eve ','NEW-YEARS-EVE ',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'OB','N',NULL,NULL,NULL,'','2012-10-14',''),(356,'country','ireland','ireland','Europe','','August Bank Holiday','AUGUST-BANK-HOLIDAY',NULL,NULL,'2020-08-03','','/ireland/august-bank-holiday.php',0,'NH',NULL,NULL,NULL,NULL,'Y','2012-10-14','Y'),(357,'country','ireland','ireland','Europe','','June Bank Holiday','JUNE-BANK-HOLIDAY',NULL,NULL,'2020-06-01','','/ireland/june-bank-holiday.php',0,'NH','Y',NULL,NULL,NULL,'Y','2012-10-14','Y'),(358,'country','ireland','ireland','Europe','','October Bank Holiday','OCTOBER-BANK-HOLIDAY',NULL,NULL,'2020-10-26','','/ireland/october-bank-holiday.php',0,'NH','Y',NULL,NULL,NULL,'Y','2012-10-14','Y'),(485,'religious','sikh','sikh',NULL,'sikh','Vaisakhi','VAISAKHI',NULL,NULL,'2020-04-14','','/sikh/vaisakhi.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(486,'religious','sikh','sikh',NULL,'sikh','Martyrdom of Guru Arjan Dev Sahib','MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB',NULL,NULL,'2020-06-16','Y','/sikh/martyrdom-of-guru-arjan-dev-sahib.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(484,'religious','sikh','sikh',NULL,'sikh','Hola Mohalla','HOLA-MOHALLA',NULL,NULL,'2020-03-17','','/sikh/hola-mohalla.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(483,'religious','sikh','sikh',NULL,'sikh','Guru Har Rai Birthday','GURU-HAR-RAI-BIRTHDAY',NULL,NULL,'2020-01-01','','/sikh/guru-har-rai-birthday.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(482,'religious','sikh','sikh',NULL,'sikh','Maghi - Lohri','MAGHI-LOHRI',NULL,NULL,'2020-01-14','','/sikh/maghi-lohri.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(481,'religious','sikh','sikh',NULL,'sikh','Guru Gobind Singh Birthday','GURU-GOBIND-SINGH-BIRTHDAY',NULL,NULL,'2020-01-02','','/sikh/guru-gobind-singh-birthday.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(480,'religious','buddhist','buddhist',NULL,'buddhist','Bodhi Day','BODHI-DAY',NULL,NULL,'2020-12-08','','/buddhist/bodhi-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(479,'religious','buddhist','buddhist',NULL,'buddhist','Asala - Dharma Day','ASALA-DHARMA-DAY',NULL,NULL,'2020-07-05','','/buddhist/asala-dharma-day.php',0,'RH',NULL,'asala-dharma-day.jpg',NULL,NULL,'','2012-10-15','Y'),(478,'religious','buddhist','buddhist',NULL,'buddhist','Vesak - Buddha Day','VESAK-BUDDHA-DAY',NULL,NULL,'2020-05-07','','/singapore/vesak-day.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(477,'religious','buddhist','buddhist',NULL,'buddhist','Theravada New Year','THERAVADA-NEW-YEAR',NULL,NULL,'2020-04-09','','/buddhist/theravada-new-year.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(476,'religious','buddhist','buddhist',NULL,'buddhist','Magha Puja Day','MAGHA-PUJA-DAY',NULL,NULL,'2020-03-09','','/buddhist/magha-puja-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(475,'religious','buddhist','buddhist',NULL,'buddhist','Nirvana Day','NIRVANA-DAY',NULL,NULL,'2020-02-08','Y','/buddhist/nirvana-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(474,'religious','buddhist','buddhist',NULL,'buddhist','Parinirvana - Nirvana Day','PARINIRVANA-NIRVANA-DAY',NULL,NULL,'2020-01-01','','/buddhist/parinirvana-nirvana-day.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(473,'religious','buddhist','buddhist',NULL,'buddhist','Mahayana New Year','MAHAYANA-NEW-YEAR',NULL,NULL,'2020-01-10','','/buddhist/mahayana-new-year.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(472,'religious','islam','islam',NULL,'islam','Day of Ashura / Muharram','DAY-OF-ASHURA-MUHARRAM',NULL,NULL,'2020-08-30','','/india/muharram.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(471,'religious','islam','islam',NULL,'islam','Hijra - Islamic New Year','HIJRA-ISLAMIC-NEW-YEAR',NULL,NULL,'2020-08-20','','/india/muharram.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(470,'religious','islam','islam',NULL,'islam','Eid-al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(469,'religious','islam','islam',NULL,'islam','Waqf al Arafa - Hajj','WAQF-AL-ARAFA-HAJJ',NULL,NULL,'2020-08-10','','/islam/waqf-al-arafa-hajj.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(468,'religious','islam','islam',NULL,'islam','Eid-al-Fitr (End of Ramadan)','EID-AL-FITR-END-OF-RAMADAN',NULL,NULL,'2020-05-24','','/islam/ramadan.php',1,'RH',NULL,'hari-raya-puasa.jpg',NULL,NULL,'','2012-10-15','Y'),(467,'religious','islam','islam',NULL,'islam','Laylat al Qadr','LAYLAT-AL-KADR',NULL,NULL,'2020-05-19','','/islam/laylat-al-kadr.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(466,'religious','islam','islam',NULL,'islam','Ramadan (start)','RAMADAN-START',NULL,NULL,'2020-04-22','','/islam/ramadan.php',1,'RH',NULL,'ramadan.jpg',NULL,NULL,'','2012-10-15','Y'),(465,'religious','islam','islam',NULL,'islam','Lailat al Bara\'ah','LAILAT-AL-BARAAH',NULL,NULL,'2020-04-21','','/islam/lailat-al-baraah.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(464,'religious','islam','islam',NULL,'islam','Lailat al Miraj','LAILAT-AL-MIRAJ',NULL,NULL,'2020-03-22','','/islam/lailat-al-miraj.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(463,'religious','islam','islam',NULL,'islam','Milad un Nabi (Shia)','MILAD-UN-NABI-SHIA',NULL,NULL,'2020-11-03','','/india/milad-un-nabi.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(462,'religious','islam','islam',NULL,'islam','Milad un Nabi','MILAD-UN-NABI',NULL,NULL,'2020-10-30','','/india/milad-un-nabi.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(461,'religious','jewish','jewish',NULL,'jewish','Hanukkah Ends','HANUKKAH-ENDS',NULL,NULL,'2020-12-18','','/jewish/hanukkah.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(460,'religious','jewish','jewish',NULL,'jewish','Hanukkah Starts','HANUKKAH-STARTS',NULL,NULL,'2020-12-11','','/jewish/hanukkah.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(459,'religious','jewish','jewish',NULL,'jewish','Simchat Torah','SIMHAT-TORAH',NULL,NULL,'2020-10-11','','/jewish/simhat-torah.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(458,'religious','jewish','jewish',NULL,'jewish','Shmini Atzeret','SHEMINI-ATZERET',NULL,NULL,'2020-10-10','','/jewish/shemini-atzeret.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(457,'religious','jewish','jewish',NULL,'jewish','Hoshanah Rabbah','HOSHANAH-RABBAH',NULL,NULL,'2020-01-01','','/jewish/hoshanah-rabbah.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(456,'religious','jewish','jewish',NULL,'jewish','Sukkot Ends','SUKKOT-ENDS',NULL,NULL,'2020-10-09','','/jewish/sukkot.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(455,'religious','jewish','jewish',NULL,'jewish','Sukkot Starts','SUKKOT-STARTS',NULL,NULL,'2020-10-03','','/jewish/sukkot.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(454,'religious','jewish','jewish',NULL,'jewish','Yom Kippur','YOM-KIPPUR',NULL,NULL,'2020-09-28','','/jewish/yom-kippur.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(453,'religious','jewish','jewish',NULL,'jewish','Fast of Gedaliah','FAST-OF-GEDALIAH',NULL,NULL,'2020-09-21','','/jewish/fast-of-gedaliah.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(452,'religious','jewish','jewish',NULL,'jewish','Rosh HaShana Ends','ROSH-HASHANAH-ENDS',NULL,NULL,'2020-09-20','','/jewish/rosh-hashanah.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(451,'religious','jewish','jewish',NULL,'jewish','Rosh HaShana Starts','ROSH-HASHANAH-STARTS',NULL,NULL,'2020-09-19','','/jewish/rosh-hashanah.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(450,'religious','jewish','jewish',NULL,'jewish','Tish\'a B\'Av','TISHA-BAV',NULL,NULL,'2020-07-30','','/jewish/tisha-bav.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(449,'religious','jewish','jewish',NULL,'jewish','The 17th of Tammuz','THE-17TH-OF-TAMMUZ',NULL,NULL,'2020-01-01','','/jewish/the-17th-of-tammuz.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(448,'religious','jewish','jewish',NULL,'jewish','Shavuot','SHAVUOT',NULL,NULL,'2020-05-30','','/jewish/shavuot.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(447,'religious','jewish','jewish',NULL,'jewish','Shavuot (1st day)','SHAVUOT-1ST-DAY',NULL,NULL,'2020-05-29','','/jewish/shavuot.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(446,'religious','jewish','jewish',NULL,'jewish','Yom Yerushalayim','YOM-YERUSHALAYIM',NULL,NULL,'2020-05-22','','/jewish/yom-yerushalayim.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(445,'religious','jewish','jewish',NULL,'jewish','Lag BaOmer','LAG-BAOMER',NULL,NULL,'2020-05-12','','/jewish/lag-bomer.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(444,'religious','jewish','jewish',NULL,'jewish','Yom HaAtzma\'ut','YOM-HAATZMAUT',NULL,NULL,'2020-04-29','','/jewish/yom-haatzmaut.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(443,'religious','jewish','jewish',NULL,'jewish','Yom HaZikaron','YOM-HAZIKARON',NULL,NULL,'2020-04-28','','/jewish/yom-hazikaron.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(442,'religious','jewish','jewish',NULL,'jewish','Yom Hashoah','YOM-HASHOAH',NULL,NULL,'2020-04-21','','/jewish/yom-hashoah.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(441,'religious','jewish','jewish',NULL,'jewish','Passover - Final Day','PASSOVER-FINAL-DAY',NULL,NULL,'2020-04-16','','/jewish/passover.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(440,'religious','jewish','jewish',NULL,'jewish','Passover - Second Day','PASSOVER-SECOND-DAY',NULL,NULL,'2020-05-08','','/jewish/passover.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(439,'religious','jewish','jewish',NULL,'jewish','Passover - First Day','PASSOVER-FIRST-DAY',0,NULL,'2020-04-08','','/jewish/passover.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(438,'religious','jewish','jewish',NULL,'jewish','Shushan Purim','SHUSHAN-PURIM',NULL,NULL,'2020-03-11','','/jewish/purim.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(437,'religious','jewish','jewish',NULL,'jewish','Purim','PURIM',0,NULL,'2020-03-10','','/jewish/purim.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(436,'religious','jewish','jewish',NULL,'jewish','Tu Bishvat','TU-BISHVAT',NULL,NULL,'2020-01-21','','/jewish/tu-bishvat.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(435,'religious','hindu','hindu',NULL,'hindu','Kartik Poornima','KARTIK-POORNIMA',NULL,NULL,'2020-11-30','','/hindu/kartik-poornima.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(434,'religious','hindu','hindu',NULL,'hindu','Diwali','DIWALI',NULL,NULL,'2020-11-14','','/india/diwali.php',1,'RH',NULL,'diwali.jpg',NULL,NULL,'','2012-10-15','Y'),(433,'religious','hindu','hindu',NULL,'hindu','Dhan Teras','DHAN-TERAS',NULL,NULL,'2020-11-13','','/india/dhanteras.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(432,'religious','hindu','hindu',NULL,'hindu','Karwa Chauth','KARWA-CHAUTH',NULL,NULL,'2020-11-04','','/india/karva-chauth.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(431,'religious','hindu','hindu',NULL,'hindu','Sharad Purnima','SHARAD-PURNIMA',NULL,NULL,'2020-10-30','','/hindu/sharad-purnima.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(430,'religious','hindu','hindu',NULL,'hindu','Dusshera ','DUSSHERA-',NULL,NULL,'2020-10-25','','/india/dussehra.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(429,'religious','hindu','hindu',NULL,'hindu','Navaratri ends / Maha Navami','NAVARATRI-ENDS-MAHA-NAVAMI',NULL,NULL,'2020-10-24','','/india/navaratri.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(428,'religious','hindu','hindu',NULL,'hindu','Durga Puja begins','DURGA-PUJA-BEGINS',NULL,NULL,'2020-10-21','','/hindu/durga-puja.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(427,'religious','hindu','hindu',NULL,'hindu','Navaratri begins','NAVARATRI-BEGINS',NULL,NULL,'2020-10-17','','/india/navaratri.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(654,'religious','hindu','hindu',NULL,'hindu','Bhai Dooj','BHAI-DOOJ',NULL,NULL,'2020-11-16','','/hindu/bhai-dooj.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(425,'religious','hindu','hindu',NULL,'hindu','Mahalaya Amavasya','MAHALAYA-AMAVASYA',NULL,NULL,'2020-09-17','','/hindu/mahalaya-amavasya.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(424,'religious','hindu','hindu',NULL,'hindu','Onam','ONAM',NULL,NULL,'2020-08-31','','/india/onam.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(423,'religious','hindu','hindu',NULL,'hindu','Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-08-22','','/india/ganesh-chaturthi.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(422,'religious','hindu','hindu',NULL,'hindu','Krishna Janmashtami','KRISHNA-JANMASHTAMI',NULL,NULL,'2020-08-11','','/india/janmashtami.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(421,'religious','hindu','hindu',NULL,'hindu','Raksha Bandhan','RAKSHA-BANDHAN',NULL,NULL,'2020-08-03','','/india/raksha-bandhan.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(420,'religious','hindu','hindu',NULL,'hindu','Nag Panchami','NAG-PANCHAMI',NULL,NULL,'2020-07-25','','/hindu/nag-panchami.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(419,'religious','hindu','hindu',NULL,'hindu','Guru Purnima','GURU-PURNIMA',NULL,NULL,'2020-07-05','','/hindu/guru-purnima.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(418,'religious','hindu','hindu',NULL,'hindu','Puri Rath Yatra','PURI-RATH-YATRA',NULL,NULL,'2020-06-23','','/india/rath-yatra.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(417,'religious','hindu','hindu',NULL,'hindu','Savitri Pooja','SAVITRI-POOJA',NULL,NULL,'2020-05-22','','/hindu/savitri-pooja.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(416,'religious','hindu','hindu',NULL,'hindu','Vaisakhi / Baisakhi / Vishu ','VAISAKHI-BAISAKHI-VISHU',NULL,NULL,'2020-04-14','','/hindu/vishu.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(415,'religious','hindu','hindu',NULL,'hindu','Akshaya Tritiya','AKSHAYA-TRITIYA',0,NULL,'2020-04-26','','/india/akshaya-tritiya.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(414,'religious','hindu','hindu',NULL,'hindu','Hanuman Jayanti','HANUMAN-JAYANTI',NULL,NULL,'2020-04-08','','/hindu/hanuman-jayanti.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(413,'religious','hindu','hindu',NULL,'hindu','Bengali New Year / Bihu','BENGALI-NEW-YEAR-BIHU',NULL,NULL,'2020-04-14','','/hindu/bihu-bengali-new-year.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(411,'religious','hindu','hindu',NULL,'hindu','Ramanavami','RAMANAVAMI',NULL,NULL,'2020-04-02','','/hindu/ramanavami.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(410,'religious','hindu','hindu',NULL,'hindu','Ugadi / Gudi Padwa / Telugu New Year','UGADI-GUDI-PADWA-TELUGU-NEW-YEAR',NULL,NULL,'2020-03-25','','/hindu/ugadi-telugu-new-year.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(409,'religious','hindu','hindu',NULL,'hindu','Hindi New Year','HINDI-NEW-YEAR',NULL,NULL,'2020-03-25','','/hindu/hindi-new-year.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(408,'religious','hindu','hindu',NULL,'hindu','Holi','HOLI',NULL,NULL,'2020-03-10','','/india/holi.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(407,'religious','hindu','hindu',NULL,'hindu','Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21','','/india/maha-shivratri.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(406,'religious','hindu','hindu',NULL,'hindu','Vasant Panchami','VASANT-PANCHAMI',0,NULL,'2020-01-29','','/india/vasant-panchami.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(405,'religious','hindu','hindu',NULL,'hindu','Tamil New Year','TAMIL-NEW-YEAR',NULL,NULL,'2020-04-14','','/hindu/tamil-new-year.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(404,'religious','hindu','hindu',NULL,'hindu','Makarsankranti / Pongal','MAKARSANKRANTI-PONGAL',0,NULL,'2020-01-15','','/india/pongal.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(403,'religious','christian','christian',NULL,'christian','Watch Night','WATCH-NIGHT',NULL,NULL,'2020-12-31','','/christian/watch-night.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(402,'religious','christian','christian',NULL,'christian','Holy Innocents','HOLY-INNOCENTS',NULL,NULL,'2020-12-28','','/christian/holy-innocents.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(401,'religious','christian','christian',NULL,'christian','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(400,'religious','christian','christian',NULL,'christian','Christmas Eve','CHRISTMAS-EVE',NULL,NULL,'2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(399,'religious','christian','christian',NULL,'christian','St. Nicholas Day','ST-NICHOLAS-DAY',NULL,NULL,'2020-12-06','Y','/christian/st-nicholas-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(398,'religious','christian','christian',NULL,'christian','St. Andrew\'s Day','ST-ANDREWS-DAY',NULL,NULL,'2020-11-30','','/christian/st-andrews-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(397,'religious','christian','christian',NULL,'christian','Advent - first Sunday','ADVENT-FIRST-SUNDAY',NULL,NULL,'2020-11-29','','/christian/advent-first-sunday.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(396,'religious','christian','christian',NULL,'christian','Thanksgiving (USA)','THANKSGIVING-USA',NULL,NULL,'2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(395,'religious','christian','christian',NULL,'christian','All Souls\' Day','ALL-SOULS-DAY',NULL,NULL,'2020-11-02','Y','/christian/all-souls-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(393,'religious','christian','christian',NULL,'christian','All Saints\' Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','Y','/philippines/all-saints-day.php',1,'RH',NULL,'all-saints-day.jpg',NULL,NULL,'','2012-10-15','Y'),(392,'religious','christian','christian',NULL,'christian','All Hallows Eve','ALL-HALLOWS-EVE',NULL,NULL,'2020-10-31','Y','/us/halloween.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(391,'religious','christian','christian',NULL,'christian','Michael and All Angels','MICHAEL-AND-ALL-ANGELS',NULL,NULL,'2020-09-29','Y','/christian/michael-and-all-angels.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(390,'religious','christian','christian',NULL,'christian','Holy Cross Day','HOLY-CROSS-DAY',NULL,NULL,'2020-09-14','Y','/christian/holy-cross-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(389,'religious','christian','christian',NULL,'christian','The Assumption of Mary','THE-ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'RH',NULL,'the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-15','Y'),(388,'religious','christian','christian',NULL,'christian','Lammas','LAMMAS',NULL,NULL,'2020-08-01','Y','/christian/lammas.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(387,'religious','christian','christian',NULL,'christian','Saint Vladimir','SAINT-VLADIMIR',NULL,NULL,'2020-06-15','','/christian/saint-vladimir.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(386,'religious','christian','christian',NULL,'christian','Saints Peter and Paul','SAINTS-PETER-AND-PAUL',NULL,NULL,'2020-06-29','Y','/christian/saints-peter-and-paul.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(385,'religious','christian','christian',NULL,'christian','Corpus Christi','CORPUS-CHRISTI',NULL,NULL,'2020-06-11','','/us/corpus-christi.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(384,'religious','christian','christian',NULL,'christian','Trinity Sunday','TRINITY-SUNDAY',NULL,NULL,'2020-06-07','','/christian/trinity-sunday.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(383,'religious','christian','christian',NULL,'christian','Pentecost','PENTECOST',NULL,NULL,'2020-05-31','','/christian/pentecost.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(382,'religious','christian','christian',NULL,'christian','Ascension of Jesus','ASCENSION-OF-JESUS',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(381,'religious','christian','christian',NULL,'christian','St. James the Great Day','ST-JAMES-THE-GREAT-DAY',NULL,NULL,'2020-07-25','','/christian/st-james-the-great-day-.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(380,'religious','christian','christian',NULL,'christian','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'RH',NULL,'easter.jpg',NULL,NULL,'','2012-10-15','Y'),(496,'country','international','international','international',NULL,'Global Family Day','GLOBAL-FAMILY-DAY',0,'','2020-01-01','Y','/international/global-family-day.php',0,'International',NULL,'family-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(497,'country','international','international','international',NULL,'World Braille Day','WORLD-BRAILLE-DAY',2,'X','2020-01-04','Y','/international/world-braille-day.php',1,'International',NULL,'world-braille-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(498,'country','international','international','international',NULL,'International Thank-You Day','INTERNATIONAL-THANK-YOU-DAY',0,'','2020-01-11','Y','/international/international-thank-you-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(499,'country','international','international','international',NULL,'World Leprosy Day','WORLD-LEPROSY-DAY',1,'','2020-01-30','Y','/international/world-leprosy-day.php',1,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(500,'country','international','international','international',NULL,'Darwin Day','DARWIN-DAY',0,'','2020-02-12','Y','/international/darwin-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(501,'country','international','international','international',NULL,'International Mother Language Day','INTERNATIONAL-MOTHER-LANGUAGE-DAY',2,'X','2020-02-21','Y','/international/mother-language-day.php',1,'International',NULL,'international-mother-language-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(502,'country','international','international','international',NULL,'World Thinking Day','WORLD-THINKING-DAY',2,'X','2020-02-22','Y','/international/world-thinking-day.php',1,'International',NULL,'world-thinking-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(503,'country','international','international','international',NULL,'International Day of the Seal','INTERNATIONAL-DAY-OF-THE-SEAL',2,'','2020-03-01','Y','/international/international-day-of-the-seal.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(504,'country','international','international','international',NULL,'International Women\'s Day','INTERNATIONAL-WOMENS-DAY',2,'X','2020-03-08','Y','/international/international-womens-day.php',1,'International',NULL,'international-womens-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(505,'country','international','international','international',NULL,'World Frog Day','WORLD-FROG-DAY',2,'','2020-03-20','Y','/international/world-frog-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(506,'country','international','international','international',NULL,'World Down Syndrome Day','WORLD-DOWN-SYNDROME-DAY',1,'','2020-03-21','Y','/international/world-down-syndrome-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(507,'country','international','international','international',NULL,'World Water Day','WORLD-WATER-DAY',2,'X','2020-03-22','Y','/international/world-water-day.php',1,'International',NULL,'world-water-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(508,'country','international','international','international',NULL,'World Meteorological Day','WORLD-METEOROLOGICAL-DAY',2,'','2020-03-23','Y','/international/world-meteorological-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(509,'country','international','international','international',NULL,'Earth Hour','EARTH-HOUR',2,'X','2020-03-28','','/international/earth-hour.php',1,'International',NULL,'earth-hour.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(510,'country','international','international','international',NULL,'International Children\'s Book Day','INTERNATIONAL-CHILDRENS-BOOK-DAY',2,'','2020-04-02','Y','/international/international-childrens-book-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(511,'country','international','international','international',NULL,'World Health Day','WORLD-HEALTH-DAY',2,'X','2020-04-07','Y','/international/world-health-day.php',1,'International',NULL,'world-health-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(512,'country','international','international','international',NULL,'Yuri\'s Night','YURIS-NIGHT',0,'','2020-04-12','Y','/international/yuris-night.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(513,'country','international','international','international',NULL,'International Special Librarians Day','INTERNATIONAL-SPECIAL-LIBRARIANS-DAY',2,'','2020-04-16','','/international/international-special-librarians-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(514,'country','international','international','international',NULL,'International Creativity and Innovation Day','INTERNATIONAL-CREATIVITY-AND-INNOVATION-DAY',2,'','2020-04-21','Y','/international/international-creativity-and-innovation-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(515,'country','international','international','international',NULL,'Earth Day','EARTH-DAY',2,'X','2020-04-22','Y','/international/earth-day.php',1,'International',NULL,'earth-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(516,'country','international','international','international',NULL,'World Book Day','WORLD-BOOK-DAY',2,'X','2020-04-23','Y','/international/world-book-day.php',1,'International',NULL,'world-book-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(517,'country','international','international','international',NULL,'World Penguin Day','WORLD-PENGUIN-DAY',2,'','2020-04-25','Y','/international/world-penguin-day.php',0,'International',NULL,'world-penguin-day.jpg','Pixabay',NULL,NULL,'2014-08-14','Y'),(518,'country','international','international','international',NULL,'World Press Freedom Day','WORLD-PRESS-FREEDOM-DAY',2,'','2020-05-03','Y','/un/world-press-freedom-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(519,'country','international','international','international',NULL,'International Midwives Day','INTERNATIONAL-MIDWIVES-DAY',2,'','2020-05-05','Y','/international/international-midwives-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(520,'country','international','international','international',NULL,'World Red Cross Day','WORLD-RED-CROSS-DAY',2,'X','2020-05-08','Y','/international/world-red-cross-day.php',1,'International',NULL,'world-red-cross-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(521,'country','international','international','international',NULL,'World Lupus Day','WORLD-LUPUS-DAY',1,'','2020-05-10','Y','/international/world-lupus-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(522,'country','international','international','international',NULL,'International Nurses Day','INTERNATIONAL-NURSES-DAY',2,'','2020-05-12','Y','/international/international-nurses-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(523,'country','international','international','international',NULL,'IEEE Global Engineering Day','IEEE-GLOBAL-ENGINEERING-DAY',0,'','2020-05-13','Y','/international/ieee-global-engineering-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(524,'country','international','international','international',NULL,'International Day of Families','INTERNATIONAL-DAY-OF-FAMILIES',2,'','2020-05-15','Y','/un/international-day-of-families.php',1,'International','N','family-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(525,'country','international','international','international',NULL,'International Museum Day','INTERNATIONAL-MUSEUM-DAY',2,'','2020-05-18','Y','/international/international-museum-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(526,'country','international','international','international',NULL,'World Day for Cultural Diversity','WORLD-DAY-FOR-CULTURAL-DIVERSITY',2,'','2020-05-21','Y','/international/world-day-for-cultural-diversity.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(527,'country','international','international','international',NULL,'International Day for Biological Diversity','INTERNATIONAL-DAY-FOR-BIOLOGICAL-DIVERSITY',2,'','2020-05-22','Y','/international/international-day-for-biological-diversity.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(528,'country','international','international','international',NULL,'World Turtle Day','WORLD-TURTLE-DAY',2,'','2020-05-23','Y','/international/world-turtle-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(529,'country','international','international','international',NULL,'World Schizophrenia Day','WORLD-SCHIZOPHRENIA-DAY',2,'','2020-05-24','Y','/international/world-schizophrenia-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(530,'country','international','international','international',NULL,'Towel Day','TOWEL-DAY',2,'','2020-05-25','Y','/international/towel-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(531,'country','international','international','international',NULL,'World No-Tobacco Day','WORLD-NO-TOBACCO-DAY',1,'X','2020-05-31','Y','/international/world-no-tobacco-day.php',1,'International',NULL,'world-no-tobacco-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(532,'country','international','international','international',NULL,'World Ocean Day','WORLD-OCEAN-DAY',2,'X','2020-06-08','Y','/international/world-oceans-day.php',1,'International',NULL,'world-oceans-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(533,'country','international','international','international',NULL,'World Blood Donor Day','WORLD-BLOOD-DONOR-DAY',2,'X','2020-06-14','Y','/international/world-blood-donor-day.php',1,'International',NULL,'world-blood-donor-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(534,'country','international','international','international',NULL,'International Day of the African Child','INTERNATIONAL-DAY-OF-THE-AFRICAN-CHILD',2,'','2020-06-16','Y','/international/international-day-of-the-african-child.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(535,'country','international','international','international',NULL,'World Day to Combat Desertification & Drought','WORLD-DAY-TO-COMBAT-DESERTIFICATION-DROUGHT',0,'','2020-06-17','Y','/international/world-day-to-combat-desertification-and-drought.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(536,'country','international','international','international',NULL,'World Refugee Day','WORLD-REFUGEE-DAY',2,'','2020-06-20','Y','/international/world-refugee-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(537,'country','international','international','international',NULL,'International Day Against Drug Abuse and Trafficking','DAY-AGAINST-DRUG-ABUSE-AND-TRAFFICKING',2,'X','2020-06-26','Y','/international/day-against-drug-abuse-and-illicit-trafficking.php',1,'International',NULL,'day-against-drug-abuse-and-illicit-trafficking.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(538,'country','international','international','international',NULL,'World Population Day','WORLD-POPULATION-DAY',2,'X','2020-07-11','Y','/international/world-population-day.php',1,'International',NULL,'world-population-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(539,'country','international','international','international',NULL,'World Snake Day','WORLD-SNAKE-DAY',2,'X','2020-07-16','Y','/international/world-snake-day.php',1,'International',NULL,'world-snake-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(540,'country','international','international','international',NULL,'Universal & International Infinity Day','UNIVERSAL-&-INTERNATIONAL-INFINITY-DAY',2,'','2020-08-08','Y','/international/universal-and-international-infinity-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(541,'country','international','international','international',NULL,'International Day of the World\'s Indigenous People','INTERNATIONAL-DAY-OF-THE-WORLDS-INDIGENOUS-PEOPLE',0,'','2020-08-09','Y','/international/international-day-of-the-worlds-indigenous-people.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(542,'country','international','international','international',NULL,'International Biodiesel Day','INTERNATIONAL-BIODIESEL-DAY',0,'','2020-08-10','Y','/international/international-biodiesel-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(543,'country','international','international','international',NULL,'International Youth Day','INTERNATIONAL-YOUTH-DAY',2,'X','2020-08-12','Y','/international/international-youth-day.php',1,'International',NULL,'international-youth-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(544,'country','international','international','international',NULL,'International Lefthanders Day','INTERNATIONAL-LEFTHANDERS-DAY',2,'','2020-08-13','Y','/international/international-lefthanders-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(545,'country','international','international','international',NULL,'World Lizard Day','WORLD-LIZARD-DAY',2,'X','2020-08-14','Y','/international/world-lizard-day.php',1,'International',NULL,'world-lizard-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(546,'country','international','international','international',NULL,'International Day for the Remembrance of the Slave Trade & its Abolition','REMEMBRANCE-OF-THE-SLAVE-TRADE-ITS-ABOLITION',0,'','2020-08-23','Y','/international/international-day-for-the-remembrance-of-the-slave-trade-and-its-abolition.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(547,'country','international','international','international',NULL,'International Literacy Day','INTERNATIONAL-LITERACY-DAY',2,'X','2020-09-08','Y','/international/international-literacy-day.php',1,'International',NULL,'international-literacy-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(548,'country','international','international','international',NULL,'International Chocolate Day','INTERNATIONAL-CHOCOLATE-DAY',2,'X','2020-09-13','Y','/international/international-chocolate-day.php',1,'International',NULL,'international-chocolate-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(549,'country','international','international','international',NULL,'Software Freedom Day','SOFTWARE-FREEDOM-DAY',0,'','2020-09-15','Y','/international/software-freedom-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(550,'country','international','international','international',NULL,'International Day for the Preservation of the Ozone Layer','DAY-FOR-THE-PRESERVATION-OF-THE-OZONE-LAYER',0,'','2020-09-16','Y','/un/international-day-for-the-preservation-of-the-ozone-layer.php',0,'International','N',NULL,NULL,NULL,NULL,'2014-08-14','Y'),(551,'country','international','international','international',NULL,'Talk Like a Pirate Day','TALK-LIKE-A-PIRATE-DAY',1,'','2020-09-19','Y','/international/talk-like-a-pirate-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(552,'country','international','international','international',NULL,'World Gratitude Day','WORLD-GRATITUDE-DAY',1,'','2020-09-21','Y','/international/world-gratitude-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(553,'country','international','international','international',NULL,'World Car-Free Day','WORLD-CAR-FREE-DAY',1,'','2020-09-22','Y','/international/world-car-free-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(554,'country','international','international','international',NULL,'Inventors Day','INVENTORS-DAY',2,'X','2020-09-29','Y','/international/inventors-day.php',1,'International',NULL,'inventors-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(555,'country','international','international','international',NULL,'International Music Day','INTERNATIONAL-MUSIC-DAY',2,'X','2020-10-01','Y','/international/international-music-day.php',1,'International',NULL,'international-music-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(556,'country','international','international','international',NULL,'World Farm Animals Day','WORLD-FARM-ANIMALS-DAY',2,'','2020-10-02','Y','/international/world-farm-animals-day.php',1,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(557,'country','international','international','international',NULL,'World Temperance Day','WORLD-TEMPERANCE-DAY',2,'','2020-10-03','Y','/international/world-temperance-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(558,'country','international','international','international',NULL,'World Animal Day','WORLD-ANIMAL-DAY',2,'X','2020-10-04','Y','/international/world-animal-day.php',1,'International',NULL,'world-animal-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(559,'country','international','international','international',NULL,'World Teacher\'s Day','WORLD-TEACHERS-DAY',2,'X','2020-10-05','Y','/international/world-teachers-day.php',1,'International',NULL,'world-teachers-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(560,'country','international','international','international',NULL,'World Mental Health Day','WORLD-MENTAL-HEALTH-DAY',1,'','2020-10-10','Y','/international/world-mental-health-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(561,'country','international','international','international',NULL,'World Food Day','WORLD-FOOD-DAY',1,'X','2020-10-16','Y','/international/world-food-day.php',1,'International',NULL,'world-food-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(562,'country','international','international','international',NULL,'International Day for the Eradication of Poverty','DAY-FOR-THE-ERADICATION-OF-POVERTY',0,'','2020-10-17','Y','/international/international-day-for-the-eradication-of-poverty.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(563,'country','international','international','international',NULL,'United Nations Day','UNITED-NATIONS-DAY',2,'X','2020-10-24','Y','/international/united-nations-day.php',1,'International',NULL,'united-nations-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(564,'country','international','international','international',NULL,'International Internet Day','INTERNATIONAL-INTERNET-DAY',2,'X','2020-10-29','Y','/international/international-internet-day.php',1,'International',NULL,'international-internet-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(565,'country','international','international','international',NULL,'World Town Planning Day','WORLD-TOWN-PLANNING-DAY',1,'','2020-11-08','Y','/international/world-town-planning-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(566,'country','international','international','international',NULL,'International Day for Tolerance','INTERNATIONAL-DAY-FOR-TOLERANCE',1,'','2020-11-16','Y','/international/international-day-for-tolerance.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(567,'country','international','international','international',NULL,'World Television Day','WORLD-TELEVISION-DAY',2,'X','2020-11-21','Y','/international/world-television-day.php',1,'International',NULL,'world-television-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(568,'country','international','international','international',NULL,'International Day for the Elimination of Violence Against Women','DAY-FOR-THE-ELIMINATION-OF-VIOLENCE-AGAINST-WOMEN',2,'X','2020-11-25','Y','/international/day-for-the-elimination-of-violence-against-women.php',1,'International',NULL,'day-for-the-elimination-of-violence-against-women.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(569,'country','international','international','international',NULL,'International Computer Security Day','INTERNATIONAL-COMPUTER-SECURITY-DAY',1,'','2020-11-30','Y','/international/international-computer-security-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(570,'country','international','international','international',NULL,'World Aids Day','WORLD-AIDS-DAY',2,'X','2020-12-01','Y','/international/world-aids-day.php',1,'International',NULL,'world-aids-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(571,'country','international','international','international',NULL,'International Day for the Abolition of Slavery','INTERNATIONAL-DAY-FOR-THE-ABOLITION-OF-SLAVERY',1,'','2020-12-02','Y','/international/international-day-for-the-abolition-of-slavery.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(572,'country','international','international','international',NULL,'International Volunteers Day','INTERNATIONAL-VOLUNTEERS-DAY',2,'','2020-12-05','Y','/international/international-volunteers-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(573,'country','international','international','international',NULL,'International Civil Aviation Day','INTERNATIONAL-CIVIL-AVIATION-DAY',2,'','2020-12-07','Y','/international/international-civil-aviation-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(574,'country','international','international','international',NULL,'Human Rights Day','HUMAN-RIGHTS-DAY',2,'X','2020-12-10','Y','/international/human-rights-day.php',1,'International',NULL,'human-rights-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(379,'religious','christian','christian',NULL,'christian','Easter','EASTER',NULL,NULL,'2020-04-12','','/us/easter.php',1,'RH',NULL,'easter.jpg',NULL,NULL,'','2012-10-15','Y'),(575,'country','colombia','colombia','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(576,'country','colombia','colombia','Americas','','Epiphany','EPIPHANY',NULL,NULL,'2020-01-06','','/spain/epiphany.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(577,'country','colombia','colombia','Americas','','Saint Joseph\'s Day','SAINT-JOSEPHS-DAY',NULL,NULL,'2020-03-23','','/colombia/saint-josephs-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(578,'country','colombia','colombia','Americas','','Maundy Thursday','MAUNDY-THURSDAY',NULL,NULL,'2020-04-06','','/philippines/maundy-thursday.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(579,'country','colombia','colombia','Americas','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(580,'country','colombia','colombia','Americas','','Labor Day / May Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(581,'country','colombia','colombia','Americas','','Ascension Day','ASCENSION-DAY',NULL,NULL,'2020-05-25','','/romania/ascension-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(582,'country','colombia','colombia','Americas','','Corpus Christi','CORPUS-CHRISTI',NULL,NULL,'2020-06-15','','/us/corpus-christi.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(583,'country','colombia','colombia','Americas','','Sacred Heart','SACRED-HEART',NULL,NULL,'2020-06-22','','/colombia/sacred-heart.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(584,'country','colombia','colombia','Americas','','Feast of Saint Peter and Saint Paul','SAINT-PETER-AND-SAINT-PAUL',NULL,NULL,'2020-06-29','','/colombia/feast-of-saint-peter-and-saint-paul.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(585,'country','colombia','colombia','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-07-20','Y','/colombia/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(586,'country','colombia','colombia','Americas','','Battle of Boyaca Day','BATTLE-OF-BOYACA-DAY',NULL,NULL,'2020-08-07','Y','/colombia/battle-of-boyaca-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(587,'country','colombia','colombia','Americas','','Assumption of Mary','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-17','','/us/the-assumption-of-mary.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(588,'country','colombia','colombia','Americas','','Columbus Day','COLUMBUS-DAY',NULL,NULL,'2020-10-12','','/us/columbus-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(589,'country','colombia','colombia','Americas','','All Saints\' Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-02','','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(590,'country','colombia','colombia','Americas','','Independence of Cartagena','INDEPENDENCE-OF-CARTAGENA',NULL,NULL,'2020-11-16','','/colombia/independence-of-cartagena.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(591,'country','colombia','colombia','Americas','','Feast of the Immaculate Conception','IMMACULATE-CONCEPTION',NULL,NULL,'2020-12-08','Y','/colombia/feast-of-the-immaculate-conception.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(592,'country','colombia','colombia','Americas','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(593,'country','thailand','thailand','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(594,'country','thailand','thailand','Asia Pacific','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-01','','/us/new-years-day.php',0,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(595,'country','thailand','thailand','Asia Pacific','','Makha Bucha Day','MAKHA-BUCHA',NULL,NULL,'2020-02-08','','/thailand/makha-bucha.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(596,'country','thailand','thailand','Asia Pacific','','Chakri Day','CHAKRI-DAY',NULL,NULL,'2020-04-06','Y','/thailand/chakri-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(597,'country','thailand','thailand','Asia Pacific','','Songkran Festival','SONGKRAN-FESTIVAL',NULL,NULL,'2020-04-13','Y','/thailand/songkran.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(598,'country','thailand','thailand','Asia Pacific','','Songkran Festival','SONGKRAN-FESTIVAL',NULL,NULL,'2020-04-14','Y','/thailand/songkran.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(599,'country','thailand','thailand','Asia Pacific','','Songkran Festival','SONGKRAN-FESTIVAL',NULL,NULL,'2020-04-15','Y','/thailand/songkran.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(600,'country','thailand','thailand','Asia Pacific','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(601,'country','thailand','thailand','Asia Pacific','','Coronation Day','CORONATION-DAY',NULL,NULL,'2020-05-04','Y','/thailand/coronation-day.php',0,'NH',NULL,NULL,NULL,NULL,'','2012-10-14','Y'),(602,'country','thailand','thailand','Asia Pacific','','Royal Ploughing Ceremony','ROYAL-PLOUGHING-CEREMONY',NULL,NULL,'2020-05-13','','/thailand/royal-ploughing-ceremony-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(603,'country','thailand','thailand','Asia Pacific','','Wisakha Bucha Day','VISAKHA-BUCHA',NULL,NULL,'2020-05-06','','/thailand/visakha-bucha.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(604,'country','thailand','thailand','Asia Pacific','','Asarnha Bucha Day','ASALHA-BUCHA',NULL,NULL,'2020-07-05','','/thailand/asalha-bucha.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(605,'country','thailand','thailand','Asia Pacific','','Buddhist Lent Day','BUDDHIST-LENT-DAY',NULL,NULL,'2020-07-06','','/thailand/buddhist-lent-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(606,'country','thailand','thailand','Asia Pacific','','The Queen\'s Birthday','THE-QUEENS-BIRTHDAY',NULL,NULL,'2020-08-12','Y','/thailand/the-queens-birthday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(607,'country','thailand','thailand','Asia Pacific','','King Bhumibol Adulyadej The Great Memorial Day','KING-BHUMIBOL-MEMORIAL',NULL,NULL,'2020-08-12','Y','/thailand/the-kings-birthday.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(608,'country','thailand','thailand','Asia Pacific','','Chulalongkorn Day','CHULALONGKORN-DAY',NULL,NULL,'2020-10-23','Y','/thailand/chulalongkorn-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(610,'country','thailand','thailand','Asia Pacific','','The King\'s Birthday','THE-KINGS-BIRTHDAY',NULL,NULL,'2020-12-05','Y','/thailand/the-kings-birthday.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(611,'country','thailand','thailand','Asia Pacific','','Constitution Day','CONSTITUTION-DAY',NULL,NULL,'2020-12-10','Y','/thailand/constitution-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(612,'country','vietnam','vietnam','Middle East','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(613,'country','vietnam','vietnam','Middle East','','Vietnamese New Year','VIETNAMESE-NEW-YEAR',NULL,NULL,'2020-01-25','','/vietnam/vietnamese-new-year.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(614,'country','vietnam','vietnam','Middle East','','Tet holiday','TET-HOLIDAY',NULL,NULL,'2020-01-27','','/vietnam/tet-holiday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(615,'country','vietnam','vietnam','Middle East','','Tet holiday','TET-HOLIDAY',NULL,NULL,'2020-01-26','','/vietnam/tet-holiday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(616,'country','vietnam','vietnam','Middle East','','Tet holiday','TET-HOLIDAY',NULL,NULL,'2020-01-29','','/vietnam/tet-holiday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(617,'country','vietnam','vietnam','Middle East','','Tet holiday','TET-HOLIDAY',NULL,NULL,'2020-01-28','','/vietnam/tet-holiday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(618,'country','vietnam','vietnam','Middle East','','Tet holiday','TET-HOLIDAY',NULL,NULL,'2020-01-01','','/vietnam/tet-holiday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(619,'country','vietnam','vietnam','Middle East','','Vietnamese Kings\' Commemoration Day','COMMEMORATION-DAY',NULL,NULL,'2020-04-02','','/vietnam/vietnamese-kings-commemoration-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(620,'country','vietnam','vietnam','Middle East','','Liberation Day/Reunification Day','REUNIFICATION-DAY',NULL,NULL,'2020-04-30','Y','/vietnam/liberation-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(621,'country','vietnam','vietnam','Middle East','','International Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(622,'country','vietnam','vietnam','Middle East','','Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-09-02','Y','/vietnam/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(623,'country','uae','uae','Middle East','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(624,'country','uae','uae','Middle East','','Birthday of Prophet Mohammad','BIRTHDAY-OF-PROPHET-MOHAMMAD',NULL,NULL,'2020-10-29','','/united-arab-emirates/mouloud.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(625,'country','uae','uae','Middle East','','Al Isra\'a Wal Mi\'raj (Ascension Day)','AL-ISRAA-WAL-MIRAJ',NULL,NULL,'2020-03-22','','/united-arab-emirates/leilat-al-meiraj.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(626,'country','uae','uae','Middle East','','Eid Al Fitr','EID-AL-FITR',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(627,'country','uae','uae','Middle East','','Arafat (Haj) Day','ARAFAT-DAY',NULL,NULL,'2020-07-30','','/united-arab-emirates/arafat-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(628,'country','uae','uae','Middle East','','Eid Al Adha (Feast of Sacrifice)','EID-AL-ADHA',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(629,'country','uae','uae','Middle East','','Al Hijri (Islamic New Year)','AL-HIJRI',NULL,NULL,'2020-08-20','','/united-arab-emirates/al-hijra.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(630,'country','uae','uae','Middle East','','National Day','NATIONAL-DAY',NULL,NULL,'2020-12-02','Y','/united-arab-emirates/national-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(631,'country','argentina','argentina','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(632,'country','argentina','argentina','Americas','','Carnival','CARNIVAL',NULL,NULL,'2020-02-24','','/brazil/carnival.php',1,'NH','Y','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(633,'country','argentina','argentina','Americas','','Carnival/Shrove Tuesday','CARNIVAL',NULL,NULL,'2020-02-25','','/brazil/carnival.php',1,'NH','Y','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(634,'country','argentina','argentina','Americas','','Bridge Public Holiday','',NULL,NULL,'2020-03-23','','/argentina/bridge-public-holiday.php',0,'OB','Y',NULL,NULL,NULL,'','2012-10-14',''),(635,'country','argentina','argentina','Americas','','Memorial Day','MEMORIAL-DAY',NULL,NULL,'2020-03-24','Y','/argentina/memorial-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(636,'country','argentina','argentina','Americas','','Day of the Veterans','VETERANS-DAY',NULL,NULL,'2020-04-02','Y','/argentina/day-of-the-veterans.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(637,'country','argentina','argentina','Americas','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(638,'country','argentina','argentina','Americas','','Labor Day / Worker\'s Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(639,'country','argentina','argentina','Americas','','National Day/May 1810 Revolution','MAY-1080-REVOLUTION',NULL,NULL,'2020-05-25','Y','/argentina/national-day-may-1810-revolution.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(640,'country','argentina','argentina','Americas','','General Manuel Belgrano Memorial Day','MANUEL-BELGRANO-MEMORIAL-DAY',NULL,NULL,'2020-06-20','Y','/argentina/flag-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(641,'country','argentina','argentina','Americas','','Independence day','INDEPENDENCE-DAY',NULL,NULL,'2020-07-09','Y','/argentina/independence-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(642,'country','argentina','argentina','Americas','','San Martin Day','SAN-MARTIN-DAY',NULL,NULL,'2020-08-17','Y','/argentina/san-martin-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(643,'country','argentina','argentina','Americas','','Day of respect for cultural diversity','CULTURAL-DIVERSITY',NULL,NULL,'2020-10-12','','/argentina/day-of-respect-for-cultural-diversity.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(644,'country','argentina','argentina','Americas','','National Sovereignty Day','SOVEREIGNTY-DAY',NULL,NULL,'2020-11-23','','/argentina/national-sovereignty-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(645,'country','argentina','argentina','Americas','','Martin Miguel de Guemes Day','MARTIN-MIGUEL-DAY',NULL,NULL,'2020-06-17','','/argentina/martin-miguel-de-guemes-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(646,'country','argentina','argentina','Americas','','Feast of the Immaculate Conception','IMMACULATE-CONCEPTION',NULL,NULL,'2020-12-08','Y','/argentina/feast-of-the-immaculate-conception.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(647,'country','argentina','argentina','Americas','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(648,'country','indonesia','indonesia','Asia Pacific','','Holy Nyepi Day','HARI-RAYA-NYEPI',NULL,NULL,'2020-03-25','','/indonesia/hari-raya-nyepi.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(649,'country','indonesia','indonesia','Asia Pacific','','International Worker\'s Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(650,'country','indonesia','indonesia','Asia Pacific','','Ascension of the Prophet','ASCENSION-OF-THE-PROPHET',NULL,NULL,'2020-03-22','','/indonesia/ascension-of-the-prophet.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(651,'country','hong-kong','hong-kong','Asia Pacific','','Tuen Ng Festival','TUEN-NG-FESTIVAL',NULL,NULL,'2020-06-25','','/hong-kong/tuen-ng-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(652,'country','philippines','philippines','Asia Pacific','','Chinese New Year','CHINEASE-NEW-YEAR',0,'','2020-01-25','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(653,'country','romania','romania','Europe','','Unification Day','UNIFICATION-DAY',NULL,NULL,'2020-01-24','Y','/romania/unification-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(378,'religious','christian','christian',NULL,'christian','St. George\'s Day','ST-GEORGES-DAY',NULL,NULL,'2020-04-23','','/christian/st-georges-day.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(377,'religious','christian','christian',NULL,'christian','Good Friday ','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(376,'religious','christian','christian',NULL,'christian','Maundy (Holy) Thursday','MAUNDY-HOLY-THURSDAY',NULL,NULL,'2020-04-09','','/philippines/maundy-thursday.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(375,'religious','christian','christian',NULL,'christian','Palm Sunday','PALM-SUNDAY',NULL,NULL,'2020-04-05','','/christian/palm-sunday.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(374,'religious','christian','christian',NULL,'christian','St. Joseph\'s Day','ST-JOSEPHS-DAY',NULL,NULL,'2020-03-19','','/christian/st-josephs-day-.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(663,'country','india','india','Asia Pacific','','Ram Navami','RAM-NAVAMI',1,NULL,'2020-04-02','','/india/ram-navami.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(664,'country','india','india','Asia Pacific','','Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06','','/india/mahavir-jayanti.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(665,'country','india','india','Asia Pacific','','Budhha Purnima','BUDHHA-PURNIMA',NULL,NULL,'2020-05-07','','/india/budhha-purnima.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(666,'country','international','international','international','','International Yoga Day','INTERNATIONAL-YOGA-DAY',2,'X','2020-06-21','Y','/international/international-yoga-day.php',1,'International',NULL,'international-yoga-day.jpg',NULL,NULL,NULL,'2015-06-09','Y'),(667,'country','china','china','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'OB','N','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(668,'country','hong-kong','hong-kong','Asia Pacific','','Chung Yeung Festival Holiday','CHUNG-YEUNG-FESTIVAL-HOLIDAY',NULL,NULL,'2020-10-10','','/hong-kong/chung-yeung-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(669,'country','hong-kong','hong-kong','Asia Pacific','','Good Friday Holiday','GOOD-FRIDAY-HOLIDAY',NULL,NULL,'2020-04-20','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14',''),(670,'country','hong-kong','hong-kong','Asia Pacific','','Labor Day Holiday','LABOR-DAY-HOLIDAY',NULL,NULL,'2020-05-02','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(671,'country','malaysia','malaysia','Asia Pacific','','Labor day Holiday','LABOR-DAY-HOLDAY',NULL,NULL,'2020-05-02','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(672,'country','mexico','mexico','Americas','','Revolution Day Memorial Holiday','REVOLUTION-DAY-HOLIDAY',NULL,NULL,'2020-11-16','','/mexico/revolution-day-memorial-holiday.php',0,'NH','Y',NULL,NULL,'Third Monday of November','','2012-10-14','Y'),(673,'country','new-zealand','new-zealand','Asia Pacific','','Waitangi Day Holiday','WAITANGI-DAY-HOLIDAY',NULL,'','2020-02-08','Y','/new-zealand/waitangi-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(2547,'country','romania','romania','Europe','','Orthodox Good Friday','ORTHODOX-GOOD-FRIDAY',NULL,NULL,'2020-04-17','','/romania/orthodox-good-friday.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(675,'country','south-africa','south-africa','Africa','','Labour Day Holiday','LABOURDAY-HOLIDAY',NULL,NULL,'2020-05-02','Y','/uk/may-day.php',1,'NH',NULL,NULL,NULL,NULL,'','2012-10-14',''),(676,'country','spain','spain','Europe','','Easter Monday (Many Regions)','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/us/easter.php',1,'RH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(677,'country','spain','spain','Europe','','Labor Day Holiday','LABOR-DAY-HOLIDAY',NULL,NULL,'2020-01-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(678,'country','uk','uk','Europe','','Christmas Day Holiday','CHRISTMAS-DAY-HOLIDAY',NULL,NULL,'2020-12-28','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14',''),(679,'country','australia','australia','Asia Pacific','','Canberra Day (ACT)','CANBERRA-DAY-ACT',NULL,'','2020-03-09','','/australia/canberra-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(680,'country','australia','australia','Asia Pacific','','Family & Community Day (ACT)','FAMILY-COMMUNITY-DAY-ACT',NULL,NULL,'2020-10-08','','/australia/family-and-community-day.php',0,'RH','Y','family-day.jpg',NULL,NULL,'','2012-10-14',''),(681,'country','australia','australia','Asia Pacific','','Christmas Day Holiday','CHRISTMAS-DAY-HOLIDAY',NULL,NULL,'2020-12-27','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14',''),(682,'country','canada','canada','Americas','','Family Day (BC)','FAMILY-DAY(BC)',1,NULL,'2020-02-12','','/canada/family-day.php',0,'RH','Y','family-day.jpg',NULL,'https://www.cbc.ca/news/canada/british-columbia/b-c-family-day-moving-one-week-later-starting-in-2019-1.4528735','','2012-10-14',''),(683,'country','greece','greece','Europe','','Synaxis of the Mother of God','MOTHER-OF-GOD',NULL,NULL,'2020-12-26','Y','/greece/synaxis-of-the-mother-of-god.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(373,'religious','christian','christian',NULL,'christian','St. Patrick\'s Day','ST-PATRICK\'S-DAY',NULL,NULL,'2020-03-17','Y','/us/st-patricks-day.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(372,'religious','christian','christian',NULL,'christian','St. Valentine\'s Day','ST-VALENTINES-DAY',0,'','2020-02-14','Y','/us/valentines-day.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(371,'religious','christian','christian',NULL,'christian','Candlemas','CANDLEMAS',NULL,NULL,'2020-02-02','','/christian/candlemas.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(370,'religious','christian','christian',NULL,'christian','The Baptism of Jesus','BAPTISM-OF-THE-JESUS',1,'X','2020-01-12','','/us/baptism-of-the-lord.php',1,'RH',NULL,'baptism-of-the-lord.jpg',NULL,NULL,'','2012-10-15','Y'),(689,'country','international','international','international','','International Friendship Day','INTERNATIONAL-FRIENDSHIP-DAY',2,'X','2020-07-30','','/international/international-friendship-day.php',1,'International',NULL,'international-friendship-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(690,'country','uae','uae','Middle East','','Eid Al Fitr Holiday 1','EID-AL-FITR-HOLIDAY-1',NULL,NULL,'2020-05-25','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(691,'country','uae','uae','Middle East','','Eid Al Fitr Holiday 2','EID-AL-FITR-HOLIDAY-2',NULL,NULL,'2020-05-26','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(692,'country','uae','uae','Middle East','','Eid Al Adha Holiday 1','EID-AL-ADHA-HOLIDAY-1',NULL,NULL,'2020-08-01','','/singapore/hari-raya-haji.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(693,'country','uae','uae','Middle East','','Eid Al Adha Holiday 2','EID-AL-ADHA-HOLIDAY-2',NULL,NULL,'2020-08-02','','/singapore/hari-raya-haji.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(694,'country','egypt','egypt','Middle East','','Coptic Christmas','COPTIC-CHRISTMAS',NULL,NULL,'2020-01-07','Y','/egypt/coptic-christmas.php',0,'NH','Y','christmas.jpg',NULL,NULL,'','2016-04-12','Y'),(695,'country','egypt','egypt','Middle East','','Revolution Day January 25','REVOLUTION-DAY',NULL,NULL,'2020-01-25','Y','/egypt/revolution-day-january-25.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(696,'country','egypt','egypt','Middle East','','Sinai Liberation Day','SINAI-LIBERATION-DAY',NULL,NULL,'2020-04-25','Y','/egypt/sinai-liberation-day.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(697,'country','egypt','egypt','Middle East','','Coptic Easter Sunday','COPTIC-EASTER-SUNDAY',NULL,NULL,'2020-04-19','','/egypt/coptic-easter.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2016-04-12','Y'),(698,'country','egypt','egypt','Middle East','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(699,'country','egypt','egypt','Middle East','','Sham El Nessim (Spring festival)','SPRING-FESTIVAL',NULL,NULL,'2020-04-20','','/egypt/sham-el-nessim.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(700,'country','egypt','egypt','Middle East','','End of Ramadan','END-OF-RAMADAN',NULL,NULL,'2020-05-24','','/islam/ramadan.php',1,'NH','Y','ramadan.jpg',NULL,NULL,'','2016-04-12','Y'),(701,'country','egypt','egypt','Middle East','','End of Ramadan Day 2','END-OF-RAMADAN-DAY-2',NULL,NULL,'2020-05-25','','/islam/ramadan.php',1,'NH','Y','ramadan.jpg',NULL,NULL,'','2016-04-12','Y'),(702,'country','egypt','egypt','Middle East','','End of Ramadan Day 3','END-OF-RAMADAN-DAY-3',NULL,NULL,'2020-05-26','','/islam/ramadan.php',1,'NH','Y','ramadan.jpg',NULL,NULL,'','2016-04-12','Y'),(703,'country','egypt','egypt','Middle East','','Revolution Day','REVOLUTION-DAY',NULL,NULL,'2020-07-23','Y','/egypt/revolution-day.php',0,'ND','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(704,'country','egypt','egypt','Middle East','','Eid al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(705,'country','egypt','egypt','Middle East','','Eid al-Adha Day 2','EID-AL-ADHA DAY-2',NULL,NULL,'2020-08-01','','/singapore/hari-raya-haji.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(706,'country','egypt','egypt','Middle East','','Eid al-Adha Day 3','EID-AL-ADHA DAY-3',NULL,NULL,'2020-08-02','','/singapore/hari-raya-haji.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(707,'country','egypt','egypt','Middle East','','Eid al-Adha Day 4','EID-AL-ADHA DAY-4',NULL,NULL,'2020-08-03','','/singapore/hari-raya-haji.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(708,'country','egypt','egypt','Middle East','','Muharram','MUHARRAM',NULL,NULL,'2020-08-20','','/india/muharram.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(709,'country','egypt','egypt','Middle East','','Armed Forces Day','ARMED-FORCES-DAY',NULL,NULL,'2020-10-06','Y','/egypt/armed-forces-day.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(710,'country','egypt','egypt','Middle East','','Mawlid An-Nabi','MAWLID-AN-NABI',NULL,NULL,'2020-10-29','','/egypt/mawlid-an-nabi.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(711,'country','mauritius','mauritius','Africa','','New Year','NEW-YEAR-D1',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(712,'country','mauritius','mauritius','Africa','','Day After New Year','NEW-YEAR-D2',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(713,'country','mauritius','mauritius','Africa','','Thaipoosam Cavadee','THAIPOOSAM-CAVADEE',NULL,NULL,'2020-02-08','','/mauritius/thaipoosam-cavadee.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(714,'country','mauritius','mauritius','Africa','','Abolition of Slavery','ABOLITION-OF-SLAVERY',NULL,NULL,'2020-02-01','Y','/mauritius/abolition-of-slavery.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(715,'country','mauritius','mauritius','Africa','','Chinese Spring Festival','CHINESE-SPRING-FESTIVAL',NULL,NULL,'2020-01-25','','/mauritius/chinese-spring-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(716,'country','mauritius','mauritius','Africa','','Maha Shivaratree','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21','','/india/maha-shivratri.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(717,'country','mauritius','mauritius','Africa','','Independence & Republic Day','INDEPENDENCE-N-REPUBLIC',NULL,NULL,'2020-03-12','Y','/mauritius/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(718,'country','mauritius','mauritius','Africa','','Ugaadi','UGAADI',NULL,NULL,'2020-03-25','','/hindu/ugadi-telugu-new-year.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(719,'country','mauritius','mauritius','Africa','','Labour Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',0,'NH','Y','may-day.jpg',NULL,NULL,'','2016-04-12','Y'),(720,'country','mauritius','mauritius','Africa','','Eid-Ul-Fitr','EID-UL-FITAR',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2016-04-12','Y'),(721,'country','mauritius','mauritius','Africa','','All Saints Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','','/philippines/all-saints-day.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2016-04-12',''),(722,'country','mauritius','mauritius','Africa','','Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-08-23','','/india/ganesh-chaturthi.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(723,'country','mauritius','mauritius','Africa','','Divali','DIWALI',NULL,NULL,'2020-11-14','','/india/diwali.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(724,'country','mauritius','mauritius','Africa','','Arrival of indentured Labourers','ARRIVAL-OF-INDENTURED-LABOURERS',NULL,NULL,'2020-11-02','Y','/mauritius/arrival-of-indentured-labourers.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(725,'country','mauritius','mauritius','Africa','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2016-04-12','Y'),(726,'country','south-korea','south-korea','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2016-04-12','Y'),(727,'country','south-korea','south-korea','Asia Pacific','','Korean New Year / Seolnal','KOREAN-NEW-YEAR',NULL,NULL,'2020-01-25','','/south-korea/korean-new-year.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(728,'country','south-korea','south-korea','Asia Pacific','','Korean New Year Holiday','KOREAN-NEW-YEAR-D2',NULL,NULL,'2020-01-24','','/south-korea/korean-new-year.php',0,'NH','Y','new-years-day.jpg',NULL,NULL,'','2016-04-12','Y'),(729,'country','south-korea','south-korea','Asia Pacific','','Korean New Year Holiday','KOREAN-NEW-YEAR-D3',NULL,NULL,'2020-01-27','','/south-korea/korean-new-year.php',0,'NH','Y','new-years-day.jpg',NULL,NULL,'','2016-04-12','Y'),(730,'country','south-korea','south-korea','Asia Pacific','','Korean New Year Holiday','KOREAN-NEW-YEAR-D4',NULL,NULL,'2020-01-01','','/south-korea/korean-new-year.php',0,'NH','Y','new-years-day.jpg',NULL,NULL,'','2016-04-12',''),(731,'country','south-korea','south-korea','Asia Pacific','','Independence Movement Day','INDEPENDENCE-MOVEMENT-DAY',NULL,NULL,'2020-03-01','Y','/south-korea/independence-movement-day.php',0,'ND','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(732,'country','south-korea','south-korea','Asia Pacific','','Children\'s Day','CHILDRENS-DAY',NULL,NULL,'2020-05-05','Y','/south-korea/childrens-day.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(733,'country','south-korea','south-korea','Asia Pacific','','Buddha\'s Birthday','BUDDHAS-BIRTHDAY',NULL,NULL,'2020-04-30','','/singapore/vesak-day.php',1,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(734,'country','south-korea','south-korea','Asia Pacific','','Memorial Day','MEMORIAL-DAY',NULL,NULL,'2020-06-06','Y','/south-korea/memorial-day.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(735,'country','south-korea','south-korea','Asia Pacific','','Constitution Day','CONSTITUTION-DAY',NULL,NULL,'2020-07-17','Y','/south-korea/constitution-day.php',0,'OB','N',NULL,NULL,NULL,'','2016-04-12','Y'),(736,'country','south-korea','south-korea','Asia Pacific','','Liberation Day','LIBERATION-DAY',NULL,NULL,'2020-08-15','Y','/south-korea/liberation-day.php',0,'ND','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(737,'country','south-korea','south-korea','Asia Pacific','','Chuseok (Harvest Festival)','CHUSEOK',NULL,NULL,'2020-10-01','','/south-korea/chuseok.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(738,'country','south-korea','south-korea','Asia Pacific','','Chuseok Holiday','CHUSEOK-D2',NULL,NULL,'2020-09-30','','/south-korea/chuseok.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(739,'country','south-korea','south-korea','Asia Pacific','','Chuseok Holiday','CHUSEOK-D3',NULL,NULL,'2020-10-02','','/south-korea/chuseok.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(740,'country','south-korea','south-korea','Asia Pacific','','National Foundation Day','NATIONAL-FOUNDATION-DAY',NULL,NULL,'2020-10-03','Y','/south-korea/national-foundation-day.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(741,'country','south-korea','south-korea','Asia Pacific','','Hangul Day','HANGUL-DAY',NULL,NULL,'2020-10-09','Y','/south-korea/hangul-day.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(742,'country','south-korea','south-korea','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2016-04-12','Y'),(743,'country','canada','canada','Americas','','Family Day (AB, BC, SK, ON)','FAMILY-DAY(AB,SK,ON)',1,NULL,'2020-02-19','','/canada/family-day.php',0,'RH','Y','family-day.jpg',NULL,NULL,'','2012-10-14','Y'),(744,'country','uk','uk','Europe','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(745,'country','uk','uk','Europe','','2nd January (SCT)','2ND-JANUARY-SCT',NULL,NULL,'2020-01-02','','/us/new-years-day.php',1,'RH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(746,'country','uk','uk','Europe','','St. Patrick\'s Day (NIR)','ST-PATRICKS-DAY-NIR',NULL,'','2020-03-17','','/us/st-patricks-day.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(747,'country','uk','uk','Europe','','Battle of the Boyne (NIR)','BATTLE-OF-THE-BOYNE-NIR',NULL,'','2020-07-12','Y','/uk/battle-of-the-boyne.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(748,'country','uk','uk','Europe','','St. Andrew\'s Day (SCT)','ST-ANDREWS-DAY-SCT',NULL,NULL,'2020-11-30','Y','/christian/st-andrews-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(749,'country','canada','canada','Americas','','Canada Day Holiday','CANADA-DAY-HOLIDAY',1,'X','2020-07-02','Y','/canada/canada-day.php',1,'NH','Y','canada-day.jpg',NULL,NULL,'','2012-10-14',''),(750,'country','australia','australia','Asia Pacific','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(751,'country','australia','australia','Asia Pacific','','Western Australia Day (WA)','WESTERN-AUSTRALIA-DAY',NULL,NULL,'2020-06-01','','/australia/western-australia-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(752,'country','australia','australia','Asia Pacific','','Picnic Day (NT)','PICNIC-DAY-NT',0,NULL,'2020-08-03','','/australia/picnic-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(753,'country','india','india','Asia Pacific','','Ugadi / Gudi Padwa','UGADI',NULL,NULL,'2020-03-25','','/hindu/ugadi-telugu-new-year.php',0,'RH','N',NULL,NULL,NULL,'','2012-09-23','Y'),(369,'religious','christian','christian',NULL,'christian','Epiphany','EPIPHANY',NULL,NULL,'2020-01-06','Y','/spain/epiphany.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(755,'country','malaysia','malaysia','Asia Pacific','','Thaipusam (Many Regions)','THAIPUSAM (Most regions)',NULL,NULL,'2020-02-08','','/hindu/thaipusam.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(756,'country','malaysia','malaysia','Asia Pacific','','Nuzul Al-Quran (Many Regions)','NAZUL-AL-QURAN',NULL,NULL,'2020-05-10','','/malaysia/nuzul-al-quran.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(766,'country','mexico','mexico','Americas','','Constitution Day Holiday','CONSTITUTION-DAY-HOLIDAY',NULL,'','2020-02-03','','/mexico/constitution-day.php',1,'NH','Y','constitution-day-mexico.jpg',NULL,'First Monday of February','','2012-10-14','Y'),(757,'country','china','china','Asia Pacific','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(758,'country','china','china','Asia Pacific','','National Day Holiday','NATIONAL-DAY-HOLIDAY',1,NULL,'2020-10-02','Y','/china/national-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(760,'country','hong-kong','hong-kong','Asia Pacific','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(761,'country','hong-kong','hong-kong','Asia Pacific','','Lunar New Year Holiday','CHINEASE-NEW-YEAR-D4',NULL,NULL,'2020-02-28','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(762,'country','indonesia','indonesia','Asia Pacific','','Pancasila Day','PANCASILA-DAY',NULL,NULL,'2020-06-01','Y','/indonesia/pancasila-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(763,'country','indonesia','indonesia','Asia Pacific','','Eid Holiday','EID-UL-FITAR-D3',NULL,NULL,'2020-05-22','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(764,'country','indonesia','indonesia','Asia Pacific','','Eid Holiday','EID-UL-FITAR-D4',NULL,NULL,'2020-05-26','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(765,'country','indonesia','indonesia','Asia Pacific','','Christmas Day Holiday','CHRISTMAS-DAY-HOLIDAY',NULL,NULL,'2020-12-24','','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(767,'country','philippines','philippines','Asia Pacific','','Eid ul-Adha','EID-UL-ADHA',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(768,'country','philippines','philippines','Asia Pacific','','Milad un Nabi','MILAD-UN-NABI',1,NULL,'2020-10-29','','/india/milad-un-nabi.php',1,'OB','N',NULL,NULL,NULL,'','2012-09-23','Y'),(769,'country','romania','romania','Europe','','Christmas Day Holiday','CHRISTMAS-DAY-HOLIDAY',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(770,'country','singapore','singapore','Asia Pacific','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(771,'country','singapore','singapore','Asia Pacific','','Chinese New Year Holiday','CHINESE-NEW-YEAR-HOLIDAY',NULL,NULL,'2020-01-27','','/china/chinese-new-year.php',1,'NH','Y','chinese-new-year.jpg',NULL,NULL,'','2012-10-14','Y'),(772,'country','singapore','singapore','Asia Pacific','','Hari Raya Puasa Holiday','HARI-RAYA-PUASA-HOLIDAY',NULL,'','2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(773,'country','south-africa','south-africa','Africa','','New Year\'s Day Holiday','NEW-YEAR-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(774,'country','south-africa','south-africa','Africa','','Heritage Day Holiday','HERITAGE-DAY-HOLIDAY',1,'','2020-09-25','Y','/south-africa/heritage-day.php',1,'NH',NULL,'heritage-day.jpg',NULL,NULL,'','2012-10-14',''),(775,'country','spain','spain','Europe','','Day after Christmas','DAY-AFTER-CHRISTMAS',1,NULL,'2020-12-26','Y','/us/christmas.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(776,'country','japan','japan','Asia Pacific','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(2543,'country','japan','japan','Asia Pacific','','Mountain Day Holiday','MOUNTAIN-DAY-HOLIDAY',NULL,NULL,'2020-08-12','Y','/japan/mountain-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(779,'country','japan','japan','Asia Pacific','','Mountain Day','MOUNTAIN-DAY',NULL,NULL,'2020-08-10','','/japan/mountain-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(780,'country','belgium','belgium','Europe','','Belgian National Day','NATIONAL-DAY',1,NULL,'2020-07-21','Y','/belgium/belgian-national-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(781,'country','belgium','belgium','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(782,'country','belgium','belgium','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(783,'country','belgium','belgium','Europe','','Easter','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'NH','N','easter.jpg',NULL,NULL,'','2012-10-15','Y'),(784,'country','belgium','belgium','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(785,'country','belgium','belgium','Europe','','Labor Day / May Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(786,'country','belgium','belgium','Europe','','Ascension Day','ASCENSION-DAY',NULL,'','2020-05-21','','/romania/ascension-day.php',1,'NH','Y','ascension-day.jpg',NULL,NULL,'','2012-10-14','Y'),(787,'country','belgium','belgium','Europe','','Whit Sunday','WHIT-SUNDAY',NULL,NULL,'2020-05-31','','/france/whit-sunday.php',0,'NH','N',NULL,NULL,NULL,'','2012-10-14','Y'),(788,'country','belgium','belgium','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(789,'country','belgium','belgium','Europe','','Assumption of Mary','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'NH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2016-04-12','Y'),(790,'country','belgium','belgium','Europe','','All Saints\' Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','Y','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(791,'country','belgium','belgium','Europe','','Armistice Day','ARMISTICE-DAY',1,NULL,'2020-11-11','Y','/france/armistice-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(792,'country','belgium','belgium','Europe','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(793,'country','denmark','denmark','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-09-23','Y'),(794,'country','denmark','denmark','Europe','','Carnival','CARNIVAL',NULL,NULL,'2020-02-23','','/brazil/carnival.php',1,'OB','Y','carnival.jpg',NULL,NULL,'','2012-10-14','Y'),(795,'country','denmark','denmark','Europe','','Palm Sunday','PALM-SUNDAY',NULL,NULL,'2020-04-05','','/christian/palm-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-15','Y'),(796,'country','denmark','denmark','Europe','','Maundy Thursday','MAUNDY-THURSDAY',NULL,NULL,'2020-04-09','','/philippines/maundy-thursday.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(797,'country','denmark','denmark','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(798,'country','denmark','denmark','Europe','','Easter','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(799,'country','denmark','denmark','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(800,'country','denmark','denmark','Europe','','Labor Day / May Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'OH','N','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(801,'country','denmark','denmark','Europe','','Ascension Day','ASCENSION-DAY',NULL,'','2020-05-21','','/romania/ascension-day.php',1,'NH','Y','ascension-day.jpg',NULL,NULL,'','2012-10-14','Y'),(802,'country','denmark','denmark','Europe','','Great Prayer Day','GREAT-PRAYER-DAY',NULL,'','2020-05-08','','/denmark/great-prayer-day.php',1,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(803,'country','denmark','denmark','Europe','','Whit Sunday','WHIT-SUNDAY',NULL,NULL,'2020-05-31','','/france/whit-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(804,'country','denmark','denmark','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(805,'country','denmark','denmark','Europe','','Christmas Eve','CHRISTMAS-EVE',NULL,NULL,'2020-12-24','','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(806,'country','denmark','denmark','Europe','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(807,'country','denmark','denmark','Europe','','Christmas Day Holiday','CHRISTMAS-DAY-HOLIDAY',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(808,'country','denmark','denmark','Europe','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'OH','N',NULL,NULL,NULL,'','2012-10-14','Y'),(809,'country','thailand','thailand','Asia Pacific','','Songkran observed','SONGKRAN-OBSERVED',NULL,NULL,'2020-04-16','','/thailand/songkran.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(810,'country','vietnam','vietnam','Middle East','','Vietnamese New Year Eve','VIETNAMESE-NEW-YEAR-EVE',NULL,NULL,'2020-01-24','','/vietnam/vietnamese-new-year.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(811,'country','vietnam','vietnam','Middle East','','Independence Day Observed','INDEPENDENCE-DAY-OBSERVED',NULL,NULL,'2020-09-03','','/vietnam/independence-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(812,'country','kenya','kenya','Africa','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-09-23','Y'),(813,'country','kenya','kenya','Africa','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14',''),(814,'country','kenya','kenya','Africa','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(815,'country','kenya','kenya','Africa','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-15','Y'),(816,'country','kenya','kenya','Africa','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(817,'country','kenya','kenya','Africa','','Labor Day / May Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(818,'country','kenya','kenya','Africa','','Madaraka Day','MADARAKA-DAY',NULL,NULL,'2020-06-01','Y','/kenya/madaraka-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(819,'country','kenya','kenya','Africa','','Eid-al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(820,'country','kenya','kenya','Africa','','Mashujaa Day','MASHUJAA-DAY',NULL,NULL,'2020-10-20','Y','/kenya/mashujaa-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(821,'country','kenya','kenya','Africa','','Jamhuri Day','JAMHURI-DAY',NULL,NULL,'2020-12-12','Y','/kenya/jamhuri-day.php',0,'ND','Y','',NULL,NULL,'','2012-10-14','Y'),(822,'country','kenya','kenya','Africa','','Christmas Day','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(823,'country','kenya','kenya','Africa','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-26','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(824,'country','norway','norway','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-09-23','Y'),(825,'country','norway','norway','Europe','','Maundy Thursday','MAUNDY-THURSDAY',NULL,NULL,'2020-04-09','','/philippines/maundy-thursday.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(826,'country','norway','norway','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(827,'country','norway','norway','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(828,'country','norway','norway','Europe','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(829,'country','norway','norway','Europe','','Labour Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',0,'NH','Y','may-day.jpg',NULL,NULL,'','2016-04-12','Y'),(830,'country','norway','norway','Europe','','Constitution Day','CONSTITUTION-DAY',1,NULL,'2020-05-17','Y','/norway/constitution-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(831,'country','norway','norway','Europe','','Ascension Day','ASCENSION-DAY',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'NH','Y','ascension-day.jpg',NULL,NULL,'','2012-10-14','Y'),(832,'country','norway','norway','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(833,'country','norway','norway','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(834,'country','norway','norway','Europe','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-26','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(835,'country','russia','russia','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-09-23','Y'),(836,'country','russia','russia','Europe','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(837,'country','russia','russia','Europe','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-03','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(838,'country','russia','russia','Europe','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-04','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(839,'country','russia','russia','Europe','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-06','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(840,'country','russia','russia','Europe','','New Year\'s Day Holiday','NEW-YEARS-DAY-HOLIDAY',NULL,NULL,'2020-01-08','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(841,'country','russia','russia','Europe','','Orthodox Christmas','ORTHODOX-CHRISTMAS',NULL,NULL,'2020-01-07','','/russia/orthodox-christmas.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(842,'country','russia','russia','Europe','','Defender of the Fatherland','DEFENDER-OF-THE-FATHERLAND',NULL,NULL,'2020-02-23','Y','/russia/defender-of-the-fatherland.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(843,'country','russia','russia','Europe',NULL,'Intl. Women\'s Day','INTL-WOMENS-DAY',NULL,'','2020-03-08','Y','/international/international-womens-day.php',1,'NH','Y','',NULL,NULL,NULL,'2014-08-14','Y'),(844,'country','russia','russia','Europe',NULL,'Spring and Labor Day','SPRING-AND-LABOR-DAY',NULL,'','2020-05-01','Y','/uk/may-day.php',1,'NH','Y','',NULL,NULL,NULL,'2014-08-14','Y'),(845,'country','russia','russia','Europe',NULL,'Victory Day','VICTORY-DAY',NULL,'','2020-05-09','Y','/russia/victory-day.php',0,'NH','Y','',NULL,NULL,NULL,'2014-08-14','Y'),(846,'country','russia','russia','Europe',NULL,'Russia Day','RUSSIA-DAY',NULL,'','2020-06-12','Y','/russia/russia-day.php',0,'ND','Y','',NULL,NULL,NULL,'2014-08-14','Y'),(847,'country','russia','russia','Europe',NULL,'Civil Unity Day','CIVIL-UNITY-DAY',NULL,'','2020-11-04','Y','/russia/unity-day.php',0,'NH','Y','',NULL,NULL,NULL,'2014-08-14','Y'),(848,'country','russia','russia','Europe',NULL,'Unity Day Holiday','UNITY-DAY-HOLIDAY',NULL,'','2020-11-05','','/russia/unity-day.php',0,'NH','Y','',NULL,NULL,NULL,'2014-08-14',''),(849,'country','russia','russia','Europe',NULL,'Victory Day Holiday','VICTORY-DAY-HOLIDAY',NULL,'','2020-05-11','Y','/russia/victory-day.php',0,'NH','Y','',NULL,NULL,NULL,'2014-08-14','Y'),(850,'country','turkey','turkey','Middle East','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-09-23','Y'),(851,'country','turkey','turkey','Middle East','','National Sovereignty and Children\'s Day','SOVEREIGNTY-AND-CHILDRENS-DAY',NULL,NULL,'2020-04-23','Y','/turkey/national-sovereignty-childrens-day.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(852,'country','turkey','turkey','Middle East','','Labour and Solidarity Day','LABOUR-AND-SOLIDARITY-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-09-23','Y'),(853,'country','turkey','turkey','Middle East','','Youth & Sports Day','ATATURK-YOUTH-AND-SPORTS-DAY',NULL,NULL,'2020-05-19','Y','/turkey/ataturk-youth-and-sports-day.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(854,'country','turkey','turkey','Middle East','','Ramadan Feast','RAMADAN-FEAST',NULL,NULL,'2020-05-24','','/islam/ramadan.php',1,'NH','Y','ramadan.jpg',NULL,NULL,'','2012-09-23','Y'),(855,'country','turkey','turkey','Middle East','','Ramadan Feast Holiday','RAMADAN-FEAST-HOLIDAY',NULL,NULL,'2020-05-25','','/islam/ramadan.php',1,'OB','N','ramadan.jpg',NULL,NULL,'','2012-09-23','Y'),(856,'country','turkey','turkey','Middle East','','Ramadan Feast Holiday','RAMADAN-FEAST-HOLIDAY',NULL,NULL,'2020-05-26','','/islam/ramadan.php',1,'OB','N','ramadan.jpg',NULL,NULL,'','2012-09-23',''),(857,'country','turkey','turkey','Middle East','','Victory Day','VICTORY-DAY',NULL,NULL,'2020-08-30','Y','/turkey/victory-day.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(858,'country','turkey','turkey','Middle East','','Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-10-29','Y','/turkey/republic-day.php',0,'ND','Y','',NULL,NULL,'','2012-09-23','Y'),(859,'country','turkey','turkey','Middle East','','Sacrifice Feast','SACRIFICE-FEAST',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(860,'country','turkey','turkey','Middle East','','Sacrifice Feast','SACRIFICE-FEAST-D2',NULL,NULL,'2020-08-01','','/singapore/hari-raya-haji.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(861,'country','turkey','turkey','Middle East','','Sacrifice Feast','SACRIFICE-FEAST-D3',NULL,NULL,'2020-08-02','','/singapore/hari-raya-haji.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(862,'country','turkey','turkey','Middle East','','Sacrifice Feast','SACRIFICE-FEAST-D4',NULL,NULL,'2020-08-03','','/singapore/hari-raya-haji.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(864,'country','australia','australia','Asia Pacific','','Queen\'s Birthday (QLD)','QUEENS-BIRTHDAY-QLD',1,NULL,'2020-10-05','','/australia/queens-birthday.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(865,'country','south-africa','south-africa','Africa','','Reconciliation Day Holiday','RECONCILLATION-DAY-HOLIDAY',1,NULL,'2020-12-17','Y','/south-africa/reconciliation-day.php',0,'NH',NULL,NULL,NULL,NULL,'','2012-10-14',''),(866,'country','hong-kong','hong-kong','Asia Pacific','','Establishment Day Holiday','ESTABLISHMENT-DAY-HOLIDAY',1,NULL,'2020-07-02','Y','/hong-kong/special-admin-region-establishment-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(867,'country','india','india','Asia Pacific','','Guru Nanak\'s Birthday','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30','','/sikh/guru-nanak-birthday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(868,'country','japan','japan','Asia Pacific','','Foundation Day Observed','FOUNDATION-DAY-OBSERVED',NULL,'','2020-02-12','Y','/japan/national-foundation-day.php',1,'NH','Y','japan-flag.gif',NULL,NULL,'','2012-10-14',''),(869,'country','japan','japan','Asia Pacific','','Showa Day Observed','SHOWA-DAY-OBSERVED',NULL,NULL,'2020-04-30','Y','/japan/showa-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(870,'country','japan','japan','Asia Pacific','','Autumn Equinox Observed','AUTUMN-EQUINOX-OBSERVED',1,NULL,'2020-09-24','','/japan/autumn-equinox-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(871,'country','japan','japan','Asia Pacific','','Emperor\'s Birthday Observed','EMPERORS-BIRTHDAY-OBSERVED',1,NULL,'2020-02-24','','/japan/emperors-birthday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(872,'country','mauritius','mauritius','Africa','','Assumption of Mary','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'RE','N','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(873,'country','new-zealand','new-zealand','Asia Pacific','','Day after New Year\'s Day','NEW-YEARS-DAY-D2',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(874,'country','russia','russia','Europe',NULL,'Spring and Labor Day Holiday','SPRING-AND-LABOR-DAY-HOLIDAY',NULL,'','2020-05-02','Y','/uk/may-day.php',1,'NH','Y','',NULL,NULL,NULL,'2014-08-14',''),(875,'country','uae','uae','Middle East','','National Day Holiday','NATIONAL-DAY-HOLIDAY',NULL,NULL,'2020-12-03','','/united-arab-emirates/national-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(876,'country','uae','uae','Middle East','','Commemoration Day','COMMEMORATION-DAY',NULL,NULL,'2020-12-01','','/united-arab-emirates/commemoration-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(877,'country','international','international','international',NULL,'World Toilet Day','WORLD-TOILET-DAY',2,'X','2020-11-19','Y','/international/world-toilet-day.php',0,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(2265,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2267,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2268,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2243,'bank-geo','telangana','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2242,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2239,'bank-geo','telangana','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2237,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2235,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2233,'bank-geo','telangana','india','Asia Pacific',NULL,'Vinayaka Chaturthi','VINAYAKA-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2232,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2231,'bank-geo','telangana','india','Asia Pacific',NULL,'Krishna Janmasthami','KRISHNA-JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2230,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2229,'bank-geo','telangana','india','Asia Pacific',NULL,'Eid al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2228,'bank-geo','telangana','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2227,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2224,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2223,'bank-geo','telangana','india','Asia Pacific',NULL,'Eid-al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2222,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2221,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2214,'bank-geo','telangana','india','Asia Pacific',NULL,'Sri Rama Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2213,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2212,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2211,'bank-geo','telangana','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2210,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2209,'bank-geo','telangana','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2203,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2204,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2202,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2201,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2200,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2199,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2198,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2197,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2196,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2195,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2192,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2191,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2188,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2187,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2186,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2185,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Eid al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2183,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2182,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2180,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2178,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2177,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2173,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2172,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2171,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2170,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2169,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2167,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2166,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2158,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2159,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2160,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Pongal','PONGAL',NULL,NULL,'2020-01-15',NULL,'/india/pongal.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2161,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Thiruvalluvar Day',NULL,NULL,NULL,'2020-01-16',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2163,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2164,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2147,'bank-geo','sikkim','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2165,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2146,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2145,'bank-geo','sikkim','india','Asia Pacific',NULL,'Losoong','LOSOONG',NULL,NULL,'2020-12-11',NULL,'/india/losoong.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02',''),(2144,'bank-geo','sikkim','india','Asia Pacific',NULL,'Losoong','LOSOONG',NULL,NULL,'2020-12-10',NULL,'/india/losoong.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02',''),(2143,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2142,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2141,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2140,'bank-geo','sikkim','india','Asia Pacific',NULL,'Bhai Dooj','BHAI-DOOJ',NULL,NULL,'2020-11-16',NULL,'/hindu/bhai-dooj.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2138,'bank-geo','sikkim','india','Asia Pacific',NULL,'Lhabab Duchen','LHABAB-DUCHEN',NULL,NULL,'2020-11-06',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2137,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2136,'bank-geo','sikkim','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-25',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2135,'bank-geo','sikkim','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-25',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2134,'bank-geo','sikkim','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-25',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2131,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2130,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2127,'bank-geo','sikkim','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2126,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2125,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2124,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2121,'bank-geo','sikkim','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2120,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2118,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2116,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2114,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2112,'bank-geo','sikkim','india','Asia Pacific',NULL,'Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2111,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2110,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2107,'bank-geo','sikkim','india','Asia Pacific',NULL,'Losar',NULL,NULL,NULL,'2020-02-25',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2108,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2105,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2104,'bank-geo','sikkim','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2100,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2099,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2097,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2096,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2093,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2091,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Dusshera','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2090,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2089,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Mahatma Gandhi\'s Birthday','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2087,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2086,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2085,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2081,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2080,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2079,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2077,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Id-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2075,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2074,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2073,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2072,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2071,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2070,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2067,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2066,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2064,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2063,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2062,'bank-geo','punjab','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2060,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2056,'bank-geo','punjab','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2055,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2054,'bank-geo','punjab','india','Asia Pacific',NULL,'Maharishi Valmiki\'s Birthday','MAHARISHI-VALMIKIS-BIRTHDAY',NULL,NULL,'2020-10-13',NULL,'/india/maharishi-valmikis-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2053,'bank-geo','punjab','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2052,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2051,'bank-geo','punjab','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2050,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2048,'bank-geo','punjab','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2047,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2046,'bank-geo','punjab','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2045,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2044,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2043,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2042,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2041,'bank-geo','punjab','india','Asia Pacific',NULL,'Martyr\'s Day of Guru Arjun Dev Ji',NULL,NULL,NULL,'2020-05-26',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2036,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2035,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2034,'bank-geo','punjab','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2033,'bank-geo','punjab','india','Asia Pacific',NULL,'Shri Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2030,'bank-geo','punjab','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2028,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2027,'bank-geo','punjab','india','Asia Pacific',NULL,'Guru Ravidas Jayanti','GURU-RAVIDAS-JAYANTI',NULL,NULL,'2020-02-09',NULL,'/india/guru-ravidas-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2024,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2020,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2019,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2018,'bank-geo','odisha','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2017,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2016,'bank-geo','odisha','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2015,'bank-geo','odisha','india','Asia Pacific',NULL,'Maha Ashtami','MAHA-ASHTAMI',NULL,NULL,'2020-10-24',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2012,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2011,'bank-geo','odisha','india','Asia Pacific',NULL,'Moharam','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2010,'bank-geo','odisha','india','Asia Pacific',NULL,'Nuakhai','NUAKHAI',NULL,NULL,'2020-08-23',NULL,'/india/nuakhai.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2008,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2006,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2005,'bank-geo','odisha','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2004,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2001,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1998,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1997,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1996,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1995,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1994,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1992,'bank-geo','odisha','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1993,'bank-geo','odisha','india','Asia Pacific',NULL,'Annual Closing of Bank Account','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1989,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1987,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1986,'bank-geo','odisha','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1985,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1984,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1983,'bank-geo','odisha','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1982,'bank-geo','odisha','india','Asia Pacific',NULL,'Vasant Panchami','VASANT-PANCHAMI',NULL,NULL,'2020-01-30',NULL,'/india/vasant-panchami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1980,'bank-geo','nagaland','india','Asia Pacific',NULL,'Christmas Holiday','CHRISTMAS',NULL,NULL,'2020-12-27','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1979,'bank-geo','nagaland','india','Asia Pacific',NULL,'Christmas Holiday','CHRISTMAS',NULL,NULL,'2020-12-26','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1978,'bank-geo','nagaland','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1977,'bank-geo','nagaland','india','Asia Pacific',NULL,'Christmas Holiday','CHRISTMAS',NULL,NULL,'2020-12-24','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1974,'bank-geo','nagaland','india','Asia Pacific',NULL,'State Inauguration Day',NULL,NULL,NULL,'2020-12-01','Y',NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02',''),(1972,'bank-geo','nagaland','india','Asia Pacific',NULL,'Guru Nanak\'s Birthday','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1971,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1970,'bank-geo','nagaland','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1969,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1967,'bank-geo','nagaland','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1968,'bank-geo','nagaland','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1966,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1962,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1960,'bank-geo','nagaland','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1959,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1958,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1955,'bank-geo','nagaland','india','Asia Pacific',NULL,'Id-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1954,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1953,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1952,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1949,'bank-geo','nagaland','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1948,'bank-geo','nagaland','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1947,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1946,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1943,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1942,'bank-geo','nagaland','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1941,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1940,'bank-geo','nagaland','india','Asia Pacific',NULL,'New Year Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1939,'bank-geo','mizoram','india','Asia Pacific',NULL,'Christmas Festival','CHRISTMAS',NULL,NULL,'2020-12-26','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1938,'bank-geo','mizoram','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1937,'bank-geo','mizoram','india','Asia Pacific',NULL,'Christmas Eve','CHRISTMAS',NULL,NULL,'2020-12-24','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1933,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1932,'bank-geo','mizoram','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1931,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1930,'bank-geo','mizoram','india','Asia Pacific',NULL,'Dusshera','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1928,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1927,'bank-geo','mizoram','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1926,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1925,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1923,'bank-geo','mizoram','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1922,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1920,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1916,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1915,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1914,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1913,'bank-geo','mizoram','india','Asia Pacific',NULL,'Buddha Pournima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1912,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1911,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1910,'bank-geo','mizoram','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1908,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1907,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1906,'bank-geo','mizoram','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1904,'bank-geo','mizoram','india','Asia Pacific',NULL,'State Day',NULL,NULL,NULL,'2020-02-20','Y',NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1903,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1901,'bank-geo','mizoram','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1900,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1897,'bank-geo','mizoram','india','Asia Pacific',NULL,'New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1894,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1893,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Christmas Eve','CHRISTMAS',NULL,NULL,'2020-12-24','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1891,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Death Anniversary of U SoSo Tham',NULL,NULL,NULL,'2020-12-18',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1890,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Pa-Togan Nengminza Sangma',NULL,NULL,NULL,'2020-12-12',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1889,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1887,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Seng Kut Snem',NULL,NULL,NULL,'2020-11-23',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1885,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Wangala Festival',NULL,NULL,NULL,'2020-11-13',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1884,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1881,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1880,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1879,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1878,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1877,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1876,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1875,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1874,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1873,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1872,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1870,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1868,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1867,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Eid-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1866,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1864,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1863,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1862,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1861,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1860,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1858,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1857,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1855,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1854,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1850,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1846,'bank-geo','manipur','india','Asia Pacific',NULL,'Ningol Chakkouba',NULL,NULL,NULL,'2020-10-30',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02',''),(1847,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1844,'bank-geo','manipur','india','Asia Pacific',NULL,'Kut',NULL,NULL,NULL,'2020-11-01',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1840,'bank-geo','manipur','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1839,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1838,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1836,'bank-geo','manipur','india','Asia Pacific',NULL,'Eid al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1834,'bank-geo','manipur','india','Asia Pacific',NULL,'Patriot\'s Day',NULL,NULL,NULL,'2020-08-13','Y',NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1831,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1828,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1827,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1826,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1825,'bank-geo','manipur','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1824,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1823,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1821,'bank-geo','manipur','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1820,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1819,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1816,'bank-geo','manipur','india','Asia Pacific',NULL,'Lui-Ngai-Ni',NULL,NULL,NULL,'2020-02-15',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1815,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1814,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1810,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1808,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1807,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1805,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Id-E-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1804,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1802,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Diwali Amavasaya','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1797,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1795,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1794,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1793,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1792,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Id-ul-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1791,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Parsi New Year','PARSI-NEW-YEAR',NULL,NULL,'2020-08-17',NULL,'/india/parsi-new-year.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1790,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1789,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1788,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1786,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1783,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1782,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1781,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Maharashtra Din','MAHARASHTRA-DIN',NULL,NULL,'2020-05-01','Y','/india/maharashtra-din.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1780,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Buddha Pournima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1779,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1777,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1776,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1775,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1774,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1772,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1770,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Chhatrapati Shivaji Maharaj Jayanti','SHIVAJI-JAYANTI',NULL,NULL,'2020-02-19','Y','/india/shivaji-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1767,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1766,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1765,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1764,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1763,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1762,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1761,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1760,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1758,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1757,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1755,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1754,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1751,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1750,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1747,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1746,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1745,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1744,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1742,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1741,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1740,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1739,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1737,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1736,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1735,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1734,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1729,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1728,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1727,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1726,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1725,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1723,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1722,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1719,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1718,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1715,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1714,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1713,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1708,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1707,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1706,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1705,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1699,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1698,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1695,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1694,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1692,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1691,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1688,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1686,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1685,'bank-geo','kerala','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1684,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1683,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1681,'bank-geo','kerala','india','Asia Pacific',NULL,'Milad-I-Sherif',NULL,NULL,NULL,'2020-10-29',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1678,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1672,'bank-geo','kerala','india','Asia Pacific',NULL,'Shree Narayana guru Samadhi Day',NULL,NULL,NULL,'2020-09-21',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1671,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1669,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1668,'bank-geo','kerala','india','Asia Pacific',NULL,'First Onam','FIRST-ONAM',NULL,NULL,'2020-08-30',NULL,'/india/onam.php',1,'RH',NULL,'onam.jpg',NULL,NULL,NULL,'2018-02-02','Y'),(1667,'bank-geo','kerala','india','Asia Pacific',NULL,'Eid al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1666,'bank-geo','kerala','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1665,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1664,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1663,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1662,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1661,'bank-geo','kerala','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1660,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1658,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1656,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1655,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1654,'bank-geo','kerala','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1653,'bank-geo','kerala','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1651,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1650,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1646,'bank-geo','kerala','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1644,'bank-geo','karnataka','india','Asia Pacific',NULL,'Christmas Day','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1643,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1641,'bank-geo','karnataka','india','Asia Pacific',NULL,'Kanakadasa Jayanthi',NULL,NULL,NULL,'2020-12-03',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1642,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1640,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1638,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1637,'bank-geo','karnataka','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1635,'bank-geo','karnataka','india','Asia Pacific',NULL,'Kannada Rajyothsava',NULL,NULL,NULL,'2020-11-01','Y',NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1634,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1633,'bank-geo','karnataka','india','Asia Pacific',NULL,'Maharshi Valmiki Jayanti','MAHARSHI-VALMIKI-JAYANTI',NULL,NULL,'2020-10-31',NULL,'/india/maharishi-valmikis-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1631,'bank-geo','karnataka','india','Asia Pacific',NULL,'Maha Navami','MAHA-NAVAMI',NULL,NULL,'2020-10-25',NULL,'/india/navaratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1628,'bank-geo','karnataka','india','Asia Pacific',NULL,'Gandhi Jayanthi','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1626,'bank-geo','karnataka','india','Asia Pacific',NULL,'Last Day of Moharamm',NULL,NULL,NULL,'2020-08-30',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1625,'bank-geo','karnataka','india','Asia Pacific',NULL,'Varasiddhi Vinayaka Vrata',NULL,NULL,NULL,'2020-08-22',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1624,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1620,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1619,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1618,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1616,'bank-geo','karnataka','india','Asia Pacific',NULL,'Khutba-e-Ramzan',NULL,NULL,NULL,'2020-05-25',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1615,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1614,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1613,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1612,'bank-geo','karnataka','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1611,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1610,'bank-geo','karnataka','india','Asia Pacific',NULL,'Basava Jayanthi',NULL,NULL,NULL,'2020-04-26',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1609,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1607,'bank-geo','karnataka','india','Asia Pacific',NULL,'Mahaveera Jayanthi','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1605,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1603,'bank-geo','karnataka','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1602,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1601,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1600,'bank-geo','karnataka','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1594,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1593,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1590,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1587,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1586,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Maha Navami','MAHA-NAVAMI',NULL,NULL,'2020-10-25',NULL,'/india/navaratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1585,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Maha Ashtami','MAHA-ASHTAMI',NULL,NULL,'2020-10-24',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1582,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1578,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1577,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1574,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1572,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1571,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1570,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1569,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1568,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1567,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1564,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1563,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1562,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1561,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1560,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Shri Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1558,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Sarhul',NULL,NULL,NULL,'2020-03-28',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1557,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1556,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1555,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Holika Dahan','HOLIKA-DAHAN',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1554,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1553,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1552,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1549,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1547,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1546,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1545,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Birthday of Sheikh Mohammad Abdullah',NULL,NULL,NULL,'2020-12-05','Y',NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1541,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1540,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1539,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1538,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1536,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1535,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1533,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1532,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1530,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1529,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1527,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1526,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1524,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Martyr\'s Day',NULL,NULL,NULL,'2020-07-13',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1522,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1521,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1519,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1518,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Jamat-Ul-Vida',NULL,NULL,NULL,'2020-05-22',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1517,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1516,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1515,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1514,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1513,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1511,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1510,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1509,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'1st Navratra',NULL,NULL,NULL,'2020-03-25',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1507,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Holi (Jammu Province only)','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1504,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1502,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1501,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1500,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1498,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1495,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1493,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1492,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1490,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1488,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1486,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1484,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1483,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1482,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1480,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1479,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1478,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1477,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1475,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1474,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1472,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1471,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Annual Closing of Bank Account','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1470,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1469,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1467,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1464,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Guru Ravidas\'s Birthday','GURU-RAVIDAS-BIRTHDAY',NULL,NULL,'2020-02-09',NULL,'/india/guru-ravidas-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1463,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1462,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1458,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1457,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1456,'bank-geo','haryana','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1455,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1454,'bank-geo','haryana','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1453,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1452,'bank-geo','haryana','india','Asia Pacific',NULL,'Maharishi Valmiki\'s Birthday','MAHARISHI-VALMIKIS-BIRTHDAY',NULL,NULL,'2020-10-13',NULL,'/india/maharishi-valmikis-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1444,'bank-geo','haryana','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1443,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1442,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1441,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1440,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1439,'bank-geo','haryana','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1433,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1431,'bank-geo','haryana','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1430,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1429,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1428,'bank-geo','haryana','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1426,'bank-geo','haryana','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1425,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1422,'bank-geo','haryana','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1420,'bank-geo','gujarat','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1416,'bank-geo','gujarat','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1413,'bank-geo','gujarat','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1412,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1408,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1407,'bank-geo','gujarat','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1404,'bank-geo','gujarat','india','Asia Pacific',NULL,'Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1402,'bank-geo','gujarat','india','Asia Pacific',NULL,'Eid-al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1401,'bank-geo','gujarat','india','Asia Pacific',NULL,'Parsi New Year','PARSI-NEW-YEAR',NULL,NULL,'2020-08-17',NULL,'/india/parsi-new-year.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1400,'bank-geo','gujarat','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1398,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1397,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1396,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1395,'bank-geo','gujarat','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1393,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1391,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1390,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1389,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1388,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1386,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1385,'bank-geo','gujarat','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1380,'bank-geo','goa','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1379,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1374,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1372,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1371,'bank-geo','goa','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1370,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1369,'bank-geo','goa','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1368,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1367,'bank-geo','goa','india','Asia Pacific',NULL,'Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1363,'bank-geo','goa','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1361,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1358,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1357,'bank-geo','goa','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1356,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1353,'bank-geo','goa','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1352,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1350,'bank-geo','goa','india','Asia Pacific',NULL,'Yearly Closing of Bank Account','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1349,'bank-geo','goa','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1345,'bank-geo','goa','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1344,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1343,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1342,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1341,'bank-geo','goa','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1339,'bank-geo','delhi','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1340,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1338,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1337,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1336,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1335,'bank-geo','delhi','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1334,'bank-geo','delhi','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1331,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1327,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1326,'bank-geo','delhi','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1325,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1323,'bank-geo','delhi','india','Asia Pacific',NULL,'Eid-al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1322,'bank-geo','delhi','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1320,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1317,'bank-geo','delhi','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1316,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1315,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1314,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1311,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1310,'bank-geo','delhi','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1309,'bank-geo','delhi','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1308,'bank-geo','delhi','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1305,'bank-geo','delhi','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1300,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1298,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1296,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1295,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1294,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1293,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1292,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Govardhan Puja','GOVARDHAN-PUJA',NULL,NULL,'2020-11-15',NULL,'/india/govardhan-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1291,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1290,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1289,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1286,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1285,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1283,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1281,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1280,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1279,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1277,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1276,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1275,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1274,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1272,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1271,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1270,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Annual Closing of Bank Account','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1269,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1268,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1267,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1265,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1266,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1263,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1261,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1260,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1258,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1257,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1256,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1255,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1253,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Id-E- Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1252,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1251,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1250,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1249,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Dusshera','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1248,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1247,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1246,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1245,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1242,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1240,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1239,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1238,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1236,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1235,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Id-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1234,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1233,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1230,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1228,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1227,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1226,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1225,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1223,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Holi 2nd Day','HOLI-2ND-DAY',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1220,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1218,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1217,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1215,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1213,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1212,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1210,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1211,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1209,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1208,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-26',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1207,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1203,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1202,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1201,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1200,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1199,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1198,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1197,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1196,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1195,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1194,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1193,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1192,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1191,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1186,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1183,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1182,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Guru Ravidas Jayanti','GURU-RAVIDAS-JAYANTI',NULL,NULL,'2020-02-09',NULL,'/india/guru-ravidas-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1179,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1175,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1174,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1173,'bank-geo','bihar','india','Asia Pacific',NULL,'Chhat Puja','CHHAT-PUJA',NULL,NULL,'2020-11-21',NULL,'/india/chhat-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1172,'bank-geo','bihar','india','Asia Pacific',NULL,'Chhat Puja','CHHAT-PUJA',NULL,NULL,'2020-11-20',NULL,'/india/chhat-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1171,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1170,'bank-geo','bihar','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1168,'bank-geo','bihar','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1137,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1138,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1139,'bank-geo','bihar','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1140,'bank-geo','bihar','india','Asia Pacific',NULL,'Holi 2nd Day','HOLI-2ND-DAY',NULL,NULL,'2020-03-11',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1141,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1142,'bank-geo','bihar','india','Asia Pacific',NULL,'Bihar Divas','BIHAR-DIVAS',NULL,NULL,'2020-03-22','Y','/india/bihar-divas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1143,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1145,'bank-geo','bihar','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1146,'bank-geo','bihar','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1148,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1149,'bank-geo','bihar','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1150,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1153,'bank-geo','bihar','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1154,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1155,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1157,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1158,'bank-geo','bihar','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1159,'bank-geo','bihar','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1160,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1163,'bank-geo','bihar','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1164,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1166,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1167,'bank-geo','bihar','india','Asia Pacific',NULL,'Maha Navami','MAHA-NAVAMI',NULL,NULL,'2020-10-25',NULL,'/india/navaratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1089,'bank-geo','assam','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1088,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1085,'bank-geo','assam','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1084,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1083,'bank-geo','assam','india','Asia Pacific',NULL,'Kali Puja','KALI-PUJA',NULL,NULL,'2020-11-14',NULL,'/india/kali-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1082,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1081,'bank-geo','assam','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-26',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1080,'bank-geo','assam','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-26',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1079,'bank-geo','assam','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-26',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1078,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1077,'bank-geo','assam','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1076,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1074,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1069,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1068,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1067,'bank-geo','assam','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1063,'bank-geo','assam','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1061,'bank-geo','assam','india','Asia Pacific',NULL,'Bohag Bihu','BOHAG-BIHU',NULL,NULL,'2020-04-14',NULL,'/india/bohag-bihu.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1054,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1053,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1052,'bank-geo','assam','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1051,'bank-geo','assam','india','Asia Pacific',NULL,'Magh Bihu','MAGH-BIHU',NULL,NULL,'2020-01-15',NULL,'/india/magh-bihu.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1050,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1049,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1048,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1046,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1045,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1044,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1043,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1040,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1039,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1038,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1036,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1034,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1033,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1032,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1031,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1028,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1027,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1026,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1025,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Buddha Pournima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1023,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Bohag Bihu','BOHAG-BIHU',NULL,NULL,'2020-04-14',NULL,'/india/bohag-bihu.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1021,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1020,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1019,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1016,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1015,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Statehood Day','STATEHOOD-DAY',NULL,NULL,'2020-02-20','Y','/india/statehood-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1014,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1012,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1011,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Makar Sankranti','MAKAR-SANKRANTI',NULL,NULL,'2020-01-15',NULL,'/india/pongal.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1009,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1008,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1007,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1005,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1004,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1003,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1002,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(999,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(998,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(997,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(995,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(994,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(993,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Id-ul-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(992,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(991,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(989,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(988,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(987,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Id-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(985,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(984,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(983,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(982,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(980,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Babu Jagjivan Ram\'s Birthday','BABU-JAGJIVAN-RAMS-BIRTHDAY',NULL,NULL,'2020-04-05',NULL,'/india/babu-jagjivan-rams-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(979,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(978,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(977,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(976,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(973,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(970,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Makar Sankranti','MAKAR-SANKRANTI',NULL,NULL,'2020-01-15',NULL,'/india/pongal.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(968,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(967,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(966,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(965,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(964,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(963,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(961,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-13',NULL,'/india/diwali.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(956,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(957,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(958,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(929,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(930,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'National',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(934,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(935,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(936,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(937,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(938,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(940,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(941,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(942,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(944,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(946,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(948,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(949,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(950,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(951,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'National',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(952,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(953,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(954,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2452,'fun','international','international','international',NULL,'Red Nose Day','RED-NOSE-DAY',2,'X','2020-05-24','','/fun/red-nose-day.php',1,'International','N','red-nose-day.jpg',NULL,NULL,NULL,'2014-08-14','Y'),(2453,'fun','us','us','Americas','','National Donut Day','NATIONAL-DONUT-DAY',1,'X','2020-06-06','','/fun/national-donut-day.php',1,'OB','N','national-donut-day.jpg',NULL,'Celebrated every year on the first Friday of June','','2012-10-15','Y'),(2758,'market','nyse','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'National','Y','us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2752,'market','nyse','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'National','Y','new-years-day.jpg',NULL,'New York Stock Exchange, United States','','2012-10-14','Y'),(2751,'market','nasdaq','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'Religious','Y','christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2750,'market','nasdaq','us','Americas','','Thanksgiving','THANKSGIVING',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'Religious','Y','thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2749,'market','nasdaq','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'National','Y','us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2748,'market','nasdaq','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'ND','Y','us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2746,'market','nasdaq','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'Religious','Y','good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(2747,'market','nasdaq','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','/us/memorial-day.php',1,'National','Y','memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2745,'market','nasdaq','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'National','Y','presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2743,'market','nasdaq','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'National','Y','new-years-day.jpg',NULL,'NASDAQ Stock Exchange, United States','','2012-10-14','Y'),(2742,'market','lse','uk','Europe','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-28','Y','/canada/boxing-day.php',1,'Religious','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2738,'market','lse','uk','Europe','','Early May Bank Holiday','EARLY-MAY-BANK-HOLIDAY',NULL,NULL,'2020-05-08','','/uk/early-may-bank-holiday.php',0,'National','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2737,'market','lse','uk','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'Religious','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2736,'market','lse','uk','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'Religious','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(2735,'market','lse','uk','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'National','Y','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','','2012-10-14','Y'),(2733,'market','dax','germany','Europe','','Christmas Holiday','CHRISTMAS-HOLIDAY',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14',''),(2731,'market','dax','germany','Europe','','Christmas Eve','CHRISTMAS-EVE',NULL,NULL,'2020-12-24','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2730,'market','dax','germany','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2729,'market','dax','germany','Europe','','Labor Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2728,'market','dax','germany','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2727,'market','dax','germany','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(2496,'country','international','international','international',NULL,'World Environment Day','WORLD-ENVIRONMENT-DAY',1,'','2020-06-05','Y','/un/world-environment-day.php',1,'International',NULL,NULL,NULL,NULL,NULL,'2014-08-14','Y'),(2497,'country','international','international','international',NULL,'World Bicycle Day','WORLD-BICYCLE-DAY',1,'X','2020-06-03','Y','/international/world-bicycle-day.php',0,'International','N',NULL,NULL,NULL,NULL,'2014-08-14','Y'),(2724,'market','euronext','france','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2722,'market','euronext','france','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2721,'market','euronext','france','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'RH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(2720,'market','euronext','france','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2719,'market','asx','australia','Asia Pacific','','Boxing Day','BOXING-DAY',NULL,NULL,'2020-12-28','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2718,'market','asx','australia','Asia Pacific','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2716,'market','asx','australia','Asia Pacific','','Anzac Day','ANZAC-DAY',NULL,'','2020-04-25','Y','/australia/anzac-day.php',1,'NH','Y','anzac-day.jpg',NULL,NULL,'','2012-10-14',''),(2715,'market','asx','australia','Asia Pacific','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2714,'market','asx','australia','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(2712,'market','asx','australia','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,'Australian Stock Exchange Ltd, Australia ','','2012-10-14','Y'),(2515,'market','mcx','india','Asia Pacific','','Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2518,'country','denmark','denmark','Europe','','Constitution Day','CONSTITUTION-DAY',NULL,'','2020-06-05','Y','/denmark/constitution-day.php',0,'OH','Y','',NULL,NULL,'','2012-10-14','Y'),(2519,'country','south-africa','south-africa','Africa','','Youth Day Holidays','YOUTH-DAY-HOLIDAY',1,'','2020-06-17','Y','/south-africa/youth-day.php',1,'NH',NULL,'youth-day.jpg',NULL,NULL,'','2012-10-14',''),(2520,'country','singapore','singapore','Asia Pacific','','Vesak Day Holiday','VESAK-DAY-HOLIDAY',NULL,'','2020-05-20','','/singapore/vesak-day.php',1,'NH','Y','vesak-day-buddha.jpg',NULL,NULL,'','2012-10-14',''),(2521,'country','singapore','singapore','Asia Pacific','','Hari Raya Haji Holiday','HARI-RAYA-HAJI-HOLIDAY',NULL,'','2020-08-12','','/singapore/hari-raya-haji.php',1,'NH','Y','kaaba.jpg',NULL,NULL,'','2012-10-14',''),(2522,'country','singapore','singapore','Asia Pacific','','Deepavali Holiday','DIWALI-HOLIDAY',NULL,NULL,'2020-10-28','','/india/diwali.php',1,'NH','Y','diwali.jpg',NULL,NULL,'','2012-10-14',''),(2523,'intl-org','who','international','international',NULL,'World TB Day','WORLD-TB-DAY',2,'X','2020-03-24','Y','/who/world-tb-day.php',0,'UN Member States','N','world-tb-day.jpg','flickr.com/@ninad','http://www.who.int/tb/',NULL,'2018-09-11','Y'),(2524,'intl-org','who','international','international',NULL,'World Health Day','WORLD-HEALTH-DAY',2,'X','2020-04-07','Y','/international/world-health-day.php',0,'WHO Member States','N','world-health-day.jpg',NULL,'http://www.who.int/campaigns/world-health-day/',NULL,'2018-09-11','Y'),(2525,'intl-org','who','international','international',NULL,'World Malaria Day','WORLD-MALARIA-DAY',2,'X','2020-04-25','Y','/who/world-malaria-day.php',0,'WHO Member States','N','world-malaria-day.jpg','who.int','http://www.who.int/malaria/',NULL,'2018-09-11','Y'),(2526,'intl-org','who','international','international',NULL,'World No-Tobacco Day','WORLD-NO-TOBACCO-DAY',2,'X','2020-05-31','Y','/international/world-no-tobacco-day.php',0,'WHO Member States','N','world-no-tobacco-day.jpg','who.int','http://www.who.int/tobacco/',NULL,'2018-09-11','Y'),(2527,'intl-org','who','international','international',NULL,'World Blood Donor Day','WORLD-BLOOD-DONOR-DAY',2,'X','2020-06-14','Y','/international/world-blood-donor-day.php',0,'WHO Member States','N','world-blood-donor-day.jpg','health.mil','http://www.who.int/campaigns/world-blood-donor-day/en/',NULL,'2018-09-11','Y'),(2528,'intl-org','who','international','international',NULL,'World Hepatitis Day','WORLD-HEPATITIS-DAY',2,'X','2020-07-28','Y','/who/world-hepatitis-day.php',0,'WHO Member States','N','world-hepatitis-day.jpg','who.int','http://www.who.int/hepatitis/',NULL,'2018-09-11','Y'),(2529,'intl-org','who','international','international',NULL,'World AIDS Day','WORLD-AIDS-DAY',2,'X','2020-12-01','Y','/international/world-aids-day.php',0,'WHO Member States','N','world-aids-day.jpg','WhiteHouse','http://www.who.int/campaigns/aids-day/',NULL,'2018-09-11','Y'),(2530,'country','international','international','international',NULL,'International Day of Democracy','INTERNATIONAL-DAY-OF-DEMOCRACY',1,'X','2020-09-15','Y','/un/international-democracy-day.php',0,'International','N','international-day-of-democracy.jpg','UN.int',NULL,NULL,'2014-08-14','Y'),(2531,'country','international','international','international',NULL,'World TB Day','WORLD-TB-DAY',1,'X','2020-03-24','Y','/who/world-tb-day.php',1,'International','N','world-tb-day.jpg','who.int',NULL,NULL,'2014-08-14','Y'),(2532,'country','international','international','international',NULL,'World Malaria Day','WORLD-MALARIA-DAY',1,'X','2020-04-25','Y','/who/world-malaria-day.php',1,'International','N','world-malaria-day.jpg','who.int',NULL,NULL,'2014-08-14','Y'),(2533,'country','international','international','international',NULL,'World Hepatitis Day','WORLD-HEPATITIS-DAY',1,'X','2020-07-28','Y','/who/world-hepatitis-day.php',1,'International','N','world-hepatitis-day.jpg','who.int',NULL,NULL,'2014-08-14','Y'),(2535,'country','argentina','argentina','Americas','','San Martin Day Holiday','SAN-MARTIN-DAY-HOLIDAY',NULL,NULL,'2020-08-19','','/argentina/san-martin-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(2534,'country','argentina','argentina','Americas','','Independence day Holiday','INDEPENDENCE-DAY',NULL,NULL,'2020-07-08','','/argentina/independence-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(2536,'country','hong-kong','hong-kong','Asia Pacific','','Buddha\'s Birthday Holiday','BUDDHAS-BIRTHDAY-HOLIDAY',NULL,NULL,'2020-05-13','','/singapore/vesak-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(2537,'country','mexico','mexico','Americas','','Benito Juarez\'s Birthday Holiday','BENITO-JUAREZS-BIRTHDAY-HOLIDAY',NULL,NULL,'2020-03-16','','/mexico/benito-juarez-birthday.php',1,'NH','Y',NULL,NULL,'Third Monday of March','','2012-10-14','Y'),(2538,'country','china','china','Asia Pacific','','Spring Festival Holiday','SPRING-FESTIVAL-HOLIDAY',NULL,NULL,'2020-01-27','','/china/spring-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2539,'country','china','china','Asia Pacific','','Spring Festival Holiday','SPRING-FESTIVAL-HOLIDAY',NULL,NULL,'2020-01-28','','/china/spring-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2540,'country','china','china','Asia Pacific','','Spring Festival Holiday','SPRING-FESTIVAL-HOLIDAY',NULL,NULL,'2020-01-29','','/china/spring-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2541,'country','china','china','Asia Pacific','','Spring Festival Holiday','SPRING-FESTIVAL-HOLIDAY',NULL,NULL,'2020-01-30','','/china/spring-festival.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2542,'country','ireland','ireland','Europe','','St. Patrick\'s Day Holiday','ST-PATRICKS-DAY-HOLIDAY',NULL,NULL,'2020-03-18','Y','/us/st-patricks-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14',''),(2544,'country','kenya','kenya','Africa','','Moi Day','MOI-DAY',NULL,NULL,'2020-10-10','Y','/kenya/moi-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2545,'country','kenya','kenya','Africa','','Mashujaa Day Holiday','MASHUJAA-DAY-HOLIDAY',NULL,NULL,'2020-10-21','Y','/kenya/mashujaa-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14',''),(2546,'country','norway','norway','Europe','','Whit Sunday','WHIT-SUNDAY',NULL,NULL,'2020-05-31','','/france/whit-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-15','Y'),(2548,'country','romania','romania','Europe','','Children\'s Day','CHILDRENS-DAY',NULL,NULL,'2020-06-01','Y','/romania/childrens-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2550,'country','thailand','thailand','Asia Pacific','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2551,'country','turkey','turkey','Middle East','','Democracy and National Unity Day','DEMOCRACY-AND-NATIONAL-UNITY-DAY',NULL,NULL,'2020-07-15','Y','/turkey/democracy-and-national-unity-day.php',1,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(2611,'intl-org','un','international','international',NULL,'World Bicycle Day','WORLD-BICYCLE-DAY',NULL,'','2020-06-03','Y','/international/world-bicycle-day.php',1,'UN Member States','N','','','http://undocs.org/A/RES/72/272',NULL,'2018-09-11','Y'),(2652,'intl-org','un','international','international',NULL,'World Suicide Prevention Day','SUICIDE-PREVENTION-DAY',NULL,'','2020-09-10','Y','/un/world-suicide-prevention-day.php',0,'UN Member States','N','','','http://www.who.int/mental_health/prevention/suicide/wspd/en/',NULL,'2018-09-11','Y'),(2553,'intl-org','un','international','international',NULL,'International Day of Commemoration in Memory of the Victims of the Holocaust','VICTIMS-OF-THE-HOLOCAUST',NULL,'','2020-01-27','Y','/un/day-of-commemoration-in-memory-of-the-victims-of-the-holocaust.php',0,'UN Member States','N','','','http://www.un.org/ga/search/view_doc.asp?symbol=A/RES/60/7',NULL,'2018-09-11','Y'),(2554,'intl-org','un','international','international',NULL,'World Cancer Day','WORLD-CANCER-DAY',2,'','2020-02-04','Y','/un/world-cancer-day.php',0,'UN Member States','N','','','http://www.who.int/cancer/world-cancer-day/en/',NULL,'2018-09-11','Y'),(2555,'intl-org','un','international','international',NULL,'International Day of Zero Tolerance for Female Genital Mutilation','FEMALE-GENITAL-MUTILATION',NULL,'','2020-02-06','Y','/un/zero-tolerance-day-female-genital-mutilation.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/67/146',NULL,'2018-09-11','Y'),(2556,'intl-org','un','international','international',NULL,'International Day of Women and Girls in Science','GIRLS-IN-SCIENCE',NULL,'','2020-02-11','Y','/un/day-of-women-and-girls-in-science.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/70/212',NULL,'2018-09-11','Y'),(2557,'intl-org','un','international','international',NULL,'World Radio Day','WORLD-RADIO-DAY',NULL,'','2020-02-13','Y','/un/world-radio-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/67/124',NULL,'2018-09-11','Y'),(2558,'intl-org','un','international','international',NULL,'World Day of Social Justice','DAY-OF-SOCIAL-JUSTICE',NULL,'','2020-02-20','Y','/un/world-day-of-social-justice.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/62/10',NULL,'2018-09-11','Y'),(2559,'intl-org','un','international','international',NULL,'International Mother Language Day','MOTHER-LANGUAGE-DAY',NULL,'','2020-02-21','Y','/international/mother-language-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/56/262',NULL,'2018-09-11','Y'),(2560,'intl-org','un','international','international',NULL,'Zero Discrimination Day','ZERO-DISCRIMINATION-DAY',NULL,'','2020-03-01','Y','/un/zero-discrimination-day.php',0,'UN Member States','N','','','http://www.unaids.org/en/resources/campaigns/zero_discrimination',NULL,'2018-09-11','Y'),(2561,'intl-org','un','international','international',NULL,'World Wildlife Day','WORLD-WILDLIFE-DAY',NULL,'','2020-03-03','Y','/un/world-wildlife-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/68/205',NULL,'2018-09-11','Y'),(2562,'intl-org','un','international','international',NULL,'International Women\'s Day','INTERNATIONAL-WOMENS-DAY',NULL,'','2020-03-08','Y','/international/international-womens-day.php',1,'UN Member States','N','','','http://www.un.org/en/events/womensday/',NULL,'2018-09-11','Y'),(2563,'intl-org','un','international','international',NULL,'International Day of Happiness','DAY-OF-HAPPINESS',NULL,'','2020-03-20','Y','/un/international-day-of-happiness.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/66/281',NULL,'2018-09-11','Y'),(2564,'intl-org','un','international','international',NULL,'French Language Day','FRENCH-LANGUAGE-DAY',NULL,'','2020-03-20','Y','/un/french-language-day.php',0,'UN Member States','N','','','http://www.un.org/fr/events/frenchlanguageday/',NULL,'2018-09-11','Y'),(2565,'intl-org','un','international','international',NULL,'International Day for the Elimination of Racial Discrimination','RACIAL-DISCRIMINATION',NULL,'','2020-03-21','Y','/un/day-for-the-elimination-of-racial-discrimination.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/2142%20(XXI)',NULL,'2018-09-11','Y'),(2566,'intl-org','un','international','international',NULL,'World Poetry Day','WORLD-POETRY-DAY',NULL,'','2020-03-21','Y','/un/world-poetry-day.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0011/001185/118514e.pdf#page=70',NULL,'2018-09-11','Y'),(2567,'intl-org','un','international','international',NULL,'International Day of Nowruz','DAY-OF-NOWRUZ',NULL,'','2020-03-21','Y','/un/international-day-of-nowruz.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/64/L.30/Rev.2',NULL,'2018-09-11','Y'),(2568,'intl-org','un','international','international',NULL,'World Down Syndrome Day','WORLD-DOWN-SYNDROME-DAY',NULL,'','2020-03-21','Y','/un/world-down-syndrome-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/66/149',NULL,'2018-09-11','Y'),(2569,'intl-org','un','international','international',NULL,'International Day of Forests','DAY-OF-FORESTS',NULL,'','2020-03-21','Y','/un/international-day-of-forests.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/67/200',NULL,'2018-09-11','Y'),(2570,'intl-org','un','international','international',NULL,'World Water Day','WORLD-WATER-DAY',NULL,'','2020-03-22','Y','/international/world-water-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/47/193',NULL,'2018-09-11','Y'),(2571,'intl-org','un','international','international',NULL,'World Meteorological Day','WORLD-METEOROLOGICAL-DAY',NULL,'','2020-03-23','Y','/un/world-meteorological-day.php',0,'UN Member States','N','','','https://public.wmo.int/en',NULL,'2018-09-11','Y'),(2572,'intl-org','un','international','international',NULL,'World Tuberculosis Day','WORLD-TUBERCULOSIS-DAY',NULL,'','2020-03-24','Y','/who/world-tb-day.php',0,'UN Member States','N','','','',NULL,'2018-09-11','Y'),(2573,'intl-org','un','international','international',NULL,'International Day for the Right to the Truth concerning Gross Human Rights Violations','HUMAN-RIGHTS-VIOLATION',NULL,'','2020-03-24','Y','/un/day-for-the-right-to-the-truth-concerning-gross-human-rights-violations.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/65/196',NULL,'2018-09-11','Y'),(2574,'intl-org','un','international','international',NULL,'International Day of Remembrance of the Victims of Slavery and the Transatlantic Slave Trade','SLAVERY-AND-THE-TRANSATL',NULL,'','2020-03-25','Y','/un/day-of-remembrance-of-the-victims-of-slavery-and-the-transatlantic-slave-trade.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/62/122',NULL,'2018-09-11','Y'),(2575,'intl-org','un','international','international',NULL,'International Day of Solidarity with Detained and Missing Staff Members','MISSING-STAFF-MEMBERS',NULL,'','2020-03-25','Y','/un/day-of-solidarity-with-detained-and-missing-staff-members.php',0,'UN Member States','N','','','http://www.un.org/en/events/detainedstaffday/',NULL,'2018-09-11','Y'),(2920,'country','russia','russia','Europe','','Defender of the Fatherland Holiday','DEFENDER-OF-THE-FATHERLAND',NULL,NULL,'2020-02-24','Y','/russia/defender-of-the-fatherland.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2914,'country','egypt','egypt','Middle East','','Arafat Day','ARAFAT-DAY',NULL,NULL,'2020-07-30','','/egypt/arafat-day.php',0,'NH','Y',NULL,NULL,NULL,'','2016-04-12','Y'),(2924,'country','pakistan','pakistan','Asia Pacific','','Kashmir Day','KASHMIR-DAY',NULL,NULL,'2020-02-05','','/pakistan/kashmir-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2576,'intl-org','un','international','international',NULL,'World Autism Awareness Day','AUTISM-AWARENESS-DAY',NULL,'','2020-04-02','Y','/un/world-autism-awareness-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/62/139',NULL,'2018-09-11','Y'),(2577,'intl-org','un','international','international',NULL,'International Day for Mine Awareness and Assistance in Mine Action','ASSISTANCE-IN-MINE-ACTION',NULL,'','2020-04-04','Y','/un/day-for-mine-awareness-and-assistance-in-mine-action.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/60/97',NULL,'2018-09-11','Y'),(2578,'intl-org','un','international','international',NULL,'International Day of Sport for Development and Peace','DEVELOPMENT-AND-PEACE',NULL,'','2020-04-06','Y','/un/day-of-sport-for-development-and-peace.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/67/296',NULL,'2018-09-11','Y'),(2579,'intl-org','un','international','international',NULL,'International Day of Reflection on the Genocide in Rwanda','THE-GENOCIDE-IN-RWANDA',NULL,'','2020-04-07','Y','/un/day-of-reflection-on-the-genocide-in-rwanda.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/58/234',NULL,'2018-09-11','Y'),(2580,'intl-org','un','international','international',NULL,'World Health Day','WORLD-HEALTH-DAY',NULL,'','2020-04-07','Y','/international/world-health-day.php',1,'UN Member States','N','','','http://www.who.int/campaigns/world-health-day/',NULL,'2018-09-11','Y'),(2581,'intl-org','un','international','international',NULL,'International Day of Human Space Flight','DAY-OF-HUMAN-SPACE-FLIGHT',NULL,'','2020-04-12','Y','/un/day-of-human-space-flight.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/65/271',NULL,'2018-09-11','Y'),(2582,'intl-org','un','international','international',NULL,'Chinese Language Day','CHINESE-LANGUAGE-DAY',NULL,'','2020-04-20','Y','/un/chinese-language-day.php',0,'UN Member States','N','','','http://www.un.org/zh/events/chineselanguageday/',NULL,'2018-09-11','Y'),(2583,'intl-org','un','international','international',NULL,'World Creativity and Innovation Day','CREATIVITY-INNOVATION-DAY',NULL,'','2020-04-21','Y','/un/creativity-and-innovation-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/71/284',NULL,'2018-09-11','Y'),(2584,'intl-org','un','international','international',NULL,'International Mother Earth Day','MOTHER-EARTH-DAY',NULL,'','2020-04-22','Y','/international/earth-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/63/278',NULL,'2018-09-11','Y'),(2585,'intl-org','un','international','international',NULL,'World Book and Copyright Day','BOOK-AND-COPYRIGHT-DAY',NULL,'','2020-04-23','Y','/international/world-book-day.php',1,'UN Member States','N','','','http://unesdoc.unesco.org/images/0010/001018/101803e.pdf#page=56',NULL,'2018-09-11','Y'),(2586,'intl-org','un','international','international',NULL,'English Language Day','ENGLISH-LANGUAGE-DAY',NULL,'','2020-04-23','Y','/un/english-language-day.php',0,'UN Member States','N','','','http://www.un.org/en/events/englishlanguageday/index.shtml',NULL,'2018-09-11','Y'),(2587,'intl-org','un','international','international',NULL,'Spanish Language Day','SPANISH-LANGUAGE-DAY',NULL,'','2020-04-23','Y','/un/spanish-language-day.php',0,'UN Member States','N','','','http://www.un.org/es/events/spanishlanguageday/',NULL,'2018-09-11','Y'),(2588,'intl-org','un','international','international',NULL,'World Malaria Day','WORLD-MALARIA-DAY',NULL,'','2020-04-25','Y','/who/world-malaria-day.php',1,'UN Member States','N','','','http://www.who.int/campaigns/malaria-day/2018/en/',NULL,'2018-09-11','Y'),(2589,'intl-org','un','international','international',NULL,'International Chernobyl Disaster Remembrance Day','CHERNOBYL-REMEMBRANCE-DAY',NULL,'','2020-04-26','Y','/un/chernobyl-disaster-remembrance-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/71/125',NULL,'2018-09-11','Y'),(2590,'intl-org','un','international','international',NULL,'World Intellectual Property Day','INTELLECTUAL-PROPERTY-DAY',NULL,'','2020-04-26','Y','/un/world-intellectual-property-day.php',0,'UN Member States','N','','','http://www.wipo.int/ip-outreach/en/ipday/',NULL,'2018-09-11','Y'),(2591,'intl-org','un','international','international',NULL,'World Day for Safety and Health at Work','SAFETY-AND-HEALTH-AT-WORK',NULL,'','2020-04-28','Y','/un/world-day-for-safety-and-health-at-work.php',0,'UN Member States','N','','','http://www.un.org/en/events/safeworkday/',NULL,'2018-09-11','Y'),(2592,'intl-org','un','international','international',NULL,'International Jazz Day','INTERNATIONAL-JAZZ-DAY',NULL,'','2020-04-30','Y','/un/international-jazz-day.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0021/002150/215084e.pdf#page=53',NULL,'2018-09-11','Y'),(2593,'intl-org','un','international','international',NULL,'\"Vesak\", the Day of the Full Moon','THE-DAY-OF-THE-FULL-MOON',NULL,'','2020-04-30','','/singapore/vesak-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/54/115',NULL,'2018-09-11','Y'),(2594,'intl-org','un','international','international',NULL,'World Tuna Day','WORLD-TUNA-DAY',NULL,'','2020-05-02','Y','/un/world-tuna-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/71/124',NULL,'2018-09-11','Y'),(2595,'intl-org','un','international','international',NULL,'World Press Freedom Day','WORLD-PRESS-FREEDOM-DAY',NULL,'','2020-05-03','Y','/un/world-press-freedom-day.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0009/000904/090448e.pdf#page=76',NULL,'2018-09-11','Y'),(2596,'intl-org','un','international','international',NULL,'Time of Remembrance and Reconciliation for Those Who Lost Their Lives During the Second World War','LIVES-DURING-WWII',NULL,'','2020-05-08','Y','/un/remember-lost-their-lives-during-ww-ii.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/59/26',NULL,'2018-09-11','Y'),(2597,'intl-org','un','international','international',NULL,'Time of Remembrance and Reconciliation for Those Who Lost Their Lives During the Second World War','LIVES-DURING-WWII',NULL,'','2020-05-09','Y','/un/remember-lost-their-lives-during-ww-ii.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/59/26',NULL,'2018-09-11','Y'),(2598,'intl-org','un','international','international',NULL,'World Migratory Bird Day','WORLD-MIGRATORY-BIRD-DAY',NULL,'','2020-05-11','','/un/world-migratory-bird-day.php',0,'UN Member States','N','','','(second Saturday of May)\nhttp://unesdoc.unesco.org/images/0009/000904/090448e.pdf#page=76',NULL,'2018-09-11','Y'),(2599,'intl-org','un','international','international',NULL,'International Day of Families','DAY-OF-FAMILIES',NULL,'','2020-05-15','Y','/un/international-day-of-families.php',1,'UN Member States','N','family-day.jpg','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/47/237',NULL,'2018-09-11','Y'),(2600,'intl-org','un','international','international',NULL,'International Day of Living Together in Peace','LIVING-TOGETHER-IN-PEACE',NULL,'','2020-05-16','Y','/un/day-of-living-together-in-peace.php',0,'UN Member States','N','','','http://undocs.org/A/RES/72/130',NULL,'2018-09-11','Y'),(2601,'intl-org','un','international','international',NULL,'International Day of Light','DAY-OF-LIGHT',NULL,'','2020-05-16','Y','/un/international-day-of-light.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0026/002608/260889e.pdf#page=34',NULL,'2018-09-11','Y'),(2602,'intl-org','un','international','international',NULL,'World Telecommunication and Information Society Day','INFO-SOCIETY-DAY',NULL,'','2020-05-17','Y','/un/telecommunication-and-info-society-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/60/252',NULL,'2018-09-11','Y'),(2603,'intl-org','un','international','international',NULL,'World Bee Day','WORLD-BEE-DAY',NULL,'','2020-05-20','Y','/un/world-bee-day.php',0,'UN Member States','N','','','http://undocs.org/a/res/72/211',NULL,'2018-09-11','Y'),(2604,'intl-org','un','international','international',NULL,'World Day for Cultural Diversity for Dialogue and Development','CULTURAL-DIVERSITY',NULL,'','2020-05-21','Y','/un/day-for-cultural-diversity-for-dialogue.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/57/249',NULL,'2018-09-11','Y'),(2605,'intl-org','un','international','international',NULL,'International Day for Biological Diversity','BIOLOGICAL-DIVERSITY',NULL,'','2020-05-22','Y','/un/day-for-biological-diversity.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/55/201',NULL,'2018-09-11','Y'),(2606,'intl-org','un','international','international',NULL,'International Day to End Obstetric Fistula','END-OBSTETRIC-FISTULA',NULL,'','2020-05-23','Y','/un/day-to-end-obstetric-fistula.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/67/147',NULL,'2018-09-11','Y'),(2607,'intl-org','un','international','international',NULL,'International Day of UN Peacekeepers','DAY-OF-UN-PEACEKEEPERS',NULL,'','2020-05-29','Y','/un/day-of-un-peacekeepers.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/57/129',NULL,'2018-09-11','Y'),(2608,'intl-org','un','international','international',NULL,'World No-Tobacco Day','WORLD-NO-TOBACCO-DAY',NULL,'','2020-05-31','Y','/international/world-no-tobacco-day.php',0,'UN Member States','N','','','http://www.who.int/tobacco/framework/wha_eb/wha42_19/en/',NULL,'2018-09-11','Y'),(2610,'intl-org','un','international','international',NULL,'Global Day of Parents','GLOBAL-DAY-OF-PARENTS',NULL,'','2020-06-01','Y','/un/global-day-of-parents.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/66/292',NULL,'2018-09-11','Y'),(2653,'intl-org','un','international','international',NULL,'United Nations Day for South-South Cooperation','SOUTH-SOUTH-COOPERATION',NULL,'','2020-09-12','Y','/un/day-for-south-south-cooperation.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/58/220',NULL,'2018-09-11','Y'),(2612,'intl-org','un','international','international',NULL,'International Day of Innocent Children Victims of Aggression','INNOCENT-CHILDREN-VICTIMS',NULL,'','2020-06-04','Y','/un/day-of-children-victims-of-aggression.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/ES-7/8',NULL,'2018-09-11','Y'),(2613,'intl-org','un','international','international',NULL,'World Environment Day','WORLD-ENVIRONMENT-DAY',NULL,'','2020-06-05','Y','/un/world-environment-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/2994%20(XXVII)',NULL,'2018-09-11','Y'),(2614,'intl-org','un','international','international',NULL,'International Day for the Fight against Illegal, Unreported and Unregulated Fishing','AGAINST-ILLEGAL-FISHING',NULL,'','2020-06-05','Y','/un/day-for-the-fight-against-illegal-fishing.php',0,'UN Member States','N','','','http://undocs.org/A/RES/72/72',NULL,'2018-09-11','Y'),(2651,'intl-org','un','international','international',NULL,'International Literacy Day','LITERACY-DAY',NULL,'','2020-09-08','Y','/international/international-literacy-day.php',1,'UN Member States','N','','','http://unesdoc.unesco.org/images/0011/001140/114048e.pdf',NULL,'2018-09-11','Y'),(2615,'intl-org','un','international','international',NULL,'Russian Language Day','RUSSIAN-LANGUAGE-DAY',NULL,'','2020-06-06','Y','/un/russian-language-day.php',0,'UN Member States','N','','','http://www.un.org/ru/events/russianlanguageday/',NULL,'2018-09-11','Y'),(2616,'intl-org','un','international','international',NULL,'World Oceans Day','WORLD-OCEANS-DAY',NULL,'','2020-06-08','Y','/un/world-oceans-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/63/111',NULL,'2018-09-11','Y'),(2617,'intl-org','un','international','international',NULL,'World Day Against Child Labour','AGAINST-CHILD-LABOUR',NULL,'','2020-06-12','Y','/un/world-day-against-child-labour.php',0,'UN Member States','N','','','',NULL,'2018-09-11','Y'),(2650,'intl-org','un','international','international',NULL,'International Day of Charity','DAY-OF-CHARITY',NULL,'','2020-09-05','Y','/un/international-day-of-charity.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/67/105',NULL,'2018-09-11','Y'),(2618,'intl-org','un','international','international',NULL,'International Albinism Awareness Day','ALBINISM-AWARENESS-DAY',NULL,'','2020-06-13','Y','/un/international-albinism-awareness-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/69/170',NULL,'2018-09-11','Y'),(2619,'intl-org','un','international','international',NULL,'World Blood Donor Day','WORLD-BLOOD-DONOR-DAY',NULL,'','2020-06-14','Y','/international/world-blood-donor-day.php',1,'UN Member States','N','','','http://www.who.int/bloodsafety/WHA58_13-en.pdf?ua=1',NULL,'2018-09-11','Y'),(2620,'intl-org','un','international','international',NULL,'World Elder Abuse Awareness Day','ELDER-ABUSE-AWARENESS-DAY',NULL,'','2020-06-15','Y','/un/world-elder-abuse-awareness-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/66/127',NULL,'2018-09-11','Y'),(2649,'intl-org','un','international','international',NULL,'International Day of the Victims of Enforced Disappearances','ENFORCED-DISAPPEARANCES',NULL,'','2020-08-30','Y','/un/day-of-the-victims-of-enforced-disappearances.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/65/209',NULL,'2018-09-11','Y'),(2621,'intl-org','un','international','international',NULL,'International Day of Family Remittances','DAY-OF-FAMILY-REMITTANCES',NULL,'','2020-06-16','Y','/un/international-day-of-family-remittances.php',0,'UN Member States','N','family-day.jpg','','http://undocs.org/A/RES/72/281',NULL,'2018-09-11','Y'),(2622,'intl-org','un','international','international',NULL,'World Day to Combat Desertification and Drought','COMBAT-DESERTIFICATION',NULL,'','2020-06-17','Y','/un/day-to-combat-desertification-and-drought.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/49/115',NULL,'2018-09-11','Y'),(2648,'intl-org','un','international','international',NULL,'International Day against Nuclear Tests','DAY-AGAINST-NUCLEAR-TESTS',NULL,'','2020-08-29','Y','/un/international-day-against-nuclear-tests.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/64/35',NULL,'2018-09-11','Y'),(2623,'intl-org','un','international','international',NULL,'Sustainable Gastronomy Day','SUSTAINABLE-GASTRONOMY',NULL,'','2020-06-18','Y','/un/sustainable-gastronomy-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/71/246',NULL,'2018-09-11','Y'),(2624,'intl-org','un','international','international',NULL,'International Day for the Elimination of Sexual Violence in Conflict','SEXUAL-VIOLENCE-CONFLICT',NULL,'','2020-06-19','Y','/un/day-for-the-elimination-of-sexual-violence-in-conflict.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/69/293',NULL,'2018-09-11','Y'),(2625,'intl-org','un','international','international',NULL,'World Refugee Day','WORLD-REFUGEE-DAY',NULL,'','2020-06-20','Y','/un/world-refugee-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/55/76',NULL,'2018-09-11','Y'),(2647,'intl-org','un','international','international',NULL,'International Day for the Remembrance of the Slave Trade and Its Abolition','REMEMBRANCE-SLAVE-TRADE',NULL,'','2020-08-23','Y','/un/day-for-remembrance-of-the-slave-trade-and-abolition.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0011/001102/110220e.pdf#page=72',NULL,'2018-09-11','Y'),(2626,'intl-org','un','international','international',NULL,'International Day of Yoga','INTERNATIONAL-DAY-OF-YOGA',NULL,'','2020-06-21','Y','/international/international-yoga-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/69/131',NULL,'2018-09-11','Y'),(2627,'intl-org','un','international','international',NULL,'United Nations Public Service Day','UN-PUBLIC-SERVICE-DAY',NULL,'','2020-06-23','Y','/un/public-service-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/57/277',NULL,'2018-09-11','Y'),(2628,'intl-org','un','international','international',NULL,'International Widows\' Day','INTERNATIONAL-WIDOWS-DAY',NULL,'','2020-06-23','Y','/un/international-widows-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/65/189',NULL,'2018-09-11','Y'),(2646,'intl-org','un','international','international',NULL,'International Day of Remembrance and Tribute to the Victims of Terrorism','THE-VICTIMS-OF-TERRORISM',NULL,'','2020-08-21','Y','/un/day-of-tribute-to-the-victims-of-terrorism.php',0,'UN Member States','N','','','http://undocs.org/A/RES/72/165',NULL,'2018-09-11','Y'),(2629,'intl-org','un','international','international',NULL,'Day of the Seafarer','DAY-OF-THE-SEAFARER',NULL,'','2020-06-25','Y','/un/day-of-the-seafarer.php',0,'UN Member States','N','','','http://www.un.org/en/events/seafarerday/dayoftheseafarer-res19.pdf',NULL,'2018-09-11','Y'),(2630,'intl-org','un','international','international',NULL,'International Day against Drug Abuse and Illicit Trafficking','DAY-AGAINST-DRUG-ABUSE',NULL,'','2020-06-26','Y','/international/day-against-drug-abuse-and-illicit-trafficking.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/42/112',NULL,'2018-09-11','Y'),(2645,'intl-org','un','international','international',NULL,'World Humanitarian Day','WORLD-HUMANITARIAN-DAY',NULL,'','2020-08-19','Y','/un/world-humanitarian-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/63/139',NULL,'2018-09-11','Y'),(2631,'intl-org','un','international','international',NULL,'United Nations International Day in Support of Victims of Torture','VICTIMS-OF-TORTURE',NULL,'','2020-06-26','Y','/un/day-in-support-of-victims-of-torture.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/52/149',NULL,'2018-09-11','Y'),(2632,'intl-org','un','international','international',NULL,'Micro, Small and Medium-sized Enterprises Day','SMALL-ENTERPRISES-DAY',NULL,'','2020-06-27','Y','/un/micro-small-and-medium-sized-enterprises-day.php',0,'UN Member States','N','','','http://undocs.org/A/RES/71/279',NULL,'2018-09-11','Y'),(2644,'intl-org','un','international','international',NULL,'International Youth Day','INTERNATIONAL-YOUTH-DAY',NULL,'','2020-08-12','Y','/international/international-youth-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/54/120',NULL,'2018-09-11','Y'),(2633,'intl-org','un','international','international',NULL,'International Day of the Tropics','DAY-OF-THE-TROPICS',NULL,'','2020-06-29','Y','/un/international-day-of-the-tropics.php',0,'UN Member States','N','','','http://undocs.org/a/res/70/267',NULL,'2018-09-11','Y'),(2634,'intl-org','un','international','international',NULL,'International Asteroid Day','ASTEROID-DAY',NULL,'','2020-06-30','Y','/un/international-asteroid-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/71/90',NULL,'2018-09-11','Y'),(2635,'intl-org','un','international','international',NULL,'International Day of Parliamentarism','DAY-OF-PARLIAMENTARISM',NULL,'','2020-06-30','Y','/un/international-day-of-parliamentarism.php',0,'UN Member States','N','','','http://undocs.org/A/RES/72/278',NULL,'2018-09-11','Y'),(2643,'intl-org','un','international','international',NULL,'International Day of the World\'s Indigenous Peoples','WORLDS-INDIGENOUS-PEOPLES',NULL,'','2020-08-09','Y','/un/day-of-the-world\'s-indigenous-peoples.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/49/214',NULL,'2018-09-11','Y'),(2636,'intl-org','un','international','international',NULL,'International Day of Cooperatives','DAY-OF-COOPERATIVES',NULL,'','2020-07-06','','/un/international-day-of-cooperatives.php',0,'UN Member States','N','','','first Saturday in July\nhttp://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/47/90',NULL,'2018-09-11','Y'),(2637,'intl-org','un','international','international',NULL,'World Population Day','WORLD-POPULATION-DAY',NULL,'','2020-07-11','Y','/international/world-population-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/45/216',NULL,'2018-09-11','Y'),(2642,'intl-org','un','international','international',NULL,'World Day against Trafficking in Persons','TRAFFICKING-IN-PERSONS',NULL,'','2020-07-30','Y','/un/world-day-against-trafficking-in-persons.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/68/192',NULL,'2018-09-11','Y'),(2638,'intl-org','un','international','international',NULL,'World Youth Skills Day','WORLD-YOUTH-SKILLS-DAY',NULL,'','2020-07-15','Y','/un/world-youth-skills-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/69/145',NULL,'2018-09-11','Y'),(2639,'intl-org','un','international','international',NULL,'Nelson Mandela International Day','NELSON-MANDELA-DAY',NULL,'','2020-07-18','Y','/un/nelson-mandela-international-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/64/13',NULL,'2018-09-11','Y'),(2641,'intl-org','un','international','international',NULL,'International Day of Friendship','DAY-OF-FRIENDSHIP',NULL,'','2020-07-30','Y','/international/international-friendship-day.php',1,'UN Member States','N','','','',NULL,'2018-09-11','Y'),(2640,'intl-org','un','international','international',NULL,'World Hepatitis Day','WORLD-HEPATITIS-DAY',NULL,'','2020-07-28','Y','/who/world-hepatitis-day.php',0,'UN Member States','N','','','',NULL,'2018-09-11','Y'),(2654,'intl-org','un','international','international',NULL,'International Day of Democracy','DAY-OF-DEMOCRACY',NULL,'','2020-09-15','Y','/un/international-democracy-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/62/7',NULL,'2018-09-11','Y'),(2655,'intl-org','un','international','international',NULL,'International Day for the Preservation of the Ozone Layer','THE-OZONE-LAYER',NULL,'','2020-09-16','Y','/un/international-day-for-the-preservation-of-the-ozone-layer.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/49/114',NULL,'2018-09-11','Y'),(2656,'intl-org','un','international','international',NULL,'International Day of Peace','DAY-OF-PEACE',NULL,'','2020-09-21','Y','/un/international-day-of-peace.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/36/67',NULL,'2018-09-11','Y'),(2657,'intl-org','un','international','international',NULL,'International Day of Sign Languages','DAY-OF-SIGN-LANGUAGES',NULL,'','2020-09-23','Y','/un/international-day-of-sign-languages.php',0,'UN Member States','N','','','http://undocs.org/A/RES/72/161',NULL,'2018-09-11','Y'),(2658,'intl-org','un','international','international',NULL,'International Day for the Total Elimination of Nuclear Weapons','ELIMINATION-OF-NUCLEAR',NULL,'','2020-09-26','Y','/un/day-for-the-total-elimination-of-nuclear-weapons.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/68/32',NULL,'2018-09-11','Y'),(2659,'intl-org','un','international','international',NULL,'World Tourism Day','WORLD-TOURISM-DAY',NULL,'','2020-09-27','Y','/un/world-tourism-day.php',0,'UN Member States','N','','','',NULL,'2018-09-11','Y'),(2660,'intl-org','un','international','international',NULL,'International Day for Universal Access to Information','ACCESS-TO-INFORMATION',NULL,'','2020-09-28','Y','/un/day-for-universal-access-to-information.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0023/002352/235297e.pdf',NULL,'2018-09-11','Y'),(2661,'intl-org','un','international','international',NULL,'World Rabies Day','WORLD-RABIES-DAY',NULL,'','2020-09-28','Y','/un/world-rabies-day.php',0,'UN Member States','N','','','',NULL,'2018-09-11','Y'),(2662,'intl-org','un','international','international',NULL,'World Maritime Day','WORLD-MARITIME-DAY',NULL,'','2020-09-26','','/un/world-maritime-day.php',0,'UN Member States','N','','','last Thursday of September\nhttp://www.un.org/en/events/maritimeday/',NULL,'2018-09-11','Y'),(2663,'intl-org','un','international','international',NULL,'International Translation Day','TRANSLATION-DAY',NULL,'','2020-09-30','Y','/un/international-translation-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/71/288',NULL,'2018-09-11','Y'),(2664,'intl-org','un','international','international',NULL,'International Day of Older Persons','DAY-OF-OLDER-PERSONS',NULL,'','2020-10-01','Y','/un/international-day-of-older-persons.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/45/106',NULL,'2018-09-11','Y'),(2665,'intl-org','un','international','international',NULL,'World Habitat Day','WORLD-HABITAT-DAY',NULL,'','2020-10-07','','/un/world-habitat-day.php',0,'UN Member States','N','','','first Monday in October\nhttp://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/40/202',NULL,'2018-09-11','Y'),(2666,'intl-org','un','international','international',NULL,'International Day of Non-Violence','DAY-OF-NON-VIOLENCE',NULL,'','2020-10-02','Y','/un/international-day-of-non-violence.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/61/271',NULL,'2018-09-11','Y'),(2667,'intl-org','un','international','international',NULL,'World Teachers’ Day','WORLD-TEACHERS-DAY',NULL,'','2020-10-05','Y','/international/world-teachers-day.php',1,'UN Member States','N','','','http://unesdoc.unesco.org/images/0009/000957/095720eo.pdf#page=5',NULL,'2018-09-11','Y'),(2668,'intl-org','un','international','international',NULL,'World Post Day','WORLD-POST-DAY',NULL,'','2020-10-09','Y','/un/world-post-day.php',0,'UN Member States','N','','','http://www.un.org/en/events/postday/',NULL,'2018-09-11','Y'),(2669,'intl-org','un','international','international',NULL,'World Mental Health Day','WORLD-MENTAL-HEALTH-DAY',NULL,'','2020-10-10','Y','/un/world-mental-health-day.php',0,'UN Member States','N','','','http://www.who.int/mental_health/world-mental-health-day/en/',NULL,'2018-09-11','Y'),(2670,'intl-org','un','international','international',NULL,'International Day of the Girl Child','DAY-OF-THE-GIRL-CHILD',NULL,'','2020-10-11','Y','/un/international-day-of-the-girl-child.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/66/170',NULL,'2018-09-11','Y'),(2671,'intl-org','un','international','international',NULL,'International Day for Disaster Reduction','DISASTER-REDUCTION',NULL,'','2020-10-13','Y','/un/international-day-for-disaster-reduction.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/64/200',NULL,'2018-09-11','Y'),(2672,'intl-org','un','international','international',NULL,'World Migratory Bird Day','WORLD-MIGRATORY-BIRD-DAY',NULL,'','2020-10-12','','/un/world-migratory-bird-day.php',0,'UN Member States','N','','','second Saturday of October',NULL,'2018-09-11','Y'),(2673,'intl-org','un','international','international',NULL,'International Day of Rural Women','DAY-OF-RURAL-WOMEN',NULL,'','2020-10-15','Y','/un/international-day-of-rural-women.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/62/136',NULL,'2018-09-11','Y'),(2674,'intl-org','un','international','international',NULL,'World Food Day','WORLD-FOOD-DAY',NULL,'','2020-10-16','Y','/international/world-food-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/35/70',NULL,'2018-09-11','Y'),(2675,'intl-org','un','international','international',NULL,'International Day for the Eradication of Poverty','ERADICATION-OF-POVERTY',NULL,'','2020-10-17','Y','/un/international-day-for-the-eradication-of-poverty.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/47/196',NULL,'2018-09-11','Y'),(2676,'intl-org','un','international','international',NULL,'World Statistics Day','WORLD-STATISTICS-DAY',NULL,'','2020-10-20','','/un/world-statistics-day.php',0,'UN Member States','N','','','every five years, beginning in 2010\nhttp://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/69/282',NULL,'2018-09-11','Y'),(2677,'intl-org','un','international','international',NULL,'United Nations Day','UNITED-NATIONS-DAY',NULL,'','2020-10-24','Y','/international/united-nations-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/168%20(II)',NULL,'2018-09-11','Y'),(2678,'intl-org','un','international','international',NULL,'World Development Information Day','DEVELOPMENT-INFORMATION',NULL,'','2020-10-24','Y','/un/world-development-information-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/3038%20(XXVII)',NULL,'2018-09-11','Y'),(2679,'intl-org','un','international','international',NULL,'World Day for Audiovisual Heritage','DAY-AUDIOVISUAL-HERITAGE',NULL,'','2020-10-27','Y','/un/world-day-for-audiovisual-heritage.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0014/001428/142825E.pdf',NULL,'2018-09-11','Y'),(2680,'intl-org','un','international','international',NULL,'World Cities Day','WORLD-CITIES-DAY',NULL,'','2020-10-31','Y','/un/world-cities-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/68/239',NULL,'2018-09-11','Y'),(2681,'intl-org','un','international','international',NULL,'International Day to End Impunity for Crimes against Journalists','CRIMES-AGAINST-JOURNALIST',NULL,'','2020-11-02','Y','/un/day-to-end-impunity-for-crimes-against-journalists.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/68/163',NULL,'2018-09-11','Y'),(2682,'intl-org','un','international','international',NULL,'World Tsunami Awareness Day','TSUNAMI-AWARENESS-DAY',NULL,'','2020-11-05','Y','/un/world-tsunami-awareness-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/70/203',NULL,'2018-09-11','Y'),(2683,'intl-org','un','international','international',NULL,'International Day for Preventing the Exploitation of the Environment in War and Armed Conflict','THE-ENVIRONMENT-IN-WAR',NULL,'','2020-11-06','Y','/un/day-for-preventing-the-exploitation-of-the-environment-in-war.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/56/4',NULL,'2018-09-11','Y'),(2684,'intl-org','un','international','international',NULL,'World Science Day for Peace and Development','SCIENCE-PEACE-DEVELOPMENT',NULL,'','2020-11-10','Y','/un/world-science-day-for-peace-and-development.php',0,'UN Member States','N','','','http://unesdoc.unesco.org/images/0012/001246/124687e.pdf#page=51',NULL,'2018-09-11','Y'),(2685,'intl-org','un','international','international',NULL,'World Diabetes Day','WORLD-DIABETES-DAY',NULL,'','2020-11-14','Y','/un/world-diabetes-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/61/225',NULL,'2018-09-11','Y'),(2686,'intl-org','un','international','international',NULL,'International Day for Tolerance','DAY-FOR-TOLERANCE',NULL,'','2020-11-16','Y','/un/international-day-for-tolerance.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/51/95',NULL,'2018-09-11','Y'),(2687,'intl-org','un','international','international',NULL,'World Philosophy Day','WORLD-PHILOSOPHY-DAY',NULL,'','2020-11-21','','/un/world-philosophy-day.php',0,'UN Member States','N','world-philosophy-day.jpg','Pixabay','third Thursday in November\nhttp://unesdoc.unesco.org/images/0014/001428/142825e.pdf#page=86',NULL,'2018-09-11','Y'),(2688,'intl-org','un','international','international',NULL,'World Toilet Day','WORLD-TOILET-DAY',NULL,'','2020-11-19','Y','/un/world-toilet-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/67/291',NULL,'2018-09-11','Y'),(2689,'intl-org','un','international','international',NULL,'World Day of Remembrance for Road Traffic Victims','ROAD-TRAFFIC-VICTIMS',NULL,'','2020-11-17','Y','/un/world-day-of-remembrance-for-road-traffic-victims.php',0,'UN Member States','N','','','(third Sunday in November)\nhttp://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/60/5',NULL,'2018-09-11','Y'),(2690,'intl-org','un','international','international',NULL,'Africa Industrialization Day','AFRICA-INDUSTRIALIZATION-DAY',NULL,'','2020-11-20','Y','/un/africa-industrialization-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/44/237',NULL,'2018-09-11','Y'),(2691,'intl-org','un','international','international',NULL,'Universal Children’s Day','UNIVERSAL-CHILDRENS-DAY',NULL,'','2020-11-20','Y','/un/universal-childrens-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/836(IX)',NULL,'2018-09-11','Y'),(2692,'intl-org','un','international','international',NULL,'World Television Day','WORLD-TELEVISION-DAY',NULL,'','2020-11-21','Y','/international/world-television-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/836(IX)',NULL,'2018-09-11','Y'),(2693,'intl-org','un','international','international',NULL,'International Day for the Elimination of Violence against Women','VIOLENCE-AGAINST-WOMEN',NULL,'','2020-11-25','Y','/un/day-for-the-elimination-of-violence-against-women.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/54/134',NULL,'2018-09-11','Y'),(2694,'intl-org','un','international','international',NULL,'International Day of Solidarity with the Palestinian People','SOLIDARITY-WITH-PALESTINIAN',NULL,'','2020-11-29','Y','/un/day-of-solidarity-with-the-palestinian-people.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/32/40',NULL,'2018-09-11','Y'),(2695,'intl-org','un','international','international',NULL,'Day of Remembrance for all Victims of Chemical Warfare','VICTIMS-CHEMICAL-WARFARE',NULL,'','2020-11-30','Y','/un/day-of-remembrance-for-all-victims-of-chemical-warfare.php',0,'UN Member States','N','','','https://www.opcw.org/fileadmin/OPCW/CSP/C-10/en/C-10_5.pdf',NULL,'2018-09-11','Y'),(2696,'intl-org','un','international','international',NULL,'World AIDS Day','WORLD-AIDS-DAY',NULL,'','2020-12-01','Y','/international/world-aids-day.php',1,'UN Member States','N','','','',NULL,'2018-09-11','Y'),(2697,'intl-org','un','international','international',NULL,'International Day for the Abolition of Slavery','ABOLITION-OF-SLAVERY',NULL,'','2020-12-02','Y','/un/international-day-for-the-abolition-of-slavery.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/317(IV)',NULL,'2018-09-11','Y'),(2698,'intl-org','un','international','international',NULL,'International Day of Persons with Disabilities','PERSONS-WITH-DISABILITIES',NULL,'','2020-12-03','Y','/un/international-day-of-persons-with-disabilities.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/47/3',NULL,'2018-09-11','Y'),(2699,'intl-org','un','international','international',NULL,'International Volunteer Day for Economic and Social Development','SOCIAL-DEVELOPMENT',NULL,'','2020-12-05','Y','/un/volunteer-day-for-economic-and-social-development.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/40/212',NULL,'2018-09-11','Y'),(2700,'intl-org','un','international','international',NULL,'World Soil Day','WORLD-SOIL-DAY',NULL,'','2020-12-05','Y','/un/world-soil-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/68/232',NULL,'2018-09-11','Y'),(2701,'intl-org','un','international','international',NULL,'International Civil Aviation Day','CIVIL-AVIATION-DAY',NULL,'','2020-12-07','Y','/un/international-civil-aviation-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/51/33',NULL,'2018-09-11','Y'),(2702,'intl-org','un','international','international',NULL,'International Day of Commemoration and Dignity of the Victims of the Crime of Genocide','CRIME-OF-GENOCIDE',NULL,'','2020-12-09','Y','/un/day-of-commemoration-and-dignity-of-the-victims-of-the-crime-of-genocide.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/69/323',NULL,'2018-09-11','Y'),(2703,'intl-org','un','international','international',NULL,'International Anti-Corruption Day','ANTI-CORRUPTION-DAY',NULL,'','2020-12-09','Y','/un/international-anti-corruption-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/58/4',NULL,'2018-09-11','Y'),(2704,'intl-org','un','international','international',NULL,'Human Rights Day','HUMAN-RIGHTS-DAY',NULL,'','2020-12-10','Y','/international/human-rights-day.php',1,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/423%20(V)',NULL,'2018-09-11','Y'),(2705,'intl-org','un','international','international',NULL,'International Mountain Day','MOUNTAIN-DAY',NULL,'','2020-12-11','Y','/un/international-mountain-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/57/245',NULL,'2018-09-11','Y'),(2706,'intl-org','un','international','international',NULL,'International Day of Neutrality','DAY-OF-NEUTRALITY',NULL,'','2020-12-12','Y','/un/international-day-of-neutrality.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/71/275',NULL,'2018-09-11','Y'),(2707,'intl-org','un','international','international',NULL,'International Universal Health Coverage Day','HEALTH-COVERAGE-DAY',NULL,'','2020-12-12','Y','/un/international-universal-health-coverage-day.php',0,'UN Member States','N','','','http://undocs.org/A/RES/72/138',NULL,'2018-09-11','Y'),(2708,'intl-org','un','international','international',NULL,'International Migrants Day','MIGRANTS-DAY',NULL,'','2020-12-18','Y','/un/international-migrants-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/55/93',NULL,'2018-09-11','Y'),(2709,'intl-org','un','international','international',NULL,'Arabic Language Day','ARABIC-LANGUAGE-DAY',NULL,'','2020-12-18','Y','/un/arabic-language-day.php',0,'UN Member States','N','','','http://www.un.org/ar/events/arabiclanguageday/index.shtml',NULL,'2018-09-11','Y'),(2710,'intl-org','un','international','international',NULL,'International Human Solidarity Day','HUMAN-SOLIDARITY-DAY',NULL,'','2020-12-20','Y','/un/international-human-solidarity-day.php',0,'UN Member States','N','','','http://www.un.org/en/ga/search/view_doc.asp?symbol=A/RES/60/209',NULL,'2018-09-11','Y'),(2744,'market','nasdaq','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'National','Y','martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2756,'market','nyse','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','/us/memorial-day.php',1,'National','Y','memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2757,'market','nyse','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'ND','Y','us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2759,'market','nyse','us','Americas','','Thanksgiving','THANKSGIVING',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'Religious','Y','thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2514,'market','mcx','india','Asia Pacific','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(2753,'market','nyse','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'National','Y','martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2754,'market','nyse','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'National','Y','presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2755,'market','nyse','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'Religious','Y','good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(2762,'market','lse','uk','Europe','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'National','E','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','','2012-10-14','Y'),(2761,'market','lse','uk','Europe','','Christmas Eve','CHRISTMAS-EVE',NULL,NULL,'2020-12-24','Y','/us/christmas.php',1,'Religious','E','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2741,'market','lse','uk','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'Religious','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2740,'market','lse','uk','Europe','','Summer Bank Holiday','SUMMER-BANK-HOLIDAY',NULL,NULL,'2020-08-31','','/uk/summer-bank-holiday.php',0,'National','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2739,'market','lse','uk','Europe','','Spring Bank Holiday','SPRING-BANK-HOLIDAY',NULL,NULL,'2020-05-25','','/uk/may-spring-bank-holiday.php',0,'National','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2734,'market','dax','germany','Europe','','New Year\'s Eve','NEW-YEARS-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'OB','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2732,'market','dax','germany','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2726,'market','dax','germany','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,'Frankfurt Stock Exchange Germany','','2012-10-14','Y'),(2725,'market','euronext','france','Europe','','Christmas Holiday','CHRISTMAS-DAY',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14',''),(2723,'market','euronext','france','Europe','','Labor day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2717,'market','asx','australia','Asia Pacific','','Queen\'s Birthday','QUEENS-BIRTHDAY-QLD',NULL,NULL,'2020-06-08','','/australia/queens-birthday.php',1,'RH','Y','queens-birthday.jpg',NULL,NULL,'','2012-10-14','Y'),(2713,'market','asx','australia','Asia Pacific','','Australia Day OBS','AUSTRALIA-DAY',NULL,'','2020-01-27','Y','/australia/australia-day.php',1,'ND','Y','australia-flag.gif',NULL,NULL,'','2012-10-14','Y'),(2517,'market','mcx','india','Asia Pacific','','Id-ul-Fitr (Ramzan ID)','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2516,'market','mcx','india','Asia Pacific','','Dr.Baba Saheb Ambedkar Jayanti','AMBEDKAR-JAYANTI',NULL,NULL,'2020-04-14','Y','/india/ambedkar-jayanti.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2513,'market','mcx','india','Asia Pacific','','Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-25',NULL,'/sikh/guru-nanak-birthday.php',NULL,'RH','M',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2512,'market','mcx','india','Asia Pacific','','Diwali-Balipratipada','DIWALI',NULL,'','2020-11-12','','/india/diwali.php',1,'NH','M','diwali.jpg',NULL,NULL,'','2012-10-06','Y'),(2511,'market','mcx','india','Asia Pacific','','Diwali-Laxmi Pujan**','DIWALI',NULL,'','2020-11-11','','/india/diwali.php',1,'NH','M','diwali.jpg',NULL,'','','2012-10-06','Y'),(2510,'market','mcx','india','Asia Pacific','','Dasara','DUSSEHRA',NULL,NULL,'2020-10-22',NULL,'/india/dussehra.php',NULL,'NH','M',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2509,'market','mcx','india','Asia Pacific','','Mathatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,'','2020-10-02','Y','/india/gandhi-jayanti.php',1,'NH','Y','mahatma-gandhi.jpg',NULL,NULL,'','2012-10-06','Y'),(2508,'market','mcx','india','Asia Pacific','','Muharram','MUHARRAM',NULL,NULL,'2020-09-10',NULL,'/india/muharram.php',NULL,'NH','M',NULL,NULL,NULL,NULL,'2018-02-02',''),(2507,'market','mcx','india','Asia Pacific','','Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-09-17','','/india/ganesh-chaturthi.php',1,'RH','M',NULL,NULL,NULL,'','2012-10-15','Y'),(2506,'market','mcx','india','Asia Pacific','','Bakri Id / Eid ul-Adha','EID-UL-ADHA',NULL,NULL,'2020-09-25','','/singapore/hari-raya-haji.php',1,'NH','M',NULL,NULL,NULL,'','2012-10-06','Y'),(2505,'market','mcx','india','Asia Pacific','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-08-15','Y','/india/independence-day.php',1,'ND','Y','india-flag.gif',NULL,NULL,'','2012-09-23',''),(2504,'market','mcx','india','Asia Pacific','','Maharashtra Day','MAHARASHTRA-DIN',NULL,NULL,'2020-05-01','Y','/india/maharashtra-din.php',NULL,'RH','M',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2503,'market','mcx','india','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-09-23','Y'),(2501,'market','mcx','india','Asia Pacific','','Holi','HOLI',NULL,'','2020-03-06','','/india/holi.php',1,'RH','M','holi.jpg',NULL,NULL,'','2012-09-23','Y'),(2502,'market','mcx','india','Asia Pacific','','Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-02','','/india/mahavir-jayanti.php',0,'RH','M',NULL,NULL,NULL,'','2012-09-23','Y'),(2500,'market','mcx','india','Asia Pacific','','Maha Shivaratri','MAHA-SHIVARATRI',NULL,'','2020-02-21','','/india/maha-shivratri.php',1,'NH','M','maha-shivaratri.jpg',NULL,NULL,'','2012-09-23','Y'),(2499,'market','mcx','india','Asia Pacific','','Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',1,'ND','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2498,'market','mcx','india','Asia Pacific','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','E','new-years-day.jpg',NULL,NULL,'','2012-09-23',''),(2495,'market','bse','india','Asia Pacific','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(2494,'market','bse','india','Asia Pacific','','Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-25',NULL,'/sikh/guru-nanak-birthday.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2493,'market','bse','india','Asia Pacific','','Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-13',NULL,'/india/ram-navami.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2492,'market','bse','india','Asia Pacific','','Id-ul-Fitr (Ramzan ID)','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2491,'market','bse','india','Asia Pacific','','Diwali-Balipratipada','DIWALI',NULL,'','2020-11-12','','/india/diwali.php',1,'NH','Y','diwali.jpg',NULL,NULL,'','2012-10-06','Y'),(2490,'market','bse','india','Asia Pacific','','Diwali-Laxmi Pujan**','DIWALI',NULL,'','2020-11-11','','/india/diwali.php',1,'NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','','2012-10-06','Y'),(2489,'market','bse','india','Asia Pacific','','Dasara','DUSSEHRA',NULL,NULL,'2020-10-22',NULL,'/india/dussehra.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2488,'market','bse','india','Asia Pacific','','Mathatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,'','2020-10-02','Y','/india/gandhi-jayanti.php',1,'NH','Y','mahatma-gandhi.jpg',NULL,NULL,'','2012-10-06','Y'),(2486,'market','bse','india','Asia Pacific','','Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-09-17','','/india/ganesh-chaturthi.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(2487,'market','bse','india','Asia Pacific','','Muharram','MUHARRAM',NULL,NULL,'2020-09-10',NULL,'/india/muharram.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02',''),(2485,'market','bse','india','Asia Pacific','','Bakri Id / Eid ul-Adha','EID-UL-ADHA',NULL,NULL,'2020-09-25','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2484,'market','bse','india','Asia Pacific','','Dr.Baba Saheb Ambedkar Jayanti','AMBEDKAR-JAYANTI',NULL,NULL,'2020-04-14','Y','/india/ambedkar-jayanti.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2483,'market','bse','india','Asia Pacific','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-08-15','Y','/india/independence-day.php',1,'ND','Y','india-flag.gif',NULL,NULL,'','2012-09-23',''),(2482,'market','bse','india','Asia Pacific','','Maharashtra Day','MAHARASHTRA-DIN',NULL,NULL,'2020-05-01','Y','/india/maharashtra-din.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2481,'market','bse','india','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-09-23','Y'),(2480,'market','bse','india','Asia Pacific','','Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-02','','/india/mahavir-jayanti.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2479,'market','bse','india','Asia Pacific','','Holi','HOLI',NULL,'','2020-03-06','','/india/holi.php',1,'RH','Y','holi.jpg',NULL,NULL,'','2012-09-23','Y'),(2478,'market','bse','india','Asia Pacific','','Maha Shivaratri','MAHA-SHIVARATRI',NULL,'','2020-02-21','','/india/maha-shivratri.php',1,'NH','Y','maha-shivaratri.jpg',NULL,NULL,'','2012-09-23','Y'),(2477,'market','bse','india','Asia Pacific','','Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',1,'ND','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2475,'market','nse','india','Asia Pacific','','Id-ul-Fitr (Ramzan ID)','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2474,'market','nse','india','Asia Pacific','','Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2473,'market','nse','india','Asia Pacific','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(2472,'market','nse','india','Asia Pacific','','Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-25',NULL,'/sikh/guru-nanak-birthday.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2469,'market','nse','india','Asia Pacific','','Diwali-Balipratipada','DIWALI',NULL,'','2020-11-12','','/india/diwali.php',1,'NH','Y','diwali.jpg',NULL,NULL,'','2012-10-06','Y'),(2467,'market','nse','india','Asia Pacific','','Dasara','DUSSEHRA',NULL,NULL,'2020-10-22',NULL,'/india/dussehra.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2468,'market','nse','india','Asia Pacific','','Diwali-Laxmi Pujan**','DIWALI',NULL,'','2020-11-11','','/india/diwali.php',1,'NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','','2012-10-06','Y'),(2476,'market','nse','india','Asia Pacific','','Dr.Baba Saheb Ambedkar Jayanti','AMBEDKAR-JAYANTI',NULL,NULL,'2020-04-14','Y','/india/ambedkar-jayanti.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2465,'market','nse','india','Asia Pacific','','Muharram','MUHARRAM',NULL,NULL,'2020-09-10',NULL,'/india/muharram.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02',''),(2466,'market','nse','india','Asia Pacific','','Mathatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,'','2020-10-02','Y','/india/gandhi-jayanti.php',1,'NH','Y','mahatma-gandhi.jpg',NULL,NULL,'','2012-10-06','Y'),(2464,'market','nse','india','Asia Pacific','','Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-09-17','','/india/ganesh-chaturthi.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(2463,'market','nse','india','Asia Pacific','','Bakri Id / Eid ul-Adha','EID-UL-ADHA',NULL,NULL,'2020-09-25','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2461,'market','nse','india','Asia Pacific','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-08-15','Y','/india/independence-day.php',1,'ND','Y','india-flag.gif',NULL,NULL,'','2012-09-23',''),(2460,'market','nse','india','Asia Pacific','','Maharashtra Day','MAHARASHTRA-DIN',NULL,NULL,'2020-05-01','Y','/india/maharashtra-din.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2458,'market','nse','india','Asia Pacific','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-09-23','Y'),(2457,'market','nse','india','Asia Pacific','','Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-02','','/india/mahavir-jayanti.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2456,'market','nse','india','Asia Pacific','','Holi','HOLI',NULL,'','2020-03-06','','/india/holi.php',1,'NH','Y','holi.jpg',NULL,NULL,'','2012-09-23','Y'),(2454,'market','nse','india','Asia Pacific','','Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',1,'ND','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2455,'market','nse','india','Asia Pacific','','Maha Shivaratri','MAHA-SHIVARATRI',NULL,'','2020-02-21','','/india/maha-shivratri.php',1,'NH','Y','maha-shivaratri.jpg',NULL,NULL,'','2012-09-23','Y'),(2773,'country','international','international','international',NULL,'World Diabetes Day','WORLD-DIABETES-DAY',1,'X','2020-11-14','Y','/who/world-diabetes-day.php',1,'International','N','world-diabetes-day.jpg','health.mil',NULL,NULL,'2014-08-14','Y'),(1773,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1169,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1147,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(931,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2266,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2248,'bank-geo','telangana','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2247,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2246,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2245,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2244,'bank-geo','telangana','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2241,'bank-geo','telangana','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-13',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2240,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2238,'bank-geo','telangana','india','Asia Pacific',NULL,'Durga Ashtami','DURGA-ASHTAMI',NULL,NULL,'2020-10-24',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2236,'bank-geo','telangana','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2234,'bank-geo','telangana','india','Asia Pacific',NULL,'Muharam','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2226,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2225,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2220,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2219,'bank-geo','telangana','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2218,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2217,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2216,'bank-geo','telangana','india','Asia Pacific',NULL,'Babu Jagjivan Ram\'s Birthday','BABU-JAGJIVAN-RAMS-BIRTHDAY',NULL,NULL,'2020-04-05',NULL,'/india/babu-jagjivan-rams-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2215,'bank-geo','telangana','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2208,'bank-geo','telangana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2207,'bank-geo','telangana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2206,'bank-geo','telangana','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2205,'bank-geo','telangana','india','Asia Pacific',NULL,'Sankranti','SANKRANTI',NULL,NULL,'2020-01-15',NULL,'/india/pongal.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2194,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Ayudha Pooja',NULL,NULL,NULL,'2020-10-25',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2193,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2190,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2189,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Vinayaka Chaturthi','VINAYAKA-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2184,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2181,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2179,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2176,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2175,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2174,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2168,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Telugu New Year\'s Day','TELUGU-NEW-YEAR',NULL,NULL,'2020-03-25',NULL,'/hindu/ugadi-telugu-new-year.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2162,'bank-geo','tamil-nadu','india','Asia Pacific',NULL,'Uzhavar Thirunal',NULL,NULL,NULL,'2020-01-17',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2139,'bank-geo','sikkim','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2133,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2132,'bank-geo','sikkim','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2129,'bank-geo','sikkim','india','Asia Pacific',NULL,'Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2128,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2123,'bank-geo','sikkim','india','Asia Pacific',NULL,'Bhanu Jayanti',NULL,NULL,NULL,'2020-07-13',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2122,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2119,'bank-geo','sikkim','india','Asia Pacific',NULL,'Saga Dawa',NULL,NULL,NULL,'2020-05-29',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2117,'bank-geo','sikkim','india','Asia Pacific',NULL,'State Day',NULL,NULL,NULL,'2020-05-16',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2115,'bank-geo','sikkim','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2113,'bank-geo','sikkim','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2109,'bank-geo','sikkim','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2106,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2103,'bank-geo','sikkim','india','Asia Pacific',NULL,'Sonam Lochhar',NULL,NULL,NULL,'2020-01-25',NULL,NULL,NULL,'RH',NULL,'',NULL,NULL,NULL,'2018-02-02','Y'),(2102,'bank-geo','sikkim','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2101,'bank-geo','sikkim','india','Asia Pacific',NULL,'New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2098,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2095,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2094,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Govardhan Puja','GOVARDHAN-PUJA',NULL,NULL,'2020-11-15',NULL,'/india/govardhan-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2092,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2088,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2084,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2083,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Eid-al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2082,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2078,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2076,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2069,'bank-geo','rajasthan','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2068,'bank-geo','rajasthan','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2065,'bank-geo','rajasthan','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2061,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2059,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2058,'bank-geo','punjab','india','Asia Pacific',NULL,'Parkash Gurpurb of Sri Guru Nanak Dev Ji','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2057,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2049,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2040,'bank-geo','punjab','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2039,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2038,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2037,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2032,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2031,'bank-geo','punjab','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2029,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2026,'bank-geo','punjab','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2025,'bank-geo','punjab','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2023,'bank-geo','odisha','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2022,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2021,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2014,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2013,'bank-geo','odisha','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2009,'bank-geo','odisha','india','Asia Pacific',NULL,'Ganesh Puja','GANESH-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2007,'bank-geo','odisha','india','Asia Pacific',NULL,'Janmastami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2003,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2002,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2000,'bank-geo','odisha','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1999,'bank-geo','odisha','india','Asia Pacific',NULL,'Raja Sankranti','RAJA-SANKRANTI',NULL,NULL,'2020-06-15',NULL,'/india/raja-sankranti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1991,'bank-geo','odisha','india','Asia Pacific',NULL,'Sri Ramnavami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1990,'bank-geo','odisha','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1988,'bank-geo','odisha','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1981,'bank-geo','odisha','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1976,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1975,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1973,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1965,'bank-geo','nagaland','india','Asia Pacific',NULL,'Mahatma Gandhi\'s Birthday','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1964,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1963,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1961,'bank-geo','nagaland','india','Asia Pacific',NULL,'Id-ul- Zuha','ID-UL- ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1957,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1956,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1951,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1950,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1945,'bank-geo','nagaland','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1944,'bank-geo','nagaland','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1936,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1935,'bank-geo','mizoram','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1934,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1929,'bank-geo','mizoram','india','Asia Pacific',NULL,'Durga Puja','DURGA-PUJA',NULL,NULL,'2020-10-26',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1924,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1921,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1919,'bank-geo','mizoram','india','Asia Pacific',NULL,'Remna Ni',NULL,NULL,NULL,'2020-06-30',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1918,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1917,'bank-geo','mizoram','india','Asia Pacific',NULL,'Yma Day','YMA-DAY',NULL,NULL,'2020-06-15',NULL,'/india/yma-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1909,'bank-geo','mizoram','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1905,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1902,'bank-geo','mizoram','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1899,'bank-geo','mizoram','india','Asia Pacific',NULL,'Missionary Day',NULL,NULL,NULL,'2020-01-11',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1898,'bank-geo','mizoram','india','Asia Pacific',NULL,'New Year\'s Celebration','NEW-YEARS-DAY',NULL,NULL,'2020-01-02','Y','/us/new-years-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1896,'bank-geo','meghalaya','india','Asia Pacific',NULL,'U Kiang Nangbah',NULL,NULL,NULL,'2020-12-30',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1895,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Christmas Festival','CHRISTMAS',NULL,NULL,'2020-12-26','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1892,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1888,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1886,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1883,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1882,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1871,'bank-geo','meghalaya','india','Asia Pacific',NULL,'U Triot Sing Day',NULL,NULL,NULL,'2020-07-17',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1869,'bank-geo','meghalaya','india','Asia Pacific',NULL,'Beh Deinkhlam',NULL,NULL,NULL,'2020-07-03',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02',''),(1865,'bank-geo','meghalaya','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1859,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1856,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1853,'bank-geo','meghalaya','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1852,'bank-geo','meghalaya','india','Asia Pacific',NULL,'New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1851,'bank-geo','manipur','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1849,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1848,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1845,'bank-geo','manipur','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1843,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1842,'bank-geo','manipur','india','Asia Pacific',NULL,'Durga Ashtami','DURGA-ASHTAMI',NULL,NULL,'2020-10-24',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1841,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1837,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1835,'bank-geo','manipur','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1833,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1832,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1830,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1829,'bank-geo','manipur','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1822,'bank-geo','manipur','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-02',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1818,'bank-geo','manipur','india','Asia Pacific',NULL,'Yaosang 2nd Day',NULL,NULL,NULL,'2020-03-21',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1817,'bank-geo','manipur','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1813,'bank-geo','manipur','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1812,'bank-geo','manipur','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1811,'bank-geo','manipur','india','Asia Pacific',NULL,'New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1809,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1806,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1803,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1801,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1800,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Dasara','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1799,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1798,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1796,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Moharum','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1787,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1785,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Id-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1784,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1778,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1771,'bank-geo','maharashtra','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1769,'bank-geo','maharashtra','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1768,'bank-geo','maharashtra','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1759,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1756,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1753,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1752,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1749,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Id-ul-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1748,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1743,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Id-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1738,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1733,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1732,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1731,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1730,'bank-geo','madhya-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1724,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1721,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1720,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1717,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1716,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1712,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1711,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1710,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1709,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1704,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1703,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1702,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1701,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1700,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-24',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1697,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1696,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1693,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1690,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1689,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1687,'bank-geo','lakshadweep','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1682,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1680,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1679,'bank-geo','kerala','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1677,'bank-geo','kerala','india','Asia Pacific',NULL,'Vijaya Dasami','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1676,'bank-geo','kerala','india','Asia Pacific',NULL,'Mahanavami','MAHANAVAMI',NULL,NULL,'2020-10-25',NULL,'/india/navaratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1675,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1674,'bank-geo','kerala','india','Asia Pacific',NULL,'Gandhi Jayanthi','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1673,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1670,'bank-geo','kerala','india','Asia Pacific',NULL,'Shree Narayana Guru Jayanti',NULL,NULL,NULL,'2020-09-02',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1659,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1657,'bank-geo','kerala','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1652,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1649,'bank-geo','kerala','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1648,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1647,'bank-geo','kerala','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1645,'bank-geo','kerala','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1639,'bank-geo','karnataka','india','Asia Pacific',NULL,'Id-E-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1636,'bank-geo','karnataka','india','Asia Pacific',NULL,'Naraka Chaturdashi',NULL,NULL,NULL,'2020-11-14',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1632,'bank-geo','karnataka','india','Asia Pacific',NULL,'Vijaya Dasami','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1630,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1629,'bank-geo','karnataka','india','Asia Pacific',NULL,'Mahalaya Amavasye',NULL,NULL,NULL,'2020-09-17',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1627,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1623,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1622,'bank-geo','karnataka','india','Asia Pacific',NULL,'Id-ul-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1621,'bank-geo','karnataka','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1617,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1608,'bank-geo','karnataka','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1606,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1604,'bank-geo','karnataka','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1599,'bank-geo','karnataka','india','Asia Pacific',NULL,'Uttarayana Punya Kaala Sankranthi Festival',NULL,NULL,NULL,'2020-01-15',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1598,'bank-geo','karnataka','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1597,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1596,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1595,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1592,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1591,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Surya Shashthi',NULL,NULL,NULL,'2020-11-20',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1589,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1588,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1584,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1583,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1581,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1580,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Karma Puja',NULL,NULL,NULL,'2020-09-20',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02',''),(1579,'bank-geo','jharkhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1576,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1575,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1573,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1566,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1565,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1559,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1551,'bank-geo','jharkhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1550,'bank-geo','jharkhand','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1548,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1544,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1543,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Friday Following Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-11-06',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1542,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1537,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1534,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Ashoora',NULL,NULL,NULL,'2020-08-29',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1531,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1528,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1525,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1523,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Guru Hargobind Ji\'s Birthday','GURU-GOBIND-SINGH-BIRTHDAY',NULL,NULL,'2020-07-05',NULL,'/sikh/guru-gobind-singh-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1520,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Shab-e-Qadr',NULL,NULL,NULL,'2020-05-21',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1512,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Vaisakhi',NULL,NULL,NULL,'2020-04-13',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1508,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1506,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1505,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1503,'bank-geo','jammu-and-kashmir','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1499,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1497,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1496,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1494,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1491,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1489,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1487,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1485,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1481,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1476,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1473,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1468,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1466,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1465,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1461,'bank-geo','himachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1460,'bank-geo','haryana','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1459,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1451,'bank-geo','haryana','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1450,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1449,'bank-geo','haryana','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1448,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1447,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1446,'bank-geo','haryana','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1445,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1438,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1437,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1436,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1435,'bank-geo','haryana','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1434,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1432,'bank-geo','haryana','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1427,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1424,'bank-geo','haryana','india','Asia Pacific',NULL,'Guru Ravidas Jayanti','GURU-RAVIDAS-JAYANTI',NULL,NULL,'2020-02-09',NULL,'/india/guru-ravidas-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1423,'bank-geo','haryana','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1421,'bank-geo','haryana','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1419,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1418,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1417,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1415,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1414,'bank-geo','gujarat','india','Asia Pacific',NULL,'Vikram Samvat New Year','VIKRAM-SAMVAT-NEW-YEAR',NULL,NULL,'2020-11-16',NULL,'/india/vikram-samvat-new-year.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1411,'bank-geo','gujarat','india','Asia Pacific',NULL,'Dusshera','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1410,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1409,'bank-geo','gujarat','india','Asia Pacific',NULL,'Mahatma Gandhi\'s Birthday','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1406,'bank-geo','gujarat','india','Asia Pacific',NULL,'Samvatsari','SAMVATSARI',NULL,NULL,'2020-08-22',NULL,'/india/samvatsari.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1405,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1403,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1399,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1394,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1392,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1387,'bank-geo','gujarat','india','Asia Pacific',NULL,'Holi 2nd Day','HOLI-2ND-DAY',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1384,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1383,'bank-geo','gujarat','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1382,'bank-geo','gujarat','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1381,'bank-geo','gujarat','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1378,'bank-geo','goa','india','Asia Pacific',NULL,'Goa Liberation Day','GOA-LIBERATION-DAY',NULL,NULL,'2020-12-19',NULL,'/india/goa-liberation-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1377,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1376,'bank-geo','goa','india','Asia Pacific',NULL,'Feast of St. Francis Xavier','FEAST-OF-ST-FRANCIS-XAVIER',NULL,NULL,'2020-12-03',NULL,'/india/feast-of-st-francis-xavier.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1375,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1373,'bank-geo','goa','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1366,'bank-geo','goa','india','Asia Pacific',NULL,'Ganesh Chaturthi','GANESH-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1365,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1364,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1362,'bank-geo','goa','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1360,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1359,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1355,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1354,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1351,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1348,'bank-geo','goa','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1347,'bank-geo','goa','india','Asia Pacific',NULL,'Gudi Padava','GUDI-PADWA',NULL,NULL,'2020-03-25',NULL,'/hindu/ugadi-telugu-new-year.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1346,'bank-geo','goa','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1333,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1332,'bank-geo','delhi','india','Asia Pacific',NULL,'Deepavali / Diwali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1330,'bank-geo','delhi','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1329,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1328,'bank-geo','delhi','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1324,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1321,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1319,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1318,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1313,'bank-geo','delhi','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1312,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1307,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1306,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1304,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1303,'bank-geo','delhi','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1302,'bank-geo','delhi','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1301,'bank-geo','delhi','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1299,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1297,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Daman And Diu Liberation Day','DAMAN-AND-DIU-LIBERATION-DAY',NULL,NULL,'2020-12-19',NULL,'/india/daman-and-diu-liberation-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1288,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1287,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1284,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1282,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1278,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1273,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1264,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1262,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1259,'bank-geo','daman-and-diu','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1254,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Guru Nanak\'s Birthday','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1244,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1243,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1241,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Bakrid','BAKRID',NULL,NULL,'2020-08-12',NULL,'/singapore/hari-raya-haji.php',1,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1237,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1232,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1231,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1229,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1224,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1222,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1221,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1219,'bank-geo','chhattisgarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1216,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1214,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1206,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1205,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1204,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1190,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1189,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1188,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1187,'bank-geo','chandigarh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1185,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1184,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1181,'bank-geo','chandigarh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1180,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1178,'bank-geo','chandigarh','india','Asia Pacific',NULL,'Guru Gobind Singh Birthday','GURU-GOBIND-SINGH-BIRTHDAY',NULL,NULL,'2020-01-02',NULL,'/sikh/guru-gobind-singh-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1177,'bank-geo','bihar','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1176,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1134,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1135,'bank-geo','bihar','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1136,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1144,'bank-geo','bihar','india','Asia Pacific',NULL,'Shri Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1151,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1152,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1156,'bank-geo','bihar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1161,'bank-geo','bihar','india','Asia Pacific',NULL,'Shri Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1162,'bank-geo','bihar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1165,'bank-geo','bihar','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1087,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1086,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1075,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1073,'bank-geo','assam','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1072,'bank-geo','assam','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(1071,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1070,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1066,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1065,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1064,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1062,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1060,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1059,'bank-geo','assam','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1058,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1057,'bank-geo','assam','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1056,'bank-geo','assam','india','Asia Pacific',NULL,'Dol Jatra','DOL-JATRA',NULL,NULL,'2020-03-10',NULL,'/india/dol-jatra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1055,'bank-geo','assam','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1047,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1042,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1041,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1037,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1035,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1030,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1029,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1024,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1022,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1018,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1017,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1013,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1010,'bank-geo','arunachal-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1006,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1001,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Vijaya Dasami','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(1000,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Durgastami','DURGASTAMI',NULL,NULL,'2020-10-24',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(996,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Vinayaka Chavithi','VINAYAKA-CHATURTHI',NULL,NULL,'2020-08-22',NULL,'/india/ganesh-chaturthi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(990,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(986,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(981,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(975,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(974,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(972,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(971,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(969,'bank-geo','andhra-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(962,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(960,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(959,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(932,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(933,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(939,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(943,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(945,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(947,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(955,'bank-geo','andaman-and-nicobar','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Religious',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2774,'country','algeria','algeria','Africa','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2775,'country','algeria','algeria','Africa','','Amazigh New Year','AMAZIGH-NEW-YEAR',NULL,NULL,'2020-01-12','','/algeria/amazigh-new-year.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2776,'country','algeria','algeria','Africa','','Labour Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2777,'country','algeria','algeria','Africa','','Prophet Muhammad\'s Birthday','MUHAMMADS-BIRTHDAY',NULL,NULL,'2020-10-29','','/india/milad-un-nabi.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2778,'country','algeria','algeria','Africa','','Eid al-Fitr','EID-UL-FITR',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-06','Y'),(2779,'country','algeria','algeria','Africa','','Eid al-Fitr Holiday','EID-UL-FITR-HOLIDAY',NULL,NULL,'2020-05-25','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-06','Y'),(2780,'country','algeria','algeria','Africa','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-05','Y','/algeria/independence-day.php',0,'ND','Y','algeria-flag.gif',NULL,NULL,'','2012-09-23','Y'),(2786,'state','andhra-pradesh','india','Asia Pacific',NULL,'Sankranti / Pongal','MAKAR-SANKRANTI',NULL,NULL,'2020-01-15',NULL,'/india/pongal.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2781,'country','algeria','algeria','Africa','','Eid al-Adha','EID-AL-ADHA',NULL,'','2020-07-31','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2782,'country','algeria','algeria','Africa','','Eid al-Adha Holiday','EID-AL-ADHA-HOLIDAY',NULL,'','2020-08-01','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2783,'country','algeria','algeria','Africa','','Islamic New Year','ISLAMIC-NEW-YEAR',NULL,NULL,'2020-08-20','','/india/muharram.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2784,'country','algeria','algeria','Africa','','Ashura','ASHURA',NULL,NULL,'2020-08-29','','/india/muharram.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(2785,'country','algeria','algeria','Africa','','Revolution Day','REVOLUTION-DAY',NULL,'','2020-10-01','Y','/algeria/revolution-day.php',0,'NH','Y','',NULL,NULL,'','2012-09-23','Y'),(2787,'state','andhra-pradesh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'NH','Y','india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2788,'state','andhra-pradesh','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-03-04',NULL,'/india/maha-shivratri.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2789,'state','andhra-pradesh','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-21',NULL,'/india/holi.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2790,'state','andhra-pradesh','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-19',NULL,'/us/good-friday.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2791,'state','andhra-pradesh','india','Asia Pacific',NULL,'May Day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2792,'state','andhra-pradesh','india','Asia Pacific',NULL,'Babu Jagjivan Ram\'s Birthday','BABU-JAGJIVAN-RAMS-BIRTHDAY',NULL,NULL,'2020-04-05',NULL,'/india/babu-jagjivan-rams-birthday.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2793,'state','andhra-pradesh','india','Asia Pacific',NULL,'Id-ul-Fitr','EID-AL-FITR',NULL,NULL,'2020-06-05',NULL,'/singapore/hari-raya-puasa.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2794,'state','andhra-pradesh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'NH','Y','india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2795,'state','andhra-pradesh','india','Asia Pacific',NULL,'Vinayaka Chavithi','VINAYAKA-CHATURTHI',NULL,NULL,'2020-08-24',NULL,'/india/ganesh-chaturthi.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2796,'state','andhra-pradesh','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'NH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2797,'state','andhra-pradesh','india','Asia Pacific',NULL,'Deepavali','DIWALI',NULL,NULL,'2020-10-27',NULL,'/india/diwali.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2798,'state','andhra-pradesh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2799,'state','andhra-pradesh','india','Asia Pacific',NULL,'Durgastami','DURGASTAMI',NULL,NULL,'2020-10-06',NULL,'/hindu/durga-puja.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2800,'state','andhra-pradesh','india','Asia Pacific',NULL,'Vijaya Dasami Dussehra','DUSSEHRA',NULL,NULL,'2020-10-08',NULL,'/india/dussehra.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2801,'state','andhra-pradesh','india','Asia Pacific',NULL,'Bhogi','BHOGI',NULL,NULL,'2020-01-14',NULL,'/india/pongal.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2802,'state','andhra-pradesh','india','Asia Pacific','','Ugadi','UGADI',NULL,NULL,'2020-04-06','','/hindu/ugadi-telugu-new-year.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2803,'state','andhra-pradesh','india','Asia Pacific','','Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-13','','/india/ram-navami.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2804,'state','andhra-pradesh','india','Asia Pacific','','Eid Milad un Nabi','MILAD-UN-NABI',NULL,NULL,'2020-11-10','','/india/milad-un-nabi.php',1,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2805,'state','andhra-pradesh','india','Asia Pacific','','Bakri Id (Eid ul-Azha)','EID-UL-ADHA',NULL,NULL,'2020-08-12','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2806,'state','andhra-pradesh','india','Asia Pacific','','Dr B.R. Ambedkar Jayanthi','AMBEDKAR-JAYANTI',NULL,NULL,'2020-04-14','Y','/india/ambedkar-jayanti.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2807,'state','andhra-pradesh','india','Asia Pacific',NULL,'Annual Closing of Accounts Day','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'RH','Y',NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2808,'state','karnataka','india','Asia Pacific',NULL,'Uttarayana Punya Kaala Sankranthi Festival',NULL,NULL,NULL,'2020-01-15',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2809,'state','karnataka','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'NH',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2810,'state','karnataka','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-03-04',NULL,'/india/maha-shivratri.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2811,'state','karnataka','india','Asia Pacific',NULL,'Mahaveera Jayanthi','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-17',NULL,'/india/mahavir-jayanti.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2812,'state','karnataka','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-19',NULL,'/us/good-friday.php',NULL,'NH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2813,'state','karnataka','india','Asia Pacific',NULL,'Basava Jayanthi',NULL,NULL,NULL,'2020-04-16',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2814,'state','karnataka','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'NH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2815,'state','karnataka','india','Asia Pacific',NULL,'Khutba-e-Ramzan',NULL,NULL,NULL,'2020-06-16',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2816,'state','karnataka','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'NH',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2817,'state','karnataka','india','Asia Pacific',NULL,'Bakrid','EID-AL-ADHA',NULL,NULL,'2020-08-12',NULL,'/singapore/hari-raya-haji.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2818,'state','karnataka','india','Asia Pacific',NULL,'Varasiddhi Vinayaka Vrata',NULL,NULL,NULL,'2020-09-02',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2819,'state','karnataka','india','Asia Pacific',NULL,'Last Day of Moharamm',NULL,NULL,NULL,'2020-09-10',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2820,'state','karnataka','india','Asia Pacific',NULL,'Gandhi Jayanthi','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'NH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2821,'state','karnataka','india','Asia Pacific',NULL,'Mahalaya Amavasye',NULL,NULL,NULL,'2020-09-28',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2822,'state','karnataka','india','Asia Pacific',NULL,'Maha Navami, Ayudhapooja','MAHA-NAVAMI',NULL,NULL,'2020-10-07',NULL,'/india/navaratri.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2823,'state','karnataka','india','Asia Pacific',NULL,'Vijayadashami','DUSSEHRA',NULL,NULL,'2020-10-08',NULL,'/india/dussehra.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2824,'state','karnataka','india','Asia Pacific',NULL,'Maharshi Valmiki Jayanti','MAHARSHI-VALMIKI-JAYANTI',NULL,NULL,'2020-10-13',NULL,'/india/maharishi-valmikis-birthday.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2825,'state','karnataka','india','Asia Pacific',NULL,'Kannada Rajyothsava',NULL,NULL,NULL,'2020-11-01','Y',NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2826,'state','karnataka','india','Asia Pacific',NULL,'Naraka Chaturdashi',NULL,NULL,NULL,'2020-10-27',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2827,'state','karnataka','india','Asia Pacific',NULL,'Balipadyami, Deepavali','DIWALI',NULL,NULL,'2020-10-27',NULL,'/india/diwali.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2828,'state','karnataka','india','Asia Pacific',NULL,'Id-E-Milad','EID-E-MILAD',NULL,NULL,'2020-11-10',NULL,'/india/milad-un-nabi.php',NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2829,'state','karnataka','india','Asia Pacific',NULL,'Kanakadasa Jayanthi',NULL,NULL,NULL,'2020-11-15',NULL,NULL,NULL,'RH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2830,'state','karnataka','india','Asia Pacific',NULL,'Christmas Day','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'NH',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2831,'state','karnataka','india','Asia Pacific','','Dr B.R. Ambedkar\'s Birthday','AMBEDKAR-JAYANTI',NULL,NULL,'2020-04-14','Y','/india/ambedkar-jayanti.php',0,'RH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2832,'state','karnataka','india','Asia Pacific','','Chandramana Ugadi','UGADI',NULL,NULL,'2020-04-06','','/hindu/ugadi-telugu-new-year.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2833,'bank-org','bank-of-america','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2834,'bank-org','bank-of-america','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-21','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2835,'bank-org','bank-of-america','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-18','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2836,'bank-org','bank-of-america','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-27','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2837,'bank-org','bank-of-america','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-02','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2838,'bank-org','bank-of-america','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-14','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2839,'bank-org','bank-of-america','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2840,'bank-org','bank-of-america','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-28','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2841,'bank-org','bank-of-america','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2843,'bank-org','chase-bank','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2842,'bank-org','bank-of-america','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2844,'bank-org','chase-bank','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-21','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2845,'bank-org','chase-bank','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-18','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2846,'bank-org','chase-bank','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-27','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2847,'bank-org','chase-bank','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2848,'bank-org','chase-bank','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-02','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2849,'bank-org','chase-bank','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-14','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2850,'bank-org','chase-bank','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2851,'bank-org','chase-bank','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-28','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2852,'bank-org','chase-bank','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2853,'bank-org','citibank','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2854,'bank-org','citibank','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-21','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2855,'bank-org','citibank','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-18','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2856,'bank-org','citibank','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-27','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2857,'bank-org','citibank','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2858,'bank-org','citibank','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-02','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2859,'bank-org','citibank','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-14','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2860,'bank-org','citibank','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2861,'bank-org','citibank','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-28','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2862,'bank-org','citibank','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2863,'bank-org','citibank','us','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2864,'bank-org','citibank','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2865,'bank-org','wells-fargo-bank','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2866,'bank-org','wells-fargo-bank','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-21','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2867,'bank-org','wells-fargo-bank','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-18','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2868,'bank-org','wells-fargo-bank','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-27','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2869,'bank-org','wells-fargo-bank','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2870,'bank-org','wells-fargo-bank','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-02','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2871,'bank-org','wells-fargo-bank','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-14','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2872,'bank-org','wells-fargo-bank','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2873,'bank-org','wells-fargo-bank','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-28','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2877,'bank-org','capital-one-bank','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2875,'bank-org','wells-fargo-bank','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2876,'bank-org','citibank','us','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2878,'bank-org','capital-one-bank','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-21','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2879,'bank-org','capital-one-bank','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-18','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2880,'bank-org','capital-one-bank','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-27','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2881,'bank-org','capital-one-bank','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2882,'bank-org','capital-one-bank','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-02','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2883,'bank-org','capital-one-bank','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-14','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2884,'bank-org','capital-one-bank','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2885,'bank-org','capital-one-bank','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-28','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2886,'bank-org','capital-one-bank','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2887,'bank-org','suntrust-bank','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2888,'bank-org','suntrust-bank','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-21','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2889,'bank-org','suntrust-bank','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-18','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2890,'bank-org','suntrust-bank','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-27','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2891,'bank-org','suntrust-bank','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2892,'bank-org','suntrust-bank','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-02','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2893,'bank-org','suntrust-bank','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-14','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2894,'bank-org','suntrust-bank','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2895,'bank-org','suntrust-bank','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-28','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2896,'bank-org','suntrust-bank','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2897,'bank-org','hsbc-bank','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'NH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2898,'bank-org','hsbc-bank','us','Americas','','M L King Day','M-L-KING-DAY',NULL,'','2020-01-21','','/us/martin-luther-king-day.php',1,'NH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(2899,'bank-org','hsbc-bank','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-18','','/us/presidents-day.php',1,'NH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2900,'bank-org','hsbc-bank','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-27','','/us/memorial-day.php',1,'NH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2901,'bank-org','hsbc-bank','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'ND',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(2902,'bank-org','hsbc-bank','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-02','','/us/labor-day.php',1,'NH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2903,'bank-org','hsbc-bank','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-14','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2904,'bank-org','hsbc-bank','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'NH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2905,'bank-org','hsbc-bank','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-28','','/us/thanksgiving-day.php',1,'NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(2906,'bank-org','hsbc-bank','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'NH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2907,'country','norway','norway','Europe','','Palm Sunday','PALM-SUNDAY',NULL,NULL,'2020-04-05','','/christian/palm-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-15','Y'),(2908,'country','norway','norway','Europe','','Christmas Eve','CHRISTMAS-EVE',NULL,NULL,'2020-12-24','Y','/us/christmas.php',1,'OB','N','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2909,'country','norway','norway','Europe','','New Year\'s Eve','NEW-YEAR-EVE',NULL,NULL,'2020-12-31','Y','/us/new-years-day.php',1,'OB','N','new-years-day.jpg',NULL,NULL,'','2012-09-23','Y'),(2910,'country','singapore','singapore','Asia Pacific','','National Day Holiday','NATIONAL-DAY-HOLIDAY',NULL,'','2020-08-10','Y','/singapore/national-day.php',1,'ND','Y','national-day-singapore.jpg',NULL,NULL,'','2012-10-14','Y'),(2911,'country','south-africa','south-africa','Africa','','Women\'s Day Holiday','WOMENS-DAY-HOLIDAY',NULL,NULL,'2020-08-10','Y','/south-africa/womens-day.php',0,'NH',NULL,NULL,NULL,NULL,'','2012-10-14','Y'),(2912,'country','new-zealand','new-zealand','Asia Pacific','','ANZAC Day Holiday','ANZAC-DAY-HOLIDAY',NULL,NULL,'2020-04-27','','/australia/anzac-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2913,'country','new-zealand','new-zealand','Asia Pacific','','Boxing Day Holiday','BOXING-DAY-HOLIDAY',NULL,NULL,'2020-12-28','Y','/canada/boxing-day.php',1,'NH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2915,'country','indonesia','indonesia','Asia Pacific','','Eid Holiday','EID-UL-FITAR-D5',NULL,NULL,'2020-05-27','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(2916,'country','japan','japan','Asia Pacific','','Constitution Memorial Day Holiday','CONSTITUTION-MEMORIAL-HOLIDAY',NULL,NULL,'2020-05-06','Y','/japan/constitution-memorial-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2917,'country','kenya','kenya','Africa','','Diwali (For Hindus only)','DIWALI',NULL,NULL,'2020-11-14','','/india/diwali.php',1,'RH','Y','diwali.jpg',NULL,NULL,'','2012-10-14','Y'),(2918,'country','kenya','kenya','Africa','','Eid al-Adha (For Muslims only)','EID-AL-ADHA',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2919,'country','malaysia','malaysia','Asia Pacific','','Hari Raya Puasa Holiday','HARI-RAYA-PUASA-HOLIDAY',NULL,NULL,'2020-05-26','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-14','Y'),(2921,'country','russia','russia','Europe',NULL,'Intl. Women\'s Day Holiday','INTL-WOMENS-DAY',NULL,'','2020-03-09','Y','/international/international-womens-day.php',1,'NH','Y','',NULL,NULL,NULL,'2014-08-14','Y'),(2922,'country','spain','spain','Europe','','All Saints Day Holiday','ALL-SAINTS-HOLIDAY',NULL,NULL,'2020-11-02','Y','/philippines/all-saints-day.php',1,'NH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2923,'country','thailand','thailand','Asia Pacific','','Makha Bucha Day Holiday','MAKHA-BUCHA',NULL,NULL,'2020-02-10','','/thailand/makha-bucha.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2925,'country','pakistan','pakistan','Asia Pacific','','Pakistan Day','PAKISTAN-DAY',NULL,NULL,'2020-03-23','','/pakistan/pakistan-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2926,'country','pakistan','pakistan','Asia Pacific','','Labour Day','LABOUR-DAY',NULL,'','2020-05-01','Y','/uk/may-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2927,'country','pakistan','pakistan','Asia Pacific','','Eid ul-Fitar','EID-UL-FITAR',NULL,NULL,'2020-05-24','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-06','Y'),(2928,'country','pakistan','pakistan','Asia Pacific','','Eid ul-Fitar Holiday','EID-UL-FITAR-HOLIDAY',NULL,NULL,'2020-05-25','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-06','Y'),(2929,'country','pakistan','pakistan','Asia Pacific','','Eid ul-Fitar Holiday','EID-UL-FITAR-HOLIDAY',NULL,NULL,'2020-05-26','','/singapore/hari-raya-puasa.php',1,'NH','Y','hari-raya-puasa.jpg',NULL,NULL,'','2012-10-06','Y'),(2930,'country','pakistan','pakistan','Asia Pacific','','Eid ul-Adha','EID-UL-ADHA',NULL,NULL,'2020-07-31','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2931,'country','pakistan','pakistan','Asia Pacific','','Eid ul-Adha Holiday','EID-UL-ADHA',NULL,NULL,'2020-08-01','','/singapore/hari-raya-haji.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2932,'country','pakistan','pakistan','Asia Pacific','','Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-14','','/pakistan/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'','2012-10-06','Y'),(2933,'country','pakistan','pakistan','Asia Pacific','','First Day of Ashura','ASHURA',NULL,NULL,'2020-08-29','','/india/muharram.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(2934,'country','pakistan','pakistan','Asia Pacific','','Second Day of Ashura','ASHURA',NULL,NULL,'2020-08-30','','/india/muharram.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(2935,'country','pakistan','pakistan','Asia Pacific','','Milad un Nabi','MILAD-UN-NABI',NULL,NULL,'2020-10-29','','/india/milad-un-nabi.php',1,'NH','Y',NULL,NULL,NULL,'','2012-09-23','Y'),(2936,'country','pakistan','pakistan','Asia Pacific','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'RE','R','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(2937,'country','pakistan','pakistan','Asia Pacific','','Quiad-e-Azam Day','QUIAD-E-AZAM-DAY',NULL,NULL,'2020-12-25','','/pakistan/quiad-e-azam-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-06','Y'),(2938,'country','pakistan','pakistan','Asia Pacific','','Day after Christmas','Day-after-Christmas',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'RE','R','christmas.jpg',NULL,NULL,'','2012-10-06','Y'),(2939,'country','netherlands','netherlands','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2940,'country','netherlands','netherlands','Europe','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'RH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(2941,'country','netherlands','netherlands','Europe','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2942,'country','netherlands','netherlands','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',0,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2943,'country','netherlands','netherlands','Europe','','King\'s Birthday','KINGS-BIRTHDAY',NULL,NULL,'2020-04-27','Y','/netherlands/kings-birthday.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2944,'country','netherlands','netherlands','Europe','','Liberation Day','LIBERATION-DAY',NULL,NULL,'2020-05-05','Y','/netherlands/liberation-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2945,'country','netherlands','netherlands','Europe','','Ascension Day','ASCENSION-DAY',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2946,'country','netherlands','netherlands','Europe','','Whit Sunday','WHIT-SUNDAY',NULL,NULL,'2020-05-31','','/france/whit-sunday.php',0,'OB','N',NULL,NULL,NULL,'','2012-10-14','Y'),(2947,'country','netherlands','netherlands','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2948,'country','netherlands','netherlands','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2949,'country','netherlands','netherlands','Europe','','2nd Day of Christmas','2ND-DAY-CHRISTMAS',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2950,'fun','us','us','Americas','','National Burrito Day','NATIONAL-BURRITO-DAY',1,'X','2020-04-09','','/fun/national-burrito-day.php',1,'OB','N','national-burrito-day.jpg',NULL,'First Thursday of April','','2012-10-15','Y'),(2951,'fun','us','us','Americas','','Sweetest Day','SWEETEST-DAY',1,'X','2020-10-17','','/fun/sweetest-day.php',1,'OB','N','sweetest-day.jpg',NULL,'Third Saturday of October','','2012-10-15','Y'),(2952,'fun','us','us','Americas','','National Beer Day','NATIONAL-BEER-DAY',1,'X','2020-04-07','Y','/fun/national-beer-day.php',1,'OB','N','national-beer-day.jpg',NULL,'','','2012-10-15','Y'),(2760,'market','nyse','us','Americas','','Christmas','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'Religious','Y','christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(2763,'market','tsx','canada','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,'Toronto Stock Exchange, Canada','','2012-10-14','Y'),(2764,'market','tsx','canada','Americas','','Family Day','FAMILY-DAY',NULL,NULL,'2020-02-17','','/canada/family-day.php',0,'RH','Y','family-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2765,'market','tsx','canada','Americas','','Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10','','/us/good-friday.php',1,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(2766,'market','tsx','canada','Americas','','Victoria/Patriots\' Day','VICTORIA-DAY',NULL,'','2020-05-18','','/canada/victoria-day.php',1,'NH','Y','victoria-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2767,'market','tsx','canada','Americas','','Canada Day','CANADA-DAY',NULL,'','2020-07-01','Y','/canada/canada-day.php',1,'ND','Y','canada-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2768,'market','tsx','canada','Americas','','Civic Holiday','CIVIC-HOLIDAY',NULL,'','2020-08-03','','/canada/provincial-day.php',1,'NH','Y','provincial-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2769,'market','tsx','canada','Americas','','Labour Day','LABOR-DAY',NULL,NULL,'2020-09-07','','/canada/labor-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2770,'market','tsx','canada','Americas','','Thanksgiving','THANKSGIVING',NULL,NULL,'2020-10-12','','/canada/thanksgiving-day.php',0,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2771,'market','tsx','canada','Americas','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2772,'market','tsx','canada','Americas','','Boxing Day','BOXING-DAY',NULL,'','2020-12-28','Y','/canada/boxing-day.php',1,'RH','Y','boxing-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2264,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2263,'bank-geo','tripura','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2262,'bank-geo','tripura','india','Asia Pacific',NULL,'Netaji Subhash Chandra Bose Jayanti','NETAJI-SUBHASH-CHANDRA BOSE-JAYANTI',NULL,NULL,'2020-01-23',NULL,'/india/subhas-chandra-bose-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2261,'bank-geo','tripura','india','Asia Pacific',NULL,'Saraswati Puja','VASANT-PANCHAMI',NULL,NULL,'2020-01-30',NULL,'/india/vasant-panchami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2260,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2269,'bank-geo','tripura','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-03-31',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2270,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2271,'bank-geo','tripura','india','Asia Pacific',NULL,'Bangali New Year\'s Day',NULL,NULL,NULL,'2020-04-14',NULL,'/hindu/bihu-bengali-new-year.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2272,'bank-geo','tripura','india','Asia Pacific',NULL,'Garia Puja',NULL,NULL,NULL,'2020-04-21',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2273,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2274,'bank-geo','tripura','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2275,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2276,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2277,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2278,'bank-geo','tripura','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2279,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2280,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2281,'bank-geo','tripura','india','Asia Pacific',NULL,'Kharchi Puja',NULL,NULL,NULL,'2020-07-27',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2282,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2283,'bank-geo','tripura','india','Asia Pacific',NULL,'Ker Puja',NULL,NULL,NULL,'2020-07-07',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02',''),(2284,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2285,'bank-geo','tripura','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2286,'bank-geo','tripura','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2287,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2288,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2289,'bank-geo','tripura','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2290,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2291,'bank-geo','tripura','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2292,'bank-geo','tripura','india','Asia Pacific',NULL,'Mahalaya',NULL,NULL,NULL,'2020-09-17',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2293,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2294,'bank-geo','tripura','india','Asia Pacific',NULL,'Maha Saptami',NULL,NULL,NULL,'2020-10-23',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2295,'bank-geo','tripura','india','Asia Pacific',NULL,'Maha Ashtami','MAHA-ASHTAMI',NULL,NULL,'2020-10-24',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2296,'bank-geo','tripura','india','Asia Pacific',NULL,'Maha Navami','MAHA-NAVAMI',NULL,NULL,'2020-10-24',NULL,'/india/navaratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2297,'bank-geo','tripura','india','Asia Pacific',NULL,'Vijaya Dasami','DUSSEHRA',NULL,NULL,'2020-10-25',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2298,'bank-geo','tripura','india','Asia Pacific',NULL,'Lakshmi Puja','LAKSHMI-PUJA',NULL,NULL,'2020-10-31',NULL,'/india/lakshmi-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2299,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2300,'bank-geo','tripura','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2301,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2302,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2303,'bank-geo','tripura','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2304,'bank-geo','tripura','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2305,'bank-geo','tripura','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2321,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Holika Dahan','HOLIKA-DAHAN',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2320,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2319,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Maha Shivaratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2318,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2317,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2316,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2315,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2322,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2323,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2324,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Hajarat Ali\'s Birthday','HAJARAT-ALI-BIRTHDAY',NULL,NULL,'2020-03-09',NULL,'/india/hajarat-ali-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2325,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2326,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Shri Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2327,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Mahavir Jayanti','MAHAVIR-JAYANTI',NULL,NULL,'2020-04-06',NULL,'/india/mahavir-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2328,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2329,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Yearly Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2330,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2331,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2332,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2333,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2334,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2335,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2336,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2337,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2338,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2339,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2340,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2341,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2342,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Eid al-Adha','EID-AL-ADHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2343,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2344,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Raksha Bandhan','RAKSHA-BANDHAN',NULL,NULL,'2020-08-03',NULL,'/india/raksha-bandhan.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2345,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Krishna Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2346,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2347,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2348,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2349,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2350,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2351,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Maha Navami','MAHA-NAVAMI',NULL,NULL,'2020-10-24',NULL,'/india/navaratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2352,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Dussehra','DUSSEHRA',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2353,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2354,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2355,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Govardhan Puja','GOVARDHAN-PUJA',NULL,NULL,'2020-11-15',NULL,'/india/govardhan-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2356,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Bhai Dooj','BHAI-DOOJ',NULL,NULL,'2020-11-16',NULL,'/hindu/bhai-dooj.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2357,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2358,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2359,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Guru Nanak Jayanti','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2360,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2361,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2362,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2363,'bank-geo','uttar-pradesh','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2364,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2365,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2366,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2367,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2368,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Maha Shivratri','MAHA-SHIVARATRI',NULL,NULL,'2020-02-21',NULL,'/india/maha-shivratri.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2369,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2370,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Holi','HOLI',NULL,NULL,'2020-03-10',NULL,'/india/holi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2371,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2372,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2373,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Ram Navami','RAM-NAVAMI',NULL,NULL,'2020-04-02',NULL,'/india/ram-navami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2374,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2375,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Annual Closing of Bank Accounts','ANNUAL-CLOSING-OF-BANK-ACCOUNTS',NULL,NULL,'2020-04-01',NULL,'/india/annual-closing-of-bank-accounts.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2376,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2377,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2378,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2379,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2380,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Buddha Pournima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2381,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2382,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2383,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2384,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2385,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2386,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2387,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2388,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2389,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2390,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Janmashtami','JANMASHTAMI',NULL,NULL,'2020-08-11',NULL,'/india/janmashtami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2391,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2392,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2393,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2394,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2395,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2396,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2397,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Deepawali','DIWALI',NULL,NULL,'2020-11-14',NULL,'/india/diwali.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2398,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2399,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Eid-e-Milad','EID-E-MILAD',NULL,NULL,'2020-10-30',NULL,'/india/milad-un-nabi.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2400,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Guru Nanak\'s Birthday','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2401,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2402,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2403,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2404,'bank-geo','uttarakhand','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2405,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Birth Day of Swami Vivekananda','SWAMI-VIVEKANANDA-BIRTHDAY',NULL,NULL,'2020-01-12',NULL,'',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2406,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2407,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Saraswati Puja / Sree Panchami','VASANT-PANCHAMI',NULL,NULL,'2020-01-30',NULL,'/india/vasant-panchami.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2408,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Birthday of Netaji','BIRTHDAY-OF-NETAJI',NULL,NULL,'2020-01-23',NULL,'/india/subhas-chandra-bose-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2409,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Republic Day','REPUBLIC-DAY',NULL,NULL,'2020-01-26','Y','/india/republic-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2410,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-01-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2411,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2412,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-02-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2413,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Doljatra','DOL-JATRA',NULL,NULL,'2020-03-10',NULL,'/india/dol-jatra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2414,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2415,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-03-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2416,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Good Friday','GOOD-FRIDAY',NULL,NULL,'2020-04-10',NULL,'/us/good-friday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2417,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2418,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-04-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2419,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Buddha Purnima','BUDDHA-PURNIMA',NULL,NULL,'2020-05-07',NULL,'/singapore/vesak-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2420,'bank-geo','west-bengal','india','Asia Pacific',NULL,'May Day / Labour day','LABOR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2421,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Rabindranath Tagore Jayanti',NULL,NULL,NULL,'2020-05-07',NULL,'/india/rabindranath-tagore-birthday.php',0,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2422,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-09',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2423,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-05-23',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2424,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-13',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2425,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Eid al-Fitr','EID-AL-FITR',NULL,NULL,'2020-05-25',NULL,'/singapore/hari-raya-puasa.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2426,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-06-27',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2427,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-11',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2428,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-07-25',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2429,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-08',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2430,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-08-15','Y','/india/independence-day.php',NULL,'Regional',NULL,'india-flag.gif',NULL,NULL,NULL,'2018-02-02','Y'),(2431,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Eid al-Zuha','EID-AL-ZUHA',NULL,NULL,'2020-07-31',NULL,'/singapore/hari-raya-haji.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2432,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-08-22',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2433,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2434,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Muharram','MUHARRAM',NULL,NULL,'2020-08-30',NULL,'/india/muharram.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2435,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-09-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2436,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Mahatma Gandhi Jayanti','GANDHI-JAYANTI',NULL,NULL,'2020-10-02','Y','/india/gandhi-jayanti.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2437,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Mahalaya',NULL,NULL,NULL,'2020-09-17',NULL,NULL,NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2438,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-10',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2439,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Durgapuja Saptami','DURGAPUJA-SAPTAMI',NULL,NULL,'2020-10-05',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2440,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Durgapuja Astami','DURGA-ASHTAMI',NULL,NULL,'2020-10-06',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2441,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Durgapuja Nabami','DURGAPUJA-NAVAMI',NULL,NULL,'2020-10-07',NULL,'/hindu/durga-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2442,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Vijaya Dashami','VIJAYA-DASHAMI',NULL,NULL,'2020-10-26',NULL,'/india/dussehra.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2443,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Lakshmi Puja','LAKSHMI-PUJA',NULL,NULL,'2020-10-31',NULL,'/india/lakshmi-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2444,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-10-24',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2445,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Kalipuja','KALI-PUJA',NULL,NULL,'2020-11-14',NULL,'/india/kali-puja.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2446,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-14',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2447,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Birth Day of Guru Nanak','GURU-NANAKS-BIRTHDAY',NULL,NULL,'2020-11-30',NULL,'/sikh/guru-nanak-birthday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2448,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-11-28',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2449,'bank-geo','west-bengal','india','Asia Pacific',NULL,'2nd Saturday Bank Holiday','SECOND-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-12',NULL,'/india/second-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2450,'bank-geo','west-bengal','india','Asia Pacific',NULL,'4th Saturday Bank Holiday','FOURTH-SATURDAY-BANK-HOLIDAY',NULL,NULL,'2020-12-26',NULL,'/india/fourth-saturday-bank-holiday.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2451,'bank-geo','west-bengal','india','Asia Pacific',NULL,'Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',NULL,'Regional',NULL,NULL,NULL,NULL,NULL,'2018-02-02','Y'),(2953,'bank-geo','kerala','india','Asia Pacific',NULL,'Thiru Onam','THIRU-ONAM',NULL,NULL,'2020-08-31',NULL,'/india/onam.php',1,'RH',NULL,'onam.jpg',NULL,NULL,NULL,'2018-02-02','Y'),(487,'religious','sikh','sikh',NULL,'sikh','Guru Tegh Bahadur Birthday','GURU-TEGH-BAHADUR-BIRTHDAY',NULL,NULL,'2020-01-01','','/sikh/guru-tegh-bahadur-birthday.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(488,'religious','sikh','sikh',NULL,'sikh','Guru Arjan Dev Birthday','GURU-ARJAN-DEV-BIRTHDAY',NULL,NULL,'2020-01-01','','/sikh/guru-arjan-dev-birthday.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(489,'religious','sikh','sikh',NULL,'sikh','Guru Amar Das Birthday','GURU-AMAR-DAS-BIRTHDAY',NULL,NULL,'2020-01-01','','/sikh/guru-amar-das-birthday.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(490,'religious','sikh','sikh',NULL,'sikh','Guru Hargobind Birthday','GURU-HARGOBIND-BIRTHDAY',NULL,NULL,'2020-01-01','','/sikh/guru-hargobind-birthday.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(491,'religious','sikh','sikh',NULL,'sikh','Guru Har Krishan Birthday','GURU-HAR-KRISHAN-BIRTHDAY',NULL,NULL,'2020-01-01','','/sikh/guru-har-krishan-birthday.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(492,'religious','sikh','sikh',NULL,'sikh','Guru Ram Das Birthday','GURU-RAM-DAS-BIRTHDAY',NULL,NULL,'2020-01-01','','/sikh/guru-ram-das-birthday.php',0,'Religious',NULL,NULL,NULL,NULL,'','2012-10-15',''),(493,'religious','sikh','sikh',NULL,'sikh','Diwali','DIWALI',NULL,NULL,'2020-11-14','','/india/diwali.php',1,'RH',NULL,'diwali.jpg',NULL,NULL,'','2012-10-15','Y'),(494,'religious','sikh','sikh',NULL,'sikh','Guru Nanak Birthday','GURU-NANAK-BIRTHDAY',NULL,NULL,'2020-11-30','','/sikh/guru-nanak-birthday.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(495,'religious','sikh','sikh',NULL,'sikh','Martyrdom of Guru Tegh Bahadur Sahib','MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB',NULL,NULL,'2020-11-24','Y','/sikh/martyrdom-of-guru-tegh-bahadur-sahib.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(658,'religious','buddhist','buddhist',NULL,'buddhist','Chinese New Year','CHINESE-NEW-YEAR',NULL,NULL,'2020-02-05','','/china/chinese-new-year.php',1,'RH',NULL,'chinese-new-year.jpg',NULL,NULL,'','2012-10-15','Y'),(655,'religious','hindu','hindu',NULL,'hindu','Chhath Puja','CHHATH-PUJA',NULL,NULL,'2020-11-20','','/hindu/chhath-puja.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(656,'religious','christian','christian',NULL,'christian','Christ the King','CHRIST-THE-KING',NULL,NULL,'2020-11-22','','/christian/christ-the-king.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(657,'religious','christian','christian',NULL,'christian','Ash Wednesday','ASH-WEDNESDAY',NULL,NULL,'2020-02-26','','/christian/ash-wednesday.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(659,'religious','buddhist','buddhist',NULL,'buddhist','Obon','OBON',NULL,NULL,'2020-08-15','','/buddhist/obon.php',0,'RH',NULL,'obon.jpg','flickr.com/14360805@N05',NULL,'','2012-10-15','Y'),(660,'religious','sikh','sikh',NULL,'sikh','Holi','HOLI',NULL,NULL,'2020-03-10','','/india/holi.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(661,'religious','sikh','sikh',NULL,'sikh','Birthday of Guru Angad Dev','BIRTHDAY-OF-GURU-ANGAD-DEV',NULL,NULL,'2020-04-18','Y','/sikh/birthday-of-guru-angad-dev.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(662,'religious','sikh','sikh',NULL,'sikh','Birth of the Guru Granth','BIRTH-OF-THE-GURU-GRANTH',NULL,NULL,'2020-10-20','Y','/sikh/birth-of-the-guru-granth.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(684,'religious','hindu','hindu',NULL,'hindu','Holika Dahan','HOLIKA-DAHAN',NULL,NULL,'2020-03-09','','/india/holi.php',1,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(685,'religious','hindu','hindu',NULL,'hindu','Varalakshmi Vrat','VARALAKSHMI-VRAT',NULL,NULL,'2020-07-31','','/hindu/varalakshmi-vrat.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(686,'religious','hindu','hindu',NULL,'hindu','Vishwakarma Puja','VISHWAKARMA-PUJA',NULL,NULL,'2020-09-16','','/hindu/vishwakarma-puja.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(687,'religious','hindu','hindu',NULL,'hindu','Geeta Jayanti','GEETA-JAYANTI',NULL,NULL,'2020-12-25','','/hindu/geeta-jayanti.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(688,'religious','hindu','hindu',NULL,'hindu','Dhanu Sankranti','DHANU-SANKRANTI',NULL,NULL,'2020-12-15','','/hindu/dhanu-sankranti.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(754,'religious','hindu','hindu',NULL,'hindu','Thaipusam','THAIPUSAM',NULL,NULL,'2020-02-08','','/hindu/thaipusam.php',0,'RH',NULL,NULL,NULL,NULL,'','2012-10-15','Y'),(2965,'country','austria','austria','Europe','','Feast of the Immaculate Conception','FEAST-IMMACULATE-CONCEPTION',NULL,NULL,'2020-12-08','Y','/austria/feast-of-the-immaculate-conception.php',0,'NH','Y',NULL,NULL,NULL,'','2019-12-05','Y'),(2964,'country','austria','austria','Europe','','Assumption Day','ASSUMPTION-OF-MARY',NULL,NULL,'2020-08-15','Y','/us/the-assumption-of-mary.php',1,'RH','Y','the-assumption-of-mary.jpg',NULL,NULL,'','2012-10-14','Y'),(2963,'country','austria','austria','Europe','','Corpus Christi','CORPUS-CHRISTI',NULL,NULL,'2020-06-11','','/us/corpus-christi.php',1,'RH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2962,'country','austria','austria','Europe','','Whit Monday','WHIT-MONDAY',NULL,NULL,'2020-06-01','','/germany/pentecost-monday.php',1,'NH','Y',NULL,NULL,NULL,'','2012-10-14','Y'),(2961,'country','austria','austria','Europe','','Ascension Day','ASCENSION-DAY',NULL,NULL,'2020-05-21','','/romania/ascension-day.php',1,'NH','Y','ascension-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2960,'country','austria','austria','Europe','','Labour Day ','LABOUR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2959,'country','austria','austria','Europe','','Easter Monday','EASTER-MONDAY',NULL,NULL,'2020-04-13','','/christian/easter-monday.php',1,'NH','Y','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2958,'country','austria','austria','Europe','','Easter Sunday','EASTER-SUNDAY',NULL,NULL,'2020-04-12','','/us/easter.php',1,'OB','N','easter.jpg',NULL,NULL,'','2012-10-14','Y'),(2957,'country','austria','austria','Europe','','Austrian National Day','AUSTRIAN-NATIONAL-DAY',NULL,NULL,'2020-10-26','Y','/austria/austrian-national-day.php',0,'ND','Y',NULL,NULL,NULL,'','2019-12-05','Y'),(2956,'country','austria','austria','Europe','','Pentecost','PENTECOST',NULL,NULL,'2020-05-31','','/christian/pentecost.php',1,'RH','N',NULL,NULL,NULL,'','2012-10-15','Y'),(2955,'country','austria','austria','Europe','','Epiphany','EPIPHANY',NULL,NULL,'2020-01-06','Y','/spain/epiphany.php',1,'OB','N','epiphany.jpg',NULL,NULL,'','2012-10-14','Y'),(2954,'country','austria','austria','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2969,'country','belarus','belarus','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2966,'country','austria','austria','Europe','','St. Stephen\'s Day','ST-STEPHENS-DAY',NULL,NULL,'2020-12-26','Y','/italy/st-stephens-day.php',1,'NH','Y',NULL,NULL,NULL,'Y','2012-10-14','Y'),(2967,'country','austria','austria','Europe','','All Saints Day','ALL-SAINTS-DAY',NULL,NULL,'2020-11-01','Y','/philippines/all-saints-day.php',1,'RH','Y','all-saints-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2968,'country','austria','austria','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2970,'country','belarus','belarus','Europe','','Unity Day of Belarus and Russia','UNITY-DAY-BELARUS-AND-RUSSIA',NULL,NULL,'2020-04-02','Y','/belarus/unity-day.php',0,'NH','Y',NULL,NULL,NULL,'','2019-12-05','Y'),(2971,'country','belarus','belarus','Europe','','Constitution Day of Belarus','CONSTITUTION-DAY-BELARUS',NULL,NULL,'2020-03-15','Y','/belarus/constitution-day.php',0,'NH','Y',NULL,NULL,NULL,'','2012-10-15','Y'),(2972,'country','belarus','belarus','Europe','','Orthodox Christmas Day','ORTHODOX-CHRISTMAS',NULL,NULL,'2020-01-07','Y','/russia/orthodox-christmas.php',0,'NH','Y','christmas.jpg',NULL,NULL,'','2019-12-05','Y'),(2973,'country','belarus','belarus','Europe','','Women\'s Day','WOMENS-DAY',NULL,NULL,'2020-03-08','Y','/belarus/womens-day.php',1,'NH','Y','international-womens-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2974,'country','belarus','belarus','Europe','','Commemoration Day (Radonitsa)','COMMEMORATION-DAY',NULL,NULL,'2020-04-28','','/belarus/commemoration-day.php',0,'OB','','',NULL,NULL,'','2012-10-14','Y'),(2975,'country','belarus','belarus','Europe','','Labour Day','LABOUR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',1,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2976,'country','belarus','belarus','Europe','','Victory Day','VICTORY-DAY',NULL,NULL,'2020-05-09','Y','/belarus/victory-day.php',0,'NH','Y',NULL,NULL,NULL,'','2019-12-05','Y'),(2977,'country','belarus','belarus','Europe','','Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-07-03','Y','/belarus/independence-day.php',0,'ND','Y',NULL,NULL,NULL,'Y','2012-10-14','Y'),(2978,'country','belarus','belarus','Europe','','October Revolution Day','OCTOBER-REVOLUTION-DAY',NULL,NULL,'2020-11-07','Y','/belarus/revolution-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2979,'country','belarus','belarus','Europe','','Christmas Day','CHRISTMAS-DAY',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2980,'country','bulgaria','bulgaria','Europe','','New Year\'s Day','NEW-YEARS-DAY',NULL,NULL,'2020-01-01','Y','/us/new-years-day.php',1,'NH','Y','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2981,'country','bulgaria','bulgaria','Europe','','Liberation Day','LIBERATION-DAY',NULL,NULL,'2020-03-02','','/bulgaria/liberation-day.php',0,'ND','Y','',NULL,NULL,'','2012-10-14','Y'),(2982,'country','bulgaria','bulgaria','Europe','','Orthodox Good Friday','ORTHODOX-GOOD-FRIDAY',NULL,NULL,'2020-04-17','','/romania/orthodox-good-friday.php',0,'NH','Y','good-friday.jpg',NULL,NULL,'','2012-10-14','Y'),(2983,'country','bulgaria','bulgaria','Europe','','Orthodox Easter Saturday','ORTHODOX-EASTER-SATURDAY',NULL,NULL,'2020-04-18','','/romania/orthodox-easter-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2984,'country','bulgaria','bulgaria','Europe','','Orthodox Easter Sunday','ORTHODOX-EASTER-SUNDAY',NULL,NULL,'2020-04-19','','/romania/orthodox-easter-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2985,'country','bulgaria','bulgaria','Europe','','Orthodox Easter Monday','ORTHODOX-EASTER-MONDAY',NULL,NULL,'2020-04-20','','/romania/orthodox-easter-monday.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2986,'country','bulgaria','bulgaria','Europe','','Labour Day','LABOUR-DAY',NULL,NULL,'2020-05-01','Y','/uk/may-day.php',0,'NH','Y','may-day.jpg',NULL,NULL,'','2012-10-14','Y'),(2987,'country','bulgaria','bulgaria','Europe','','St. George\'s Day','ST-GEORGE-DAY',NULL,NULL,'2020-05-06','Y','/bulgaria/army-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2988,'country','bulgaria','bulgaria','Europe','','Culture and Literacy Day','CULTURE-AND-LITERACY-DAY',NULL,NULL,'2020-05-24','Y','/bulgaria/international-literacy-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2989,'country','bulgaria','bulgaria','Europe','','Unification Day','UNIFICATION-DAY',NULL,NULL,'2020-09-06','Y','/bulgaria/unification-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2990,'country','bulgaria','bulgaria','Europe','','Independence Day','INDEPENDENCE-DAY',NULL,NULL,'2020-09-22','Y','/bulgaria/independence-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2991,'country','bulgaria','bulgaria','Europe','','Day of the Bulgarian Enlighteners','BULGARIAN-ENLIGHTENERS',NULL,NULL,'2020-11-01','Y','/bulgaria/enlighteners-day.php',0,'NH','Y','',NULL,NULL,'','2012-10-14','Y'),(2992,'country','bulgaria','bulgaria','Europe','','Christmas Eve','CHRISTMAS-EVE',NULL,NULL,'2020-12-24','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2993,'country','bulgaria','bulgaria','Europe','','Christmas','CHRISTMAS',NULL,NULL,'2020-12-25','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(2994,'country','bulgaria','bulgaria','Europe','','2nd Day of Christmas','2ND-DAY-CHRISTMAS',NULL,NULL,'2020-12-26','Y','/us/christmas.php',1,'NH','Y','christmas.jpg',NULL,NULL,'','2012-10-14','Y'),(4528,'state','alabama','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4529,'state','alabama','us','Americas','','Martin Luther King, Jr.\'s Birthday/Robert E. Lee','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4530,'state','alabama','us','Americas','','George Washington/Thomas Jefferson\'s Birthday','GEORGE-WASHINGTON',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4531,'state','alabama','us','Americas','','Mardi Gras','MARDI-GRAS',NULL,'','2020-02-25','','/us/mardi-gas.php',0,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4532,'state','alabama','us','Americas','','Confederate Memorial Day','CONFEDERATE-MEMORIAL-DAY',NULL,'','2020-04-27','','us/confederate-memorial-day.php',0,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4533,'state','alabama','us','Americas','','National Memorial Day','NATIONAL-MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4534,'state','alabama','us','Americas','','Jefferson Davis\' Birthday','JEFFERSON-DAVIS-BIRTHDAY',NULL,'','2020-06-01','','/us/jefferson-birthday.php',0,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4535,'state','alabama','us','Americas','','Fourth day of July','FOURTH-DAY-OF-JULY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4536,'state','alabama','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4537,'state','alabama','us','Americas','','Columbus Day / Fraternal Day / American Indian Heritage Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4538,'state','alabama','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4539,'state','alabama','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4540,'state','alabama','us','Americas','','Mrs. Rosa L. Parks Day(Commemoration Only)','ROSA-PARKS-DAY',NULL,'','2020-12-01','','/us/rosa-parks-day.php',0,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4541,'state','alabama','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4542,'state','alaska','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4543,'state','alaska','us','Americas','','MLK Jr.\'s Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4544,'state','alaska','us','Americas','','Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4545,'state','alaska','us','Americas','','Seward\'s Day','SEWARDS-DAY',NULL,'','2020-03-30','','/us/sewards-day.php',0,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4546,'state','alaska','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4547,'state','alaska','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4548,'state','alaska','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4549,'state','alaska','us','Americas','','Alaska Day','ALASKA-DAY',NULL,'','2020-10-18','','/us/alaska-day.php',0,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4550,'state','alaska','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4551,'state','alaska','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4552,'state','alaska','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4553,'state','arizona','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4554,'state','arizona','us','Americas','','Martin Luther King, Jr./Civil Rights Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4555,'state','arizona','us','Americas','','Lincoln/Washington Presidents\' Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4556,'state','arizona','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4557,'state','arizona','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4558,'state','arizona','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4559,'state','arizona','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4560,'state','arizona','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4561,'state','arizona','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4562,'state','arizona','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4751,'state','illinois','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4679,'state','connecticut','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4680,'state','connecticut','us','Americas','','Martin Luther King Jr Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4681,'state','connecticut','us','Americas','','Lincoln\'s Birthday','LINCOLNS-BIRTHDAY',NULL,'','2020-02-12','','/us/lincolns-birthday.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4682,'state','connecticut','us','Americas','','Washington \'s Birthday','WASHINGTONS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4683,'state','connecticut','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(4684,'state','connecticut','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4685,'state','connecticut','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4686,'state','connecticut','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4687,'state','connecticut','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4688,'state','connecticut','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4689,'state','connecticut','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4690,'state','connecticut','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4691,'state','delaware','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4692,'state','delaware','us','Americas','','Martin Luther King Jr Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4693,'state','delaware','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(4694,'state','delaware','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4695,'state','delaware','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4696,'state','delaware','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4697,'state','delaware','us','Americas','','Election Day','ELECTION-DAY',NULL,'','2020-11-03','','/us/election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4698,'state','delaware','us','Americas','','Return Day  (after 12:00 noon Sussex County)','RETURN-DAY',NULL,'','2020-11-05','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4699,'state','delaware','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4700,'state','delaware','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4701,'state','delaware','us','Americas','','Day After Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4702,'state','delaware','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4703,'state','georgia','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4704,'state','georgia','us','Americas','','Martin Luther King Jr\'s Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4705,'state','georgia','us','Americas','','Washington Birthday','WASHINGTON-BIRTHDAY',NULL,'','2020-02-17','','/us/washington-day.php',1,'OB',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4706,'state','georgia','us','Americas','','State Holiday','STATE-HOLIDAY',NULL,'','2020-04-10','','',1,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4707,'state','georgia','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4708,'state','georgia','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4709,'state','georgia','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4710,'state','georgia','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4711,'state','georgia','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4712,'state','georgia','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4713,'state','georgia','us','Americas','','State Holiday','STATE-HOLIDAY',NULL,'','2020-11-27','','/us/state-holiday.php',1,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4714,'state','georgia','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4715,'state','hawaii','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4716,'state','hawaii','us','Americas','','Dr. Martin Luther King Jr\'s Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4717,'state','hawaii','us','Americas','','Presidents Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'OB',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4718,'state','hawaii','us','Americas','','Prince Jonah Kuhio Kalanianaole Day','KUHIO-KALANIANAOLE-DAY',NULL,'','2020-03-26','','/us/kuhio-day.php',1,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4719,'state','hawaii','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(4720,'state','hawaii','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4721,'state','hawaii','us','Americas','','King Kamehameha I Day','KING-KAMEHAMEHA-DAY',NULL,'','2020-06-11','Y','/us/kamehameha-day.php',1,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4722,'state','hawaii','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4723,'state','hawaii','us','Americas','','Statehood Day','STATEHOOD-DAY',NULL,'','2020-08-21','','/us/statehood-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4724,'state','hawaii','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4725,'state','hawaii','us','Americas','','General Election Day','ELECTION-DAY',NULL,'','2020-11-03','','/us/election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4726,'state','hawaii','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4727,'state','hawaii','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4728,'state','hawaii','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4729,'state','idaho','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4730,'state','idaho','us','Americas','','Martin Luther King Jr / Idaho Human Rights Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4731,'state','idaho','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'OB',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4732,'state','idaho','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4733,'state','idaho','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4734,'state','idaho','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4735,'state','idaho','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4736,'state','idaho','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4737,'state','idaho','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4738,'state','idaho','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4739,'state','illinois','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4740,'state','illinois','us','Americas','','Martin Luther King Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4741,'state','illinois','us','Americas','','Lincoln\'s Birthday','LINCOLNS-DAY',NULL,'','2020-02-12','','/us/lincolns-birthday.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4742,'state','illinois','us','Americas','','Washington\'s Birthday(Presidents Day)','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'OB',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4743,'state','illinois','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4744,'state','illinois','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4745,'state','illinois','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4746,'state','illinois','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4747,'state','illinois','us','Americas','','General Election Day','ELECTION-DAY',NULL,'','2020-11-03','','/us/election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4748,'state','illinois','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4749,'state','illinois','us','Americas','','Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4750,'state','illinois','us','Americas','','Thanksgiving Holiday','THANKSGIVING-DAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4752,'state','indiana','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4753,'state','indiana','us','Americas','','Martin Luther King, Jr.Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4754,'state','indiana','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(4755,'state','indiana','us','Americas','','Primary Election Day','PRIMARY-ELECTION-DAY',NULL,'','2020-05-05','','/us/primary-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4756,'state','indiana','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4757,'state','indiana','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4758,'state','indiana','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4759,'state','indiana','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4760,'state','indiana','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4761,'state','indiana','us','Americas','','General Election Day','GENERAL-ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4762,'state','indiana','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4763,'state','indiana','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4764,'state','indiana','us','Americas','','Lincoln\'s Birthday','LINCOLNS-BIRTHDAY',NULL,'','2020-11-27','','/us/lincolns-birthday.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4765,'state','indiana','us','Americas','','Washington\'s Birthday','WASHINGTON-BIRTHDAY',NULL,'','2020-12-24','','/us/washington-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4766,'state','indiana','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4767,'state','iowa','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4768,'state','iowa','us','Americas','','Dr. Martin Luther King, Jr.\'s Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4769,'state','iowa','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4770,'state','iowa','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4771,'state','iowa','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4772,'state','iowa','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4773,'state','iowa','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4774,'state','iowa','us','Americas','','Friday After Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4775,'state','iowa','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4776,'state','kansas','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4777,'state','kansas','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4778,'state','kansas','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4779,'state','kansas','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4780,'state','kansas','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4781,'state','kansas','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4782,'state','kansas','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4783,'state','kansas','us','Americas','','Thanksgiving Holiday','THANKSGIVING-DAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4784,'state','kansas','us','Americas','','Christmas Eve','CHRISTMAS',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4785,'state','kansas','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4786,'state','louisiana','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4787,'state','louisiana','us','Americas','','Birthday of Martin Luther King, Jr.','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4788,'state','louisiana','us','Americas','','Mardi Gras','MARDI-GRAS',NULL,'','2020-02-25','','/us/mardi-gras.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4789,'state','louisiana','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(4790,'state','louisiana','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4791,'state','louisiana','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4792,'state','louisiana','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4793,'state','louisiana','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4794,'state','louisiana','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4795,'state','louisiana','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4796,'state','maine','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4797,'state','maine','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4798,'state','maine','us','Americas','','Washington\'s Birthday (Presidents Day)','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4799,'state','maine','us','Americas','','Patriot\'s Day','PATRIOT-DAY',NULL,'','2020-04-20','','/us/patriot-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4800,'state','maine','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4801,'state','maine','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4802,'state','maine','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4803,'state','maine','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4804,'state','maine','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4805,'state','maine','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4806,'state','maine','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4807,'state','maine','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4808,'state','maryland','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4809,'state','maryland','us','Americas','','Dr. Martin Luther King, Jr., Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'OB',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4810,'state','maryland','us','Americas','','Presidents Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'OB',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4811,'state','maryland','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4812,'state','maryland','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4813,'state','maryland','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4814,'state','maryland','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4815,'state','maryland','us','Americas','','Election Day','GENERAL-ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4816,'state','maryland','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4817,'state','maryland','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4818,'state','maryland','us','Americas','','American Indian Heritage Day','AMERICAN-INDIAN-HERITAGE-DAY',NULL,'','2020-11-27','','/us/american-indian-heritage-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4819,'state','maryland','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4820,'state','massachusetts','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4821,'state','massachusetts','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4822,'state','massachusetts','us','Americas','','Washington\'s Birthday','WASHINGTON-BIRTHDAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4823,'state','massachusetts','us','Americas','','Patriot\'s Day','PATRIOT-DAY',NULL,'','2020-04-20','','/us/patriot-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4824,'state','massachusetts','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4825,'state','massachusetts','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4826,'state','massachusetts','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4827,'state','massachusetts','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4828,'state','massachusetts','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4829,'state','massachusetts','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4830,'state','massachusetts','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4831,'state','michigan','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4832,'state','michigan','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4833,'state','michigan','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'OB',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4834,'state','michigan','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4835,'state','michigan','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4836,'state','michigan','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4837,'state','michigan','us','Americas','','General Election Day','GENERAL-ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4838,'state','michigan','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4839,'state','michigan','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4840,'state','michigan','us','Americas','','Day After Thanksgiving','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4841,'state','michigan','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4842,'state','michigan','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4843,'state','michigan','us','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4844,'state','minnesota','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4845,'state','minnesota','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4846,'state','minnesota','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4847,'state','minnesota','us','Americas','','Emancipation Day','EMANCIPATION-DAY',NULL,'','2020-04-16','','/us/emancipation-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4848,'state','minnesota','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4849,'state','minnesota','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4850,'state','minnesota','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4851,'state','minnesota','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4852,'state','minnesota','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4853,'state','minnesota','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4854,'state','minnesota','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4855,'state','minnesota','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4856,'state','missouri','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4857,'state','missouri','us','Americas','','Martin Luther King, Jr.Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4858,'state','missouri','us','Americas','','Lincoln Day','LINCOLNS-BIRTHDAY',NULL,'','2020-02-12','','/us/lincolns-birthday.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4859,'state','missouri','us','Americas','','Washington \'s Birthday','WASHINGTONS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4860,'state','missouri','us','Americas','','Truman Day','TRUMAN-DAY',NULL,'','2020-05-08','','',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4861,'state','missouri','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4862,'state','missouri','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4863,'state','missouri','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4864,'state','missouri','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4865,'state','missouri','us','Americas','','Veterans Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4866,'state','missouri','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4867,'state','missouri','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4869,'state','montana','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4870,'state','montana','us','Americas','','Martin Luther King Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4871,'state','montana','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4872,'state','montana','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4873,'state','montana','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4874,'state','montana','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4875,'state','montana','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4876,'state','montana','us','Americas','','General Election Day','GENERAL-ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4877,'state','montana','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4878,'state','montana','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4879,'state','montana','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4880,'state','nebraska','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4881,'state','nebraska','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4882,'state','nebraska','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4883,'state','nebraska','us','Americas','','Arbor Day','ARBOR-DAY',NULL,'','2020-04-24','','/us/arbor-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4884,'state','nebraska','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4885,'state','nebraska','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4886,'state','nebraska','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4887,'state','nebraska','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4888,'state','nebraska','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4889,'state','nebraska','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4890,'state','nebraska','us','Americas','','Day After Thanksgiving','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4891,'state','nebraska','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4892,'state','nevada','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4893,'state','nevada','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4894,'state','nevada','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4895,'state','nevada','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4896,'state','nevada','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4897,'state','nevada','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4898,'state','nevada','us','Americas','','Nevada Day','NEVADA-DAY',NULL,'','2020-10-30','','/us/nevada-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4899,'state','nevada','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4900,'state','nevada','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4901,'state','nevada','us','Americas','','Family Day','FAMILY-DAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4902,'state','nevada','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4903,'state','new-hampshire','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4904,'state','new-hampshire','us','Americas','','Martin Luther King Jr./ Civil Rights Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4905,'state','new-hampshire','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4906,'state','new-hampshire','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4907,'state','new-hampshire','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4908,'state','new-hampshire','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4909,'state','new-hampshire','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4910,'state','new-hampshire','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4911,'state','new-hampshire','us','Americas','','Day After Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4912,'state','new-hampshire','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4913,'state','new-york','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4914,'state','new-york','us','Americas','','Martin Luther King Jr Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4915,'state','new-york','us','Americas','','Lincoln\'s Birthday','LINCOLNS-BIRTHDAY',NULL,'','2020-02-12','','/us/lincolns-birthday.php',1,'OB',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4916,'state','new-york','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4917,'state','new-york','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4918,'state','new-york','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4919,'state','new-york','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4920,'state','new-york','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4921,'state','new-york','us','Americas','','Election Day','ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4922,'state','new-york','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4923,'state','new-york','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4924,'state','new-york','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4936,'state','north-dakota','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4937,'state','north-dakota','us','Americas','','Martin Luther King Jr Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4938,'state','north-dakota','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4939,'state','north-dakota','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(4940,'state','north-dakota','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4941,'state','north-dakota','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4942,'state','north-dakota','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4943,'state','north-dakota','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4944,'state','north-dakota','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4945,'state','north-dakota','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4946,'state','north-dakota','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4947,'state','oklahoma','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4948,'state','oklahoma','us','Americas','','Martin Luther King Jr.Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4949,'state','oklahoma','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4950,'state','oklahoma','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4951,'state','oklahoma','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4952,'state','oklahoma','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4953,'state','oklahoma','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4954,'state','oklahoma','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4955,'state','oklahoma','us','Americas','','Thanksgiving Holiday','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4956,'state','oklahoma','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4957,'state','oklahoma','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4958,'state','oregon','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4959,'state','oregon','us','Americas','','Martin Luther King Jr.Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4960,'state','oregon','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4961,'state','oregon','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4962,'state','oregon','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4963,'state','oregon','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4964,'state','oregon','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4965,'state','oregon','us','Americas','','Day After Thanksgiving','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4966,'state','oregon','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4967,'state','rhode-island','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4968,'state','rhode-island','us','Americas','','Dr.Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4969,'state','rhode-island','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4970,'state','rhode-island','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4971,'state','rhode-island','us','Americas','','Victory Day','VICTORY-DAY',NULL,'','2020-08-10','','us/victory-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4972,'state','rhode-island','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4973,'state','rhode-island','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4974,'state','rhode-island','us','Americas','','Election Day','ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(4975,'state','rhode-island','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4976,'state','rhode-island','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4977,'state','rhode-island','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4978,'state','south-dakota','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(4979,'state','south-dakota','us','Americas','','Martin Luther King Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(4980,'state','south-dakota','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4981,'state','south-dakota','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4982,'state','south-dakota','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(4983,'state','south-dakota','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4984,'state','south-dakota','us','Americas','','Native Americans Day','AMERICANS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4985,'state','south-dakota','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4986,'state','south-dakota','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(4987,'state','south-dakota','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(4999,'state','tennessee','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5000,'state','tennessee','us','Americas','','Martin Luther King Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5001,'state','tennessee','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5002,'state','tennessee','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(5003,'state','tennessee','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5004,'state','tennessee','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5005,'state','tennessee','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5006,'state','tennessee','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5007,'state','tennessee','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5008,'state','tennessee','us','Americas','','Thanksgiving Holiday','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5009,'state','tennessee','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5010,'state','tennessee','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5011,'state','tennessee','us','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5012,'state','utah','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5013,'state','utah','us','Americas','','Martin Luther King Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5014,'state','utah','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5015,'state','utah','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5016,'state','utah','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5017,'state','utah','us','Americas','','Pioneer Day','PIONEER-DAY',NULL,'','2020-07-24','','/us/pioneer-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(5018,'state','utah','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5019,'state','utah','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5020,'state','utah','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5021,'state','utah','us','Americas','','Day after Thanksgiving','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5022,'state','utah','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5023,'state','utah','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5024,'state','wisconsin','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5025,'state','wisconsin','us','Americas','','Martin Luther King Jr.\'s Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5026,'state','wisconsin','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5027,'state','wisconsin','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5028,'state','wisconsin','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5029,'state','wisconsin','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5030,'state','wisconsin','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5031,'state','wisconsin','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5032,'state','wisconsin','us','Americas','','New Year\'s Eve Day','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5033,'state','washington','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5034,'state','washington','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5035,'state','washington','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5036,'state','washington','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5037,'state','washington','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5038,'state','washington','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5039,'state','washington','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5040,'state','washington','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5041,'state','washington','us','Americas','','Native American Heritage Day','AMERICAN-HERITAGE-DAY',NULL,'','2020-11-27','','/us/heritage-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(5042,'state','washington','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5043,'state','wyoming','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5044,'state','wyoming','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5045,'state','wyoming','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5046,'state','wyoming','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5047,'state','wyoming','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5048,'state','wyoming','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5049,'state','wyoming','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5050,'state','wyoming','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5051,'state','wyoming','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5052,'state','west-virginia','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5053,'state','west-virginia','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5054,'state','west-virginia','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5055,'state','west-virginia','us','Americas','','Primary Election Day','ELECTION-DAY',NULL,'','2020-05-12','','/us/primary-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(5056,'state','west-virginia','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5057,'state','west-virginia','us','Americas','','West Virginia Day','WEST-VIRGINIA-DAY',NULL,'','2020-06-19','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5058,'state','west-virginia','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5059,'state','west-virginia','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5060,'state','west-virginia','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5061,'state','west-virginia','us','Americas','','Election Day','ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(5062,'state','west-virginia','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5063,'state','west-virginia','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5064,'state','west-virginia','us','Americas','','Thanksgiving Holiday','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5065,'state','west-virginia','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5066,'state','west-virginia','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5067,'state','west-virginia','us','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5068,'state','virginia','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5069,'state','virginia','us','Americas','','Lee-Jackson Day','LEE-JACKSON-DAY',NULL,'','2020-01-17','','/us/lee-jack-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(5070,'state','virginia','us','Americas','','Martin Luther King, Jr. Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5071,'state','virginia','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5072,'state','virginia','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5073,'state','virginia','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5074,'state','virginia','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5075,'state','virginia','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5076,'state','virginia','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5077,'state','virginia','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5078,'state','virginia','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5079,'state','virginia','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5080,'state','vermont','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5081,'state','vermont','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5082,'state','vermont','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5083,'state','vermont','us','Americas','','Town Meeting Day','TOWN-MEETING-DAY',NULL,'','2020-03-03','','us/town-meeting-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(5084,'state','vermont','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5085,'state','vermont','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5086,'state','vermont','us','Americas','','Bennington Battle Day','BENNINGTON-BATTLE-DAY',NULL,'','2020-08-17','Y','/us/Bennington-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(5087,'state','vermont','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5088,'state','vermont','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5089,'state','vermont','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5090,'state','vermont','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(5091,'state','texas','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(5092,'state','texas','us','Americas','','Martin Luther King, Jr. Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(5093,'state','texas','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5094,'state','texas','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5095,'state','texas','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(5096,'state','texas','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5097,'state','texas','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5098,'state','texas','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(5099,'state','texas','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6100,'state','texas','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6101,'state','texas','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6102,'state','north-carolina','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6103,'state','north-carolina','us','Americas','','Martin Luther King, Jr. Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6104,'state','north-carolina','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(6105,'state','north-carolina','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6106,'state','north-carolina','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6107,'state','north-carolina','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6108,'state','north-carolina','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6109,'state','north-carolina','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6110,'state','north-carolina','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6111,'state','north-carolina','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6112,'state','north-carolina','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6113,'state','ohio','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6114,'state','ohio','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6115,'state','ohio','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6116,'state','ohio','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6117,'state','ohio','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6118,'state','ohio','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6119,'state','ohio','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6120,'state','ohio','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6121,'state','ohio','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6122,'state','ohio','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6123,'state','pennsylvania','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6124,'state','pennsylvania','us','Americas','','Martin Luther King, Jr. Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6125,'state','pennsylvania','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6126,'state','pennsylvania','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6127,'state','pennsylvania','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6128,'state','pennsylvania','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6129,'state','pennsylvania','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6130,'state','pennsylvania','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6131,'state','pennsylvania','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6132,'state','pennsylvania','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6133,'state','pennsylvania','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6134,'state','kentucky','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6135,'state','kentucky','us','Americas','','Martin Luther King, Jr. Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6136,'state','kentucky','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(6137,'state','kentucky','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6138,'state','kentucky','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6139,'state','kentucky','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6140,'state','kentucky','us','Americas','','Presidential Election','PRESEDENTIAL-ELECTION',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(6141,'state','kentucky','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6142,'state','kentucky','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6143,'state','kentucky','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6144,'state','kentucky','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6145,'state','kentucky','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6146,'state','kentucky','us','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6147,'state','california','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6148,'state','california','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6149,'state','california','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6150,'state','california','us','Americas','','Cesar Chavez Day','CHAVEZ-DAY',NULL,'','2020-03-31','Y','/us/chavez-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(6151,'state','california','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6152,'state','california','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6153,'state','california','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6154,'state','california','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6155,'state','california','us','Americas','','Thanksgiving Holiday','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6156,'state','california','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6157,'state','florida','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6158,'state','florida','us','Americas','','Birthday of Dr. Martin Luther King, Jr.','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6159,'state','florida','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6160,'state','florida','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6161,'state','florida','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6162,'state','florida','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6163,'state','florida','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6164,'state','florida','us','Americas','','Fridayay After Thanksgiving','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6165,'state','florida','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6166,'state','new-jersey','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6167,'state','new-jersey','us','Americas','','Martin Luther King, Jr.Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'OB',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6168,'state','new-jersey','us','Americas','','Lincoln Day','LINCOLNS-BIRTHDAY',NULL,'','2020-02-12','','/us/lincolns-birthday.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(6169,'state','new-jersey','us','Americas','','Presidents Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'OB',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6170,'state','new-jersey','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(6171,'state','new-jersey','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6172,'state','new-jersey','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6173,'state','new-jersey','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6174,'state','new-jersey','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6175,'state','new-jersey','us','Americas','','Election Day','GENERAL-ELECTION-DAY',NULL,'','2020-11-03','','/us/general-election-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(6176,'state','new-jersey','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6177,'state','new-jersey','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6178,'state','new-jersey','us','Americas','','Day After Thanksgiving','THANKSGIVING-DAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6179,'state','new-jersey','us','Americas','','Christmas Eve','CHRISTMAS',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH','H','christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6180,'state','new-jersey','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6181,'state','new-jersey','us','Americas','','New Year\'s Eve','NEW-YEARS-EVE',NULL,'','2020-12-31','Y','/us/new-years-day.php',1,'RH','H','new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6182,'state','mississippi','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6183,'state','mississippi','us','Americas','','Martin Luther King, Jr.Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6184,'state','mississippi','us','Americas','','Washington\'s Birthday','WASHINGTON-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6185,'state','mississippi','us','Americas','','Confederate Memorial Day','CONFEDERATE-MEMORIAL-DAY',NULL,'','2020-04-27','','/us/confederate-memorial-day.php',1,'RH',NULL,'',NULL,NULL,'','2012-10-15','Y'),(6186,'state','mississippi','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6187,'state','mississippi','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6188,'state','mississippi','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6189,'state','mississippi','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6190,'state','mississippi','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6191,'state','mississippi','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6192,'state','mississippi','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6193,'state','colorado','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6194,'state','colorado','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6195,'state','colorado','us','Americas','','President\'s Day','PRESIDENTS-DAY',NULL,'','2020-02-17','','/us/presidents-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6196,'state','colorado','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6197,'state','colorado','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6198,'state','colorado','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6199,'state','colorado','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6200,'state','colorado','us','Americas','','Columbus Day','COLUMBUS-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6201,'state','colorado','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6203,'state','colorado','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6204,'state','colorado','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6205,'state','arkansas','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6206,'state','arkansas','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6207,'state','arkansas','us','Americas','','George Washington\'s Birthday','GEORGE-WASHINGTON-DAY',NULL,'','2020-02-17','','/us/george-washington-day.php',1,'RH',NULL,'presidents-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6208,'state','arkansas','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6209,'state','arkansas','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6210,'state','arkansas','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-04','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6211,'state','arkansas','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6212,'state','arkansas','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6213,'state','arkansas','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6214,'state','arkansas','us','Americas','','Christmas Eve','CHRISTMAS',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6215,'state','arkansas','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6216,'state','new-mexico','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6217,'state','new-mexico','us','Americas','','Martin Luther King, Jr. Day','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6218,'state','new-mexico','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6219,'state','new-mexico','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'OB',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6220,'state','new-mexico','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6221,'state','new-mexico','us','Americas','','Indigenous Peoples\' Day','INDIGENOUS-PEOPLE-DAY',NULL,'','2020-10-12','','/us/columbus-day.php',1,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6222,'state','new-mexico','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6223,'state','new-mexico','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6224,'state','new-mexico','us','Americas','','Thanksgiving Holiday','THANKSGIVING-HOLIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6225,'state','new-mexico','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6226,'state','south-carolina','us','Americas','','New Year\'s Day','NEW-YEARS-DAY',NULL,'','2020-01-01','Y','/us/new-years-day.php',1,'RH',NULL,'new-years-day.jpg',NULL,NULL,'','2012-10-14','Y'),(6227,'state','south-carolina','us','Americas','','Martin Luther King, Jr. Birthday','M-L-KING-DAY',NULL,'','2020-01-20','','/us/martin-luther-king-day.php',1,'RH',NULL,'martin-luther-king.jpg',NULL,NULL,'','2012-10-15','Y'),(6228,'state','south-carolina','us','Americas','','Good Friday','GOOD-FRIDAY',NULL,'','2020-04-10','','/us/good-friday.php',1,'RH',NULL,'good-friday.jpg',NULL,NULL,'','2012-10-15','Y'),(6229,'state','south-carolina','us','Americas','','Memorial Day','MEMORIAL-DAY',NULL,'','2020-05-25','','us/memorial-day.php',1,'RH',NULL,'memorial-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6230,'state','south-carolina','us','Americas','','Independence Day','INDEPENDENCE-DAY',NULL,'','2020-07-03','Y','/us/independence-day.php',1,'RH',NULL,'us-flag.jpg',NULL,NULL,'','2012-10-15','Y'),(6231,'state','south-carolina','us','Americas','','Labor Day','LABOR-DAY',NULL,'','2020-09-07','','/us/labor-day.php',1,'RH',NULL,'us-labor-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6232,'state','south-carolina','us','Americas','','Veteran\'s Day','VETERANS-DAY',NULL,'','2020-11-11','Y','/us/veterans-day.php',1,'RH',NULL,'veterans-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6233,'state','south-carolina','us','Americas','','Thanksgiving Day','THANKSGIVING-DAY',NULL,'','2020-11-26','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6234,'state','south-carolina','us','Americas','','Thanksgiving Friday','THANKSGIVING-FRIDAY',NULL,'','2020-11-27','','/us/thanksgiving-day.php',1,'RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'','2012-10-15','Y'),(6235,'state','south-carolina','us','Americas','','Christmas Eve','CHRISTMAS-EVE',NULL,'','2020-12-24','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y'),(6236,'state','south-carolina','us','Americas','','Christmas Day','CHRISTMAS',NULL,'','2020-12-25','Y','/us/christmas.php',1,'RH',NULL,'christmas.jpg',NULL,NULL,'','2012-10-15','Y');
/*!40000 ALTER TABLE `holiday_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `holidays`
--

DROP TABLE IF EXISTS `holidays`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `holidays` (
  `id` mediumint(5) NOT NULL AUTO_INCREMENT,
  `area_type` varchar(15) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '' COMMENT 'country, religious, regional(tamil), state(india),bank-geo,market(NSE),intl-org(UN)',
  `area` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '' COMMENT 'like: India, Hindu, Karnatama, icici bank etc.',
  `country` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `region` varchar(15) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'Economic Regions',
  `location` varchar(45) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `religion` varchar(15) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'Obsolete, will be deleted',
  `year` varchar(4) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `holiday_date` date DEFAULT NULL,
  `holiday` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '',
  `rank` tinyint(1) DEFAULT NULL COMMENT 'Rank (1-single country,2-multiple)',
  `show_content` varchar(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'x=yes',
  `lang_key` varchar(75) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'text key to retrieve local language',
  `page_link` varchar(150) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `ch_page_link` varchar(150) NOT NULL,
  `article` tinyint(1) DEFAULT 0 COMMENT 'Obsolete, will be deleted',
  `same_date` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'Fall on same date',
  `observe` varchar(40) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT '' COMMENT 'National,Regional',
  `day_off` varchar(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'Y=Yes, N=No, M=Morning Off,E=Evening Off, Blank=Yes',
  `img_file` varchar(70) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT '' COMMENT 'Img file for page widgets',
  `img_source` varchar(30) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `comment` tinytext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL COMMENT 'Comments about holiday',
  `update_date` date DEFAULT NULL,
  `user_ip` varchar(15) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `is_active` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `holiday_master_id` int(5) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `area_type_area` (`area_type`,`area`)
) ENGINE=MyISAM AUTO_INCREMENT=48460 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `holidays`
--

LOCK TABLES `holidays` WRITE;
/*!40000 ALTER TABLE `holidays` DISABLE KEYS */;
INSERT INTO `holidays` VALUES (5266,'country','us','us','Americas','United States','','2019','2019-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious',NULL,'',NULL,'','2016-06-14',NULL,'Y',342),(5265,'country','us','us','Americas','United States','','2019','2019-11-28','Thanksgiving Day',2,'X','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious',NULL,'',NULL,'','2016-06-14',NULL,'Y',341),(5264,'country','us','us','Americas','United States','','2019','2019-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',340),(5263,'country','us','us','Americas','United States','','2019','2019-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',339),(5262,'country','us','us','Americas','United States','','2019','2019-10-14','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',338),(5261,'country','us','us','Americas','United States','','2019','2019-09-02','Labor Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',337),(5260,'country','us','us','Americas','United States','','2019','2019-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',336),(5259,'country','us','us','Americas','United States','','2019','2019-06-16','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','National',NULL,'fathers-day.jpg',NULL,'','2016-06-14',NULL,'Y',335),(5258,'country','us','us','Americas','United States','','2019','2019-05-27','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',334),(5257,'country','us','us','Americas','United States','','2019','2019-05-12','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',333),(5256,'country','us','us','Americas','United States','','2019','2019-04-21','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','Religious',NULL,'easter.jpg',NULL,'','2016-06-14',NULL,'Y',332),(5255,'country','us','us','Americas','United States','','2019','2019-04-19','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious',NULL,'good-friday.jpg',NULL,'','2016-06-14',NULL,'Y',331),(5274,'country','us','us','Americas','United States','','2020','2020-05-25','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',334),(5273,'country','us','us','Americas','United States','','2020','2020-05-10','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',333),(5272,'country','us','us','Americas','United States','','2020','2020-04-12','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','Religious',NULL,'easter.jpg',NULL,'','2016-06-14',NULL,'Y',332),(5269,'country','us','us','Americas','United States','','2020','2020-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',329),(11286,'country','us','us','Americas','United States',NULL,'2021','2021-07-05','Independence Day Holiday',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2018-11-25',NULL,'Y',336),(11271,'country','us','us','Americas','United States',NULL,'2021','2021-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','OB',NULL,'valentines-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',329),(11303,'country','us','us','Americas','United States',NULL,'2022','2022-06-03','National Donut Day',1,'X','NATIONAL-DONUT-DAY','/national-donut-day/','/national-donut-day/',0,'','OB','N','national-donut-day.jpg',NULL,'Celebrated every year on the first Friday of June','2018-11-25',NULL,'Y',2453),(11299,'country','us','us','Americas','United States',NULL,'2022','2022-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','NH',NULL,'halloween.jpg',NULL,NULL,'2018-11-25',NULL,'Y',339),(11290,'country','us','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',330),(11289,'country','us','us','Americas','United States',NULL,'2022','2022-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','OB',NULL,'valentines-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',329),(11288,'country','us','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-11-25',NULL,'Y',328),(9615,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-06-16','Martyrdom of Guru Arjan Dev Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','/martyrdom-of-guru-arjan-dev-sahib/','/martyrdom-of-guru-arjan-dev-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',486),(9614,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-04-14','Vaisakhi',NULL,NULL,'VAISAKHI','/vaisakhi/','/vaisakhi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',485),(9613,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-03-21','Hola Mohalla',NULL,NULL,'HOLA-MOHALLA','/hola-mohalla/','/hola-mohalla/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',484),(9611,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-01-05','Guru Gobind Singh Birthday',NULL,NULL,'GURU-GOBIND-SINGH-BIRTHDAY','/guru-gobind-singh-birthday/','/guru-gobind-singh-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',481),(9589,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-12-22','Hanukkah Starts',NULL,NULL,'HANUKKAH-STARTS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',460),(9587,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-10-21','Shmini Atzeret',NULL,NULL,'SHEMINI-ATZERET','/shemini-atzeret/','/shemini-atzeret/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',458),(9586,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-10-20','Sukkot Ends',NULL,NULL,'SUKKOT-ENDS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',456),(9581,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-09-30','Rosh HaShana Starts',NULL,NULL,'ROSH-HASHANAH-STARTS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',451),(9580,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-08-11','Tish\'a B\'Av',NULL,NULL,'TISHA-BAV','/tisha-bav/','/tisha-bav/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',450),(9579,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-06-10','Shavuot',NULL,NULL,'SHAVUOT','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',448),(9578,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-06-09','Shavuot (1st day)',NULL,NULL,'SHAVUOT-1ST-DAY','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',447),(9577,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-06-02','Yom Yerushalayim',NULL,NULL,'YOM-YERUSHALAYIM','/yom-yerushalayim/','/yom-yerushalayim/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',446),(9576,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-05-23','Lag BaOmer',NULL,NULL,'LAG-BAOMER','/lag-bomer/','/lag-bomer/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',445),(9575,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-05-09','Yom HaAtzma\'ut',NULL,NULL,'YOM-HAATZMAUT','/yom-haatzmaut/','/yom-haatzmaut/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',444),(9574,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-05-08','Yom HaZikaron',NULL,NULL,'YOM-HAZIKARON','/yom-hazikaron/','/yom-hazikaron/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',443),(9571,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-04-21','Passover - Second Day',NULL,NULL,'PASSOVER-SECOND-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',440),(9570,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-04-20','Passover - First Day',0,NULL,'PASSOVER-FIRST-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',439),(9568,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-03-21','Purim',0,NULL,'PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',437),(9569,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-03-22','Shushan Purim',NULL,NULL,'SHUSHAN-PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',438),(9567,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-01-21','Tu Bishvat',NULL,NULL,'TU-BISHVAT','/tu-bishvat/','/tu-bishvat/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',436),(9601,'religious','islam','islam',NULL,NULL,'islam','2019','2019-09-09','Day of Ashura / Muharram',NULL,NULL,'DAY-OF-ASHURA-MUHARRAM','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',472),(9600,'religious','islam','islam',NULL,NULL,'islam','2019','2019-08-31','Hijra - Islamic New Year',NULL,NULL,'HIJRA-ISLAMIC-NEW-YEAR','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',471),(9599,'religious','islam','islam',NULL,NULL,'islam','2019','2019-08-11','Eid-al-Adha',NULL,NULL,'EID-AL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',470),(9598,'religious','islam','islam',NULL,NULL,'islam','2019','2019-08-10','Waqf al Arafa - Hajj',NULL,NULL,'WAQF-AL-ARAFA-HAJJ','/waqf-al-arafa-hajj/','/waqf-al-arafa-hajj/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',469),(9597,'religious','islam','islam',NULL,NULL,'islam','2019','2019-06-04','Eid-al-Fitr (End of Ramadan)',NULL,NULL,'EID-AL-FITR-END-OF-RAMADAN','/ramadan-end/','/ramadan-end/',0,'','RH',NULL,'hari-raya-puasa.jpg',NULL,NULL,'2018-09-23',NULL,'Y',468),(9596,'religious','islam','islam',NULL,NULL,'islam','2019','2019-05-31','Laylat al Qadr',NULL,NULL,'LAYLAT-AL-KADR','/laylat-al-kadr/','/laylat-al-kadr/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',467),(9595,'religious','islam','islam',NULL,NULL,'islam','2019','2019-05-06','Ramadan (start)',NULL,NULL,'RAMADAN-START','/ramadan-start/','/ramadan-start/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',466),(9594,'religious','islam','islam',NULL,NULL,'islam','2019','2019-04-20','Lailat al Bara\'ah',NULL,NULL,'LAILAT-AL-BARAAH','/lailat-al-baraah/','/lailat-al-baraah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',465),(9593,'religious','islam','islam',NULL,NULL,'islam','2019','2019-04-03','Lailat al Miraj',NULL,NULL,'LAILAT-AL-MIRAJ','/lailat-al-miraj/','/lailat-al-miraj/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',464),(9592,'religious','islam','islam',NULL,NULL,'islam','2019','2019-11-14','Milad un Nabi (Shia)',NULL,NULL,'MILAD-UN-NABI-SHIA','/milad-un-nabi/','/milad-un-nabi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',463),(9591,'religious','islam','islam',NULL,NULL,'islam','2019','2019-11-09','Milad un Nabi',NULL,NULL,'MILAD-UN-NABI','/milad-un-nabi/','/milad-un-nabi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',462),(9526,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-08-09','Varalakshmi Vrat',NULL,NULL,'VARALAKSHMI-VRAT','/varalakshmi-vrat/','/varalakshmi-vrat/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',685),(9519,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-10-13','Sharad Purnima',NULL,NULL,'SHARAD-PURNIMA','/sharad-purnima/','/sharad-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',431),(9518,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-10-08','Dusshera ',NULL,NULL,'DUSSHERA-','/dussehra/','/dussehra/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',430),(9516,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-09-29','Navaratri begins',NULL,NULL,'NAVARATRI-BEGINS','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',427),(9514,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-09-28','Mahalaya Amavasya',NULL,NULL,'MAHALAYA-AMAVASYA','/mahalaya-amavasya/','/mahalaya-amavasya/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',425),(9506,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-06-03','Savitri Pooja',NULL,NULL,'SAVITRI-POOJA','/savitri-pooja/','/savitri-pooja/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',417),(9505,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-04-15','Vaisakhi / Baisakhi / Vishu ',NULL,NULL,'VAISAKHI-BAISAKHI-VISHU','/vishu/','/vishu/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',416),(9504,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-05-07','Akshaya Tritiya',0,NULL,'AKSHAYA-TRITIYA','/akshaya-tritiya/','/akshaya-tritiya/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',415),(9503,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-04-19','Hanuman Jayanti',NULL,NULL,'HANUMAN-JAYANTI','/hanuman-jayanti/','/hanuman-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',414),(9502,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-04-15','Bengali New Year / Bihu',NULL,NULL,'BENGALI-NEW-YEAR-BIHU','/bihu-bengali-new-year/','/bihu-bengali-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',413),(9501,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-04-13','Ramanavami',NULL,NULL,'RAMANAVAMI','/ramanavami/','/ramanavami/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',411),(9497,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-03-04','Maha Shivaratri',NULL,NULL,'MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',407),(9496,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-02-09','Vasant Panchami',0,NULL,'VASANT-PANCHAMI','/vasant-panchami/','/vasant-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',406),(9495,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-04-14','Tamil New Year',NULL,NULL,'TAMIL-NEW-YEAR','/tamil-new-year/','/tamil-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',405),(9494,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-01-15','Makarsankranti / Pongal',0,NULL,'MAKARSANKRANTI-PONGAL','/pongal/','/pongal/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',404),(9566,'religious','christian','christian',NULL,NULL,'christian','2019','2019-03-06','Ash Wednesday',NULL,NULL,'ASH-WEDNESDAY','/ash-wednesday/','/ash-wednesday/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',657),(9565,'religious','christian','christian',NULL,NULL,'christian','2019','2019-11-26','Christ the King',NULL,NULL,'CHRIST-THE-KING','/christ-the-king/','/christ-the-king/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',656),(9564,'religious','christian','christian',NULL,NULL,'christian','2019','2019-12-31','Watch Night',NULL,NULL,'WATCH-NIGHT','/watch-night/','/watch-night/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',403),(9563,'religious','christian','christian',NULL,NULL,'christian','2019','2019-12-28','Holy Innocents',NULL,NULL,'HOLY-INNOCENTS','/holy-innocents/','/holy-innocents/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',402),(9561,'religious','christian','christian',NULL,NULL,'christian','2019','2019-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2018-09-21',NULL,'Y',400),(9560,'religious','christian','christian',NULL,NULL,'christian','2019','2019-12-06','St. Nicholas Day',NULL,NULL,'ST-NICHOLAS-DAY','/st-nicholas-day/','/st-nicholas-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',399),(9559,'religious','christian','christian',NULL,NULL,'christian','2019','2019-11-30','St. Andrew\'s Day',NULL,NULL,'ST-ANDREWS-DAY','/st-andrews-day/','/st-andrews-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',398),(9557,'religious','christian','christian',NULL,NULL,'christian','2019','2019-11-23','Thanksgiving (USA)',NULL,NULL,'THANKSGIVING-USA','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',396),(9555,'religious','christian','christian',NULL,NULL,'christian','2019','2019-11-01','All Saints\' Day',NULL,NULL,'ALL-SAINTS-DAY','/all-saints-day/','/all-saints-day/',0,'Y','RH',NULL,'all-saints-day.jpg',NULL,NULL,'2018-09-21',NULL,'Y',393),(9554,'religious','christian','christian',NULL,NULL,'christian','2019','2019-10-31','All Hallows Eve',NULL,NULL,'ALL-HALLOWS-EVE','/halloween/','/halloween/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',392),(9553,'religious','christian','christian',NULL,NULL,'christian','2019','2019-09-29','Michael and All Angels',NULL,NULL,'MICHAEL-AND-ALL-ANGELS','/michael-and-all-angels/','/michael-and-all-angels/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',391),(9552,'religious','christian','christian',NULL,NULL,'christian','2019','2019-09-14','Holy Cross Day',NULL,NULL,'HOLY-CROSS-DAY','/holy-cross-day/','/holy-cross-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',390),(9551,'religious','christian','christian',NULL,NULL,'christian','2019','2019-08-15','The Assumption of Mary',NULL,NULL,'THE-ASSUMPTION-OF-MARY','/the-assumption-of-mary/','/the-assumption-of-mary/',0,'Y','RH',NULL,'the-assumption-of-mary.jpg',NULL,NULL,'2018-09-21',NULL,'Y',389),(9550,'religious','christian','christian',NULL,NULL,'christian','2019','2019-08-01','Lammas',NULL,NULL,'LAMMAS','/lammas/','/lammas/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',388),(9549,'religious','christian','christian',NULL,NULL,'christian','2019','2019-06-15','Saint Vladimir',NULL,NULL,'SAINT-VLADIMIR','/saint-vladimir/','/saint-vladimir/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',387),(9544,'religious','christian','christian',NULL,NULL,'christian','2019','2019-05-30','Ascension of Jesus',NULL,NULL,'ASCENSION-OF-JESUS','/ascension-day/','/ascension-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',382),(9543,'religious','christian','christian',NULL,NULL,'christian','2019','2019-07-25','St. James the Great Day',NULL,NULL,'ST-JAMES-THE-GREAT-DAY','/st-james-the-great-day-/','/st-james-the-great-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',381),(9538,'religious','christian','christian',NULL,NULL,'christian','2019','2019-04-18','Maundy (Holy) Thursday',NULL,NULL,'MAUNDY-HOLY-THURSDAY','/maundy-thursday/','/maundy-thursday/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',376),(9537,'religious','christian','christian',NULL,NULL,'christian','2019','2019-04-14','Palm Sunday',NULL,NULL,'PALM-SUNDAY','/palm-sunday/','/palm-sunday/',0,'','RH',NULL,'palm-sunday.jpg',NULL,NULL,'2018-09-21',NULL,'Y',375),(9536,'religious','christian','christian',NULL,NULL,'christian','2019','2019-03-19','St. Joseph\'s Day',NULL,NULL,'ST-JOSEPHS-DAY','/st-josephs-day-/','/st-josephs-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',374),(9535,'religious','christian','christian',NULL,NULL,'christian','2019','2019-03-17','St. Patrick\'s Day',NULL,NULL,'ST-PATRICK\'S-DAY','/st-patricks-day/','/st-patricks-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',373),(9532,'religious','christian','christian',NULL,NULL,'christian','2019','2019-01-13','The Baptism of Jesus',1,'X','BAPTISM-OF-THE-JESUS','/baptism-of-the-lord/','/baptism-of-the-lord/',0,'','RH',NULL,'baptism-of-the-lord.jpg',NULL,NULL,'2018-09-21',NULL,'Y',370),(9531,'religious','christian','christian',NULL,NULL,'christian','2019','2019-01-06','Epiphany',NULL,NULL,'EPIPHANY','/epiphany/','/epiphany/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',369),(9610,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-07-13','Obon',NULL,NULL,'OBON','/obon/','/obon/',0,'','RH',NULL,'obon.jpg',NULL,NULL,'2018-09-23',NULL,'Y',659),(9608,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-12-08','Bodhi Day',NULL,NULL,'BODHI-DAY','/bodhi-day/','/bodhi-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',480),(9605,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-04-19','Theravada New Year',NULL,NULL,'THERAVADA-NEW-YEAR','/theravada-new-year/','/theravada-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',477),(9604,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-03-21','Magha Puja Day',NULL,NULL,'MAGHA-PUJA-DAY','/magha-puja-day/','/magha-puja-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',476),(13917,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-03-17','Hola Mohalla',NULL,NULL,'HOLA-MOHALLA','/hola-mohalla/','/hola-mohalla/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',484),(13914,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-01-21','Tu Bishvat',NULL,NULL,'TU-BISHVAT','/tu-bishvat/','/tu-bishvat/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',436),(13913,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-03-10','Purim',0,NULL,'PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',437),(13912,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-03-11','Shushan Purim',NULL,NULL,'SHUSHAN-PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',438),(13911,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-04-08','Passover - First Day',0,NULL,'PASSOVER-FIRST-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',439),(13910,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-05-08','Second Passover',NULL,NULL,'SECOND-PASSOVER','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',440),(13909,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-04-16','Passover - Final Day',NULL,NULL,'PASSOVER-FINAL-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',441),(13908,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-04-21','Yom Hashoah',NULL,NULL,'YOM-HASHOAH','/yom-hashoah/','/yom-hashoah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',442),(13907,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-04-28','Yom HaZikaron',NULL,NULL,'YOM-HAZIKARON','/yom-hazikaron/','/yom-hazikaron/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',443),(13906,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-04-29','Yom HaAtzma\'ut',NULL,NULL,'YOM-HAATZMAUT','/yom-haatzmaut/','/yom-haatzmaut/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',444),(13905,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-05-12','Lag BaOmer',NULL,NULL,'LAG-BAOMER','/lag-bomer/','/lag-bomer/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',445),(13904,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-05-22','Yom Yerushalayim',NULL,NULL,'YOM-YERUSHALAYIM','/yom-yerushalayim/','/yom-yerushalayim/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',446),(13903,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-05-29','Shavuot (1st day)',NULL,NULL,'SHAVUOT-1ST-DAY','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',447),(13902,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-05-30','Shavuot',NULL,NULL,'SHAVUOT','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',448),(13900,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-09-19','Rosh HaShana Starts',NULL,NULL,'ROSH-HASHANAH-STARTS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',451),(13897,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-09-28','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',454),(13896,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-10-03','Sukkot Starts',NULL,NULL,'SUKKOT-STARTS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',455),(13895,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-10-09','Sukkot Ends',NULL,NULL,'SUKKOT-ENDS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',456),(13894,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-10-10','Shmini Atzeret',NULL,NULL,'SHEMINI-ATZERET','/shemini-atzeret/','/shemini-atzeret/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',458),(13893,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-10-11','Simchat Torah',NULL,NULL,'SIMHAT-TORAH','/simhat-torah/','/simhat-torah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',459),(13892,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-12-11','Hanukkah Starts',NULL,NULL,'HANUKKAH-STARTS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',460),(13891,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-12-18','Hanukkah Ends',NULL,NULL,'HANUKKAH-ENDS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',461),(13890,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-10-30','Milad un Nabi',NULL,NULL,'MILAD-UN-NABI','/milad-un-nabi/','/milad-un-nabi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',462),(13889,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-11-03','Milad un Nabi (Shia)',NULL,NULL,'MILAD-UN-NABI-SHIA','/milad-un-nabi/','/milad-un-nabi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',463),(13887,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-04-21','Lailat al Bara\'ah',NULL,NULL,'LAILAT-AL-BARAAH','/lailat-al-baraah/','/lailat-al-baraah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',465),(13885,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-05-19','Laylat al Qadr',NULL,NULL,'LAYLAT-AL-KADR','/laylat-al-kadr/','/laylat-al-kadr/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',467),(13877,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-12-25','Geeta Jayanti',NULL,NULL,'GEETA-JAYANTI','/geeta-jayanti/','/geeta-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',687),(13878,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-12-15','Dhanu Sankranti',NULL,NULL,'DHANU-SANKRANTI','/dhanu-sankranti/','/dhanu-sankranti/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',688),(13875,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-07-31','Varalakshmi Vrat',NULL,NULL,'VARALAKSHMI-VRAT','/varalakshmi-vrat/','/varalakshmi-vrat/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',685),(13874,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-03-09','Holika Dahan',NULL,NULL,'HOLIKA-DAHAN','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',684),(13873,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-11-20','Chhath Puja',NULL,NULL,'CHHATH-PUJA','/chhath-puja/','/chhath-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',655),(13872,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-01-15','Makarsankranti / Pongal',0,NULL,'MAKARSANKRANTI-PONGAL','/pongal/','/pongal/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',404),(13866,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-03-25','Ugadi / Gudi Padwa / Telugu New Year',NULL,NULL,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','/ugadi-telugu-new-year/','/ugadi-telugu-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',410),(13865,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-04-02','Ramanavami',NULL,NULL,'RAMANAVAMI','/ramanavami/','/ramanavami/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',411),(13853,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-08-31','Onam',NULL,NULL,'ONAM','/onam/','/onam/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',424),(13854,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-08-22','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',423),(13851,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-11-16','Bhai Dooj',NULL,NULL,'BHAI-DOOJ','/bhai-dooj/','/bhai-dooj/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',654),(13850,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-10-17','Navaratri begins',NULL,NULL,'NAVARATRI-BEGINS','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',427),(13843,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-11-30','Kartik Poornima',NULL,NULL,'KARTIK-POORNIMA','/kartik-purnima/','/kartik-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',435),(13842,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-02-26','Ash Wednesday',NULL,NULL,'ASH-WEDNESDAY','/ash-wednesday/','/ash-wednesday/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',657),(13841,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-11-22','Christ the King',NULL,NULL,'CHRIST-THE-KING','/christ-the-king/','/christ-the-king/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',656),(13840,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-01-06','Epiphany',NULL,NULL,'EPIPHANY','/epiphany/','/epiphany/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',369),(13834,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-04-05','Palm Sunday',NULL,NULL,'PALM-SUNDAY','/palm-sunday/','/palm-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',375),(13832,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-04-10','Good Friday ',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2019-12-02',NULL,'Y',377),(13831,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-04-23','St. George\'s Day',NULL,NULL,'ST-GEORGES-DAY','/st-georges-day/','/st-georges-day/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',378),(13830,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-04-12','Easter',NULL,NULL,'EASTER','/easter/','/easter/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2019-12-02',NULL,'Y',379),(13829,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-04-13','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2019-12-02',NULL,'Y',380),(13828,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-07-25','St. James the Great Day',NULL,NULL,'ST-JAMES-THE-GREAT-DAY','/st-james-the-great-day-/','/st-james-the-great-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',381),(13824,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-06-11','Corpus Christi',NULL,NULL,'CORPUS-CHRISTI','/corpus-christi/','/corpus-christi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',385),(13823,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-06-29','Saints Peter and Paul',NULL,NULL,'SAINTS-PETER-AND-PAUL','/saints-peter-and-paul/','/saints-peter-and-paul/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',386),(13822,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-06-15','Saint Vladimir',NULL,NULL,'SAINT-VLADIMIR','/saint-vladimir/','/saint-vladimir/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',387),(13821,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-08-01','Lammas',NULL,NULL,'LAMMAS','/lammas/','/lammas/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',388),(13819,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-09-14','Holy Cross Day',NULL,NULL,'HOLY-CROSS-DAY','/holy-cross-day/','/holy-cross-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',390),(13816,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-11-01','All Saints\' Day',NULL,NULL,'ALL-SAINTS-DAY','/all-saints-day/','/all-saints-day/',0,'Y','RH',NULL,'all-saints-day.jpg',NULL,NULL,'2019-12-02',NULL,'Y',393),(13815,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-11-02','All Souls\' Day',NULL,NULL,'ALL-SOULS-DAY','/all-souls-day/','/all-souls-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',395),(13814,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-11-26','Thanksgiving (USA)',NULL,NULL,'THANKSGIVING-USA','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',396),(13812,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-11-30','St. Andrew\'s Day',NULL,NULL,'ST-ANDREWS-DAY','/st-andrews-day/','/st-andrews-day/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',398),(13811,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-12-06','St. Nicholas Day',NULL,NULL,'ST-NICHOLAS-DAY','/st-nicholas-day/','/st-nicholas-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',399),(13807,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-12-31','Watch Night',NULL,NULL,'WATCH-NIGHT','/watch-night/','/watch-night/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',403),(13808,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-12-28','Holy Innocents',NULL,NULL,'HOLY-INNOCENTS','/holy-innocents/','/holy-innocents/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',402),(13805,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-02-05','Chinese New Year',NULL,NULL,'CHINESE-NEW-YEAR','/chinese-new-year/','/chinese-new-year/',0,'','RH',NULL,'chinese-new-year.jpg',NULL,NULL,'2019-12-02',NULL,'Y',658),(13804,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-01-10','Mahayana New Year',NULL,NULL,'MAHAYANA-NEW-YEAR','/mahayana-new-year/','/mahayana-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',473),(13803,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-02-08','Nirvana Day',NULL,NULL,'NIRVANA-DAY','/nirvana-day/','/nirvana-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',475),(13802,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-03-09','Magha Puja Day',NULL,NULL,'MAGHA-PUJA-DAY','/magha-puja-day/','/magha-puja-day/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',476),(13800,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-05-07','Vesak - Buddha Day',NULL,NULL,'VESAK-BUDDHA-DAY','/vesak-day/','/vesak-day/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',478),(13799,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-07-05','Asala - Dharma Day',NULL,NULL,'ASALA-DHARMA-DAY','/asala-dharma-day/','/asala-dharma-day/',0,'','RH',NULL,'asala-dharma-day.jpg',NULL,NULL,'2019-12-02',NULL,'Y',479),(18810,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-03-29','Hola Mohalla',NULL,NULL,'HOLA-MOHALLA','/hola-mohalla/','/hola-mohalla/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',484),(18807,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-01-28','Tu Bishvat',NULL,NULL,'TU-BISHVAT','/tu-bishvat/','/tu-bishvat/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',436),(18806,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-02-26','Purim',0,NULL,'PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',437),(18805,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-02-28','Shushan Purim',NULL,NULL,'SHUSHAN-PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',438),(18804,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-03-28','Passover - First Day',0,NULL,'PASSOVER-FIRST-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',439),(18803,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-04-26','Second Passover',NULL,NULL,'SECOND-PASSOVER','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',440),(18802,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-04-04','Passover - Final Day',NULL,NULL,'PASSOVER-FINAL-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',441),(18801,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-04-08','Yom Hashoah',NULL,NULL,'YOM-HASHOAH','/yom-hashoah/','/yom-hashoah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',442),(18800,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-04-14','Yom HaZikaron',NULL,NULL,'YOM-HAZIKARON','/yom-hazikaron/','/yom-hazikaron/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',443),(18799,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-04-15','Yom HaAtzma\'ut',NULL,NULL,'YOM-HAATZMAUT','/yom-haatzmaut/','/yom-haatzmaut/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',444),(18798,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-04-30','Lag BaOmer',NULL,NULL,'LAG-BAOMER','/lag-bomer/','/lag-bomer/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',445),(18797,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-05-10','Yom Yerushalayim',NULL,NULL,'YOM-YERUSHALAYIM','/yom-yerushalayim/','/yom-yerushalayim/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',446),(18796,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-05-17','Shavuot (1st day)',NULL,NULL,'SHAVUOT-1ST-DAY','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',447),(18795,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-05-18','Shavuot',NULL,NULL,'SHAVUOT','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',448),(18793,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-09-07','Rosh HaShana Starts',NULL,NULL,'ROSH-HASHANAH-STARTS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',451),(18790,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-09-16','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',454),(18789,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-09-21','Sukkot Starts',NULL,NULL,'SUKKOT-STARTS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',455),(18788,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-09-27','Sukkot Ends',NULL,NULL,'SUKKOT-ENDS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',456),(18787,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-09-28','Shmini Atzeret',NULL,NULL,'SHEMINI-ATZERET','/shemini-atzeret/','/shemini-atzeret/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',458),(18786,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-09-29','Simchat Torah',NULL,NULL,'SIMHAT-TORAH','/simhat-torah/','/simhat-torah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',459),(18785,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-11-29','Hanukkah Starts',NULL,NULL,'HANUKKAH-STARTS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',460),(18784,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-12-06','Hanukkah Ends',NULL,NULL,'HANUKKAH-ENDS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',461),(18840,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-10-19','Milad un Nabi',NULL,NULL,'MILAD-UN-NABI','/milad-un-nabi/','/milad-un-nabi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',462),(18839,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-10-23','Milad un Nabi (Shia)',NULL,NULL,'MILAD-UN-NABI-SHIA','/milad-un-nabi/','/milad-un-nabi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',463),(18837,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-03-28','Lailat al Bara\'ah',NULL,NULL,'LAILAT-AL-BARAAH','/lailat-al-baraah/','/lailat-al-baraah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',465),(18835,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-05-09','Laylat al Qadr',NULL,NULL,'LAYLAT-AL-KADR','/laylat-al-kadr/','/laylat-al-kadr/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',467),(18781,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-12-14','Geeta Jayanti',NULL,NULL,'GEETA-JAYANTI','/geeta-jayanti/','/geeta-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',687),(18782,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-12-12','Dhanu Sankranti',NULL,NULL,'DHANU-SANKRANTI','/dhanu-sankranti/','/dhanu-sankranti/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',688),(18779,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-08-20','Varalakshmi Vrat',NULL,NULL,'VARALAKSHMI-VRAT','/varalakshmi-vrat/','/varalakshmi-vrat/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',685),(18778,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-03-28','Holika Dahan',NULL,NULL,'HOLIKA-DAHAN','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',684),(18777,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-11-11','Chhath Puja',NULL,NULL,'CHHATH-PUJA','/chhath-puja/','/chhath-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',655),(18776,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-01-14','Makarsankranti / Pongal',0,NULL,'MAKARSANKRANTI-PONGAL','/pongal/','/pongal/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',404),(18770,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-04-13','Ugadi / Gudi Padwa / Telugu New Year',NULL,NULL,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','/ugadi-telugu-new-year/','/ugadi-telugu-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',410),(18769,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-04-02','Ramanavami',NULL,NULL,'RAMANAVAMI','/ramanavami/','/ramanavami/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',411),(18757,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-08-21','Onam',NULL,NULL,'ONAM','/onam/','/onam/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',424),(18758,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-09-10','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',423),(18755,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-11-06','Bhai Dooj',NULL,NULL,'BHAI-DOOJ','/bhai-dooj/','/bhai-dooj/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',654),(18754,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-10-06','Navaratri begins',NULL,NULL,'NAVARATRI-BEGINS','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',427),(18747,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-11-19','Kartik Poornima',NULL,NULL,'KARTIK-POORNIMA','/kartik-purnima/','/kartik-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',435),(18746,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-02-17','Ash Wednesday',NULL,NULL,'ASH-WEDNESDAY','/ash-wednesday/','/ash-wednesday/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',657),(18745,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-11-21','Christ the King',NULL,NULL,'CHRIST-THE-KING','/christ-the-king/','/christ-the-king/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',656),(18744,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-01-06','Epiphany',NULL,NULL,'EPIPHANY','/epiphany/','/epiphany/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',369),(18738,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-03-28','Palm Sunday',NULL,NULL,'PALM-SUNDAY','/palm-sunday/','/palm-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',375),(18736,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-04-02','Good Friday ',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-09-22',NULL,'Y',377),(18735,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-04-23','St. George\'s Day',NULL,NULL,'ST-GEORGES-DAY','/st-georges-day/','/st-georges-day/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',378),(18734,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-04-04','Easter',NULL,NULL,'EASTER','/easter/','/easter/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2020-09-22',NULL,'Y',379),(18733,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-04-05','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2020-09-22',NULL,'Y',380),(18732,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-07-25','St. James the Great Day',NULL,NULL,'ST-JAMES-THE-GREAT-DAY','/st-james-the-great-day-/','/st-james-the-great-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',381),(18728,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-06-03','Corpus Christi',NULL,NULL,'CORPUS-CHRISTI','/corpus-christi/','/corpus-christi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',385),(18727,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-06-29','Saints Peter and Paul',NULL,NULL,'SAINTS-PETER-AND-PAUL','/saints-peter-and-paul/','/saints-peter-and-paul/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',386),(18726,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-06-15','Saint Vladimir',NULL,NULL,'SAINT-VLADIMIR','/saint-vladimir/','/saint-vladimir/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',387),(18725,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-08-01','Lammas',NULL,NULL,'LAMMAS','/lammas/','/lammas/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',388),(18723,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-09-14','Holy Cross Day',NULL,NULL,'HOLY-CROSS-DAY','/holy-cross-day/','/holy-cross-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',390),(18720,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-11-01','All Saints\' Day',NULL,NULL,'ALL-SAINTS-DAY','/all-saints-day/','/all-saints-day/',0,'Y','RH',NULL,'all-saints-day.jpg',NULL,NULL,'2020-09-22',NULL,'Y',393),(18719,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-11-02','All Souls\' Day',NULL,NULL,'ALL-SOULS-DAY','/all-souls-day/','/all-souls-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',395),(18718,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-11-25','Thanksgiving (USA)',NULL,NULL,'THANKSGIVING-USA','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',396),(18716,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-11-30','St. Andrew\'s Day',NULL,NULL,'ST-ANDREWS-DAY','/st-andrews-day/','/st-andrews-day/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',398),(18715,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-12-06','St. Nicholas Day',NULL,NULL,'ST-NICHOLAS-DAY','/st-nicholas-day/','/st-nicholas-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',399),(18711,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-12-31','Watch Night',NULL,NULL,'WATCH-NIGHT','/watch-night/','/watch-night/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',403),(18712,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-12-28','Holy Innocents',NULL,NULL,'HOLY-INNOCENTS','/holy-innocents/','/holy-innocents/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',402),(18709,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-02-12','Chinese New Year',NULL,NULL,'CHINESE-NEW-YEAR','/chinese-new-year/','/chinese-new-year/',0,'','RH',NULL,'chinese-new-year.jpg',NULL,NULL,'2020-09-22',NULL,'Y',658),(18708,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-01-28','Mahayana New Year',NULL,NULL,'MAHAYANA-NEW-YEAR','/mahayana-new-year/','/mahayana-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',473),(18707,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-02-08','Nirvana Day',NULL,NULL,'NIRVANA-DAY','/nirvana-day/','/nirvana-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',475),(18706,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-02-27','Magha Puja Day',NULL,NULL,'MAGHA-PUJA-DAY','/magha-puja-day/','/magha-puja-day/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',476),(18704,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-05-26','Vesak - Buddha Day',NULL,NULL,'VESAK-BUDDHA-DAY','/vesak-day/','/vesak-day/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',478),(18703,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-07-24','Asala - Dharma Day',NULL,NULL,'ASALA-DHARMA-DAY','/asala-dharma-day/','/asala-dharma-day/',0,'','RH',NULL,'asala-dharma-day.jpg',NULL,NULL,'2020-09-22',NULL,'Y',479),(24198,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-06-03','Martyrdom of Guru Arjan Dev Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','/martyrdom-of-guru-arjan-dev-sahib/','/martyrdom-of-guru-arjan-dev-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',486),(24197,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-04-14','Vaisakhi',NULL,NULL,'VAISAKHI','/vaisakhi/','/vaisakhi/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',485),(24192,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-05-15','Second Passover',NULL,NULL,'SECOND-PASSOVER','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',440),(24191,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-04-23','Passover - Final Day',NULL,NULL,'PASSOVER-FINAL-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',441),(24190,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-04-27','Yom Hashoah',NULL,NULL,'YOM-HASHOAH','/yom-hashoah/','/yom-hashoah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',442),(24189,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-05-03','Yom HaZikaron',NULL,NULL,'YOM-HAZIKARON','/yom-hazikaron/','/yom-hazikaron/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',443),(24186,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-05-28','Yom Yerushalayim',NULL,NULL,'YOM-YERUSHALAYIM','/yom-yerushalayim/','/yom-yerushalayim/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',446),(24183,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-07-17','The 17th of Tammuz',NULL,NULL,'THE-17TH-OF-TAMMUZ',NULL,'/the-17th-of-tammuz/',0,'','Religious',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',449),(24182,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-08-06','Tish\'a B\'Av',NULL,NULL,'TISHA-BAV','/tisha-bav/','/tisha-bav/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',450),(24181,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-09-25','Rosh HaShana Starts',NULL,NULL,'ROSH-HASHANAH-STARTS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',451),(24180,'religious','jewish','jewish','','',NULL,'2022','2022-09-27','Rosh HaShana Ends',NULL,NULL,'ROSH-HASHANAH-ENDS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',452),(24179,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-09-28','Fast of Gedaliah',NULL,NULL,'FAST-OF-GEDALIAH','/fast-of-gedaliah/','/fast-of-gedaliah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',453),(24178,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-10-04','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',454),(24177,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-10-09','Sukkot Starts',NULL,NULL,'SUKKOT-STARTS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',455),(24176,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-10-16','Sukkot Ends',NULL,NULL,'SUKKOT-ENDS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',456),(24175,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-10-16','Hoshanah Rabbah',NULL,NULL,'HOSHANAH-RABBAH',NULL,'/hoshanah-rabbah/',0,'','Religious',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',457),(24174,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-10-16','Shmini Atzeret',NULL,NULL,'SHEMINI-ATZERET','/shemini-atzeret/','/shemini-atzeret/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',458),(24173,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-10-18','Simchat Torah',NULL,NULL,'SIMHAT-TORAH','/simhat-torah/','/simhat-torah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',459),(24166,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-04-28','Laylat al Qadr',NULL,NULL,'LAYLAT-AL-KADR','/laylat-al-kadr/','/laylat-al-kadr/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',467),(24162,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-07-30','Hijra - Islamic New Year',NULL,NULL,'HIJRA-ISLAMIC-NEW-YEAR','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',471),(24158,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-12-03','Geeta Jayanti',NULL,NULL,'GEETA-JAYANTI','/geeta-jayanti/','/geeta-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',687),(24157,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-09-17','Vishwakarma Puja',NULL,NULL,'VISHWAKARMA-PUJA','/vishwakarma-puja/','/vishwakarma-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',686),(24154,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-30','Chhath Puja',NULL,NULL,'CHHATH-PUJA','/chhath-puja/','/chhath-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',655),(24153,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-01-14','Makarsankranti / Pongal',0,NULL,'MAKARSANKRANTI-PONGAL','/pongal/','/pongal/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',404),(24150,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-03-01','Maha Shivaratri',NULL,NULL,'MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',407),(24149,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-03-18','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',408),(24148,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-03-22','Hindi New Year',NULL,NULL,'HINDI-NEW-YEAR','/hindi-new-year/','/hindi-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',409),(24147,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-04-02','Ugadi / Gudi Padwa / Telugu New Year',NULL,NULL,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','/ugadi-telugu-new-year/','/ugadi-telugu-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',410),(24146,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-04-10','Ramanavami',NULL,NULL,'RAMANAVAMI','/ramanavami/','/ramanavami/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',411),(24145,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-04-15','Bengali New Year / Bihu',NULL,NULL,'BENGALI-NEW-YEAR-BIHU','/bihu-bengali-new-year/','/bihu-bengali-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',413),(24144,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-04-10','Hanuman Jayanti',NULL,NULL,'HANUMAN-JAYANTI','/hanuman-jayanti/','/hanuman-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',414),(24143,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-05-03','Akshaya Tritiya',0,NULL,'AKSHAYA-TRITIYA','/akshaya-tritiya/','/akshaya-tritiya/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',415),(24137,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-08-11','Raksha Bandhan',NULL,NULL,'RAKSHA-BANDHAN','/raksha-bandhan/','/raksha-bandhan/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',421),(24135,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-08-31','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',423),(24134,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-09-08','Onam',NULL,NULL,'ONAM','/onam/','/onam/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',424),(24131,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-09-26','Navaratri begins',NULL,NULL,'NAVARATRI-BEGINS','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',427),(24124,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-11-08','Kartik Poornima',NULL,NULL,'KARTIK-POORNIMA','/kartik-purnima/','/kartik-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',435),(24123,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-03-02','Ash Wednesday',NULL,NULL,'ASH-WEDNESDAY','/ash-wednesday/','/ash-wednesday/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',657),(24122,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-11-20','Christ the King',NULL,NULL,'CHRIST-THE-KING','/christ-the-king/','/christ-the-king/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',656),(24121,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-01-06','Epiphany',NULL,NULL,'EPIPHANY','/epiphany/','/epiphany/',0,'Y','RH',NULL,'epiphany.jpg',NULL,NULL,'2021-04-20',NULL,'Y',369),(24116,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-03-19','St. Joseph\'s Day',NULL,NULL,'ST-JOSEPHS-DAY','/st-josephs-day-/','/st-josephs-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',374),(24115,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-04-10','Palm Sunday',NULL,NULL,'PALM-SUNDAY','/palm-sunday/','/palm-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',375),(24114,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-04-14','Maundy (Holy) Thursday',NULL,NULL,'MAUNDY-HOLY-THURSDAY','/maundy-thursday/','/maundy-thursday/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',376),(24113,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-04-15','Good Friday ',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-20',NULL,'Y',377),(24111,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-04-17','Easter',NULL,NULL,'EASTER','/easter/','/easter/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2021-04-20',NULL,'Y',379),(24110,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-04-18','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2021-04-20',NULL,'Y',380),(24108,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-05-26','Ascension of Jesus',NULL,NULL,'ASCENSION-OF-JESUS','/ascension-day/','/ascension-day/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',382),(24107,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-06-05','Pentecost',NULL,NULL,'PENTECOST','/pentecost/','/pentecost/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',383),(24106,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-06-12','Trinity Sunday',NULL,NULL,'TRINITY-SUNDAY','/trinity-sunday/','/trinity-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',384),(24105,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-06-16','Corpus Christi',NULL,NULL,'CORPUS-CHRISTI','/corpus-christi/','/corpus-christi/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',385),(24104,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-06-29','Saints Peter and Paul',NULL,NULL,'SAINTS-PETER-AND-PAUL','/saints-peter-and-paul/','/saints-peter-and-paul/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',386),(24102,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-08-01','Lammas',NULL,NULL,'LAMMAS','/lammas/','/lammas/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',388),(24101,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-08-15','The Assumption of Mary',NULL,NULL,'THE-ASSUMPTION-OF-MARY','/the-assumption-of-mary/','/the-assumption-of-mary/',0,'Y','RH',NULL,'the-assumption-of-mary.jpg',NULL,NULL,'2021-04-20',NULL,'Y',389),(24100,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-09-14','Holy Cross Day',NULL,NULL,'HOLY-CROSS-DAY','/holy-cross-day/','/holy-cross-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',390),(24098,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-10-31','All Hallows Eve',NULL,NULL,'ALL-HALLOWS-EVE','/halloween/','/halloween/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',392),(24094,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-11-27','Advent - first Sunday',NULL,NULL,'ADVENT-FIRST-SUNDAY','/advent-first-sunday/','/advent-first-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',397),(24093,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-11-30','St. Andrew\'s Day',NULL,NULL,'ST-ANDREWS-DAY','/st-andrews-day/','/st-andrews-day/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',398),(24092,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-12-06','St. Nicholas Day',NULL,NULL,'ST-NICHOLAS-DAY','/st-nicholas-day/','/st-nicholas-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',399),(24090,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-20',NULL,'Y',401),(24086,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-02-01','Chinese New Year',NULL,NULL,'CHINESE-NEW-YEAR','/chinese-new-year/','/chinese-new-year/',0,'','RH',NULL,'chinese-new-year.jpg',NULL,NULL,'2021-04-20',NULL,'Y',658),(24085,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-01-18','Mahayana New Year',NULL,NULL,'MAHAYANA-NEW-YEAR','/mahayana-new-year/','/mahayana-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',473),(24084,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-02-15','Nirvana Day',NULL,NULL,'NIRVANA-DAY','/nirvana-day/','/nirvana-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',475),(24083,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-02-16','Magha Puja Day',NULL,NULL,'MAGHA-PUJA-DAY','/magha-puja-day/','/magha-puja-day/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',476),(24081,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-05-16','Vesak - Buddha Day',NULL,NULL,'VESAK-BUDDHA-DAY','/vesak-day/','/vesak-day/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',478),(24080,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-07-13','Asala - Dharma Day',NULL,NULL,'ASALA-DHARMA-DAY','/asala-dharma-day/','/asala-dharma-day/',0,'','RH',NULL,'asala-dharma-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',479),(15263,'state','california','us','Americas','California',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6148),(15262,'state','california','us','Americas','California',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6147),(15250,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5051),(15249,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5050),(15248,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5049),(15247,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5048),(15246,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5047),(15245,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5046),(15244,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5045),(15242,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5043),(15237,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5028),(15235,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5026),(15230,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','H','christmas.jpg',NULL,'(1/2 day)','2020-03-15',NULL,'Y',5065),(15229,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-11-27','Day after Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5064),(15228,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5063),(15227,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5062),(15226,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-11-03','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5061),(15225,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5060),(15224,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5059),(15222,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-06-19','West Virginia Day (observed)',NULL,'','WEST-VIRGINIA-DAY','/memorial-day/','/memorial-day/',0,'','OB',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5057),(15219,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5054),(15216,'state','washington','us','Americas','Washington',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5042),(15210,'state','washington','us','Americas','Washington',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5036),(15208,'state','washington','us','Americas','Washington',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5034),(15207,'state','washington','us','Americas','Washington',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5033),(15206,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6593),(15205,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6592),(15204,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'8 hours additional holiday time','2020-03-15',NULL,'Y',5079),(15199,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5074),(15197,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5072),(15189,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5087),(15187,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5085),(15186,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5084),(15184,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5082),(15182,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5080),(15180,'state','utah','us','Americas','Utah',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5023),(15179,'state','utah','us','Americas','Utah',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5020),(15178,'state','utah','us','Americas','Utah',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5019),(15177,'state','utah','us','Americas','Utah',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5018),(15175,'state','utah','us','Americas','Utah',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5016),(15174,'state','utah','us','Americas','Utah',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5015),(15173,'state','utah','us','Americas','Utah',NULL,'2020','2020-02-17','Washington & Lincoln Day',NULL,'','WASHINGTON-LINCOLN-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5014),(15171,'state','utah','us','Americas','Utah',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5012),(15170,'state','texas','us','Americas','Texas',NULL,'2020','2020-12-26','Day After Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6590),(15169,'state','texas','us','Americas','Texas',NULL,'2020','2020-09-19','Rosh Hashanah',NULL,NULL,'ROSH-HASHANAH','/rosh-hashanah/','/rosh-hashanah/',0,'','OH',NULL,NULL,NULL,'Optional Holiday','2020-03-15',NULL,'Y',6589),(15168,'state','texas','us','Americas','Texas',NULL,'2020','2020-09-28','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','OH',NULL,NULL,NULL,'Optional Holiday','2020-03-15',NULL,'Y',6588),(15167,'state','texas','us','Americas','Texas',NULL,'2020','2020-08-27','LBJ\'s Birthday',NULL,'','LBJS-BIRTHDAY',NULL,'/lyndon-b-johnson-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2020-03-15',NULL,'Y',6587),(15166,'state','texas','us','Americas','Texas',NULL,'2020','2020-06-19','Emancipation Day',NULL,'','EMANCIPATION-DAY','/emancipation-day/','/emancipation-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2020-03-15',NULL,'Y',6586),(15165,'state','texas','us','Americas','Texas',NULL,'2020','2020-04-21','San Jacinto Day',NULL,'','SAN-JACINTO-DAY',NULL,'/san-jacinto-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2020-03-15',NULL,'Y',6585),(15164,'state','texas','us','Americas','Texas',NULL,'2020','2020-03-02','Texas Independence Day',NULL,'','TEXAS-INDEPENDENCE-DAY',NULL,'/texas-independence-day/',0,'Y','RH',NULL,'',NULL,'Skeleton Crew Required','2020-03-15',NULL,'Y',6584),(15163,'state','texas','us','Americas','Texas',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OH',NULL,'good-friday.jpg',NULL,'Optional Holiday','2020-03-15',NULL,'Y',6583),(15162,'state','texas','us','Americas','Texas',NULL,'2020','2020-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','OH',NULL,'',NULL,'Optional Holiday','2020-03-15',NULL,'Y',6582),(15161,'state','texas','us','Americas','Texas',NULL,'2020','2020-01-19','Confederate Heroes\' Day',NULL,'','CONFEDERATE-HEROES-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',6581),(15156,'state','texas','us','Americas','Texas',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5097),(15155,'state','texas','us','Americas','Texas',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5096),(15154,'state','texas','us','Americas','Texas',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5095),(15153,'state','texas','us','Americas','Texas',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5094),(15152,'state','texas','us','Americas','Texas',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5093),(15148,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5010),(15147,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5009),(15146,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-11-27','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5008),(15145,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5007),(15144,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5006),(15143,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5005),(15142,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5004),(15141,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5003),(15140,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5002),(15139,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5001),(15128,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4980),(15126,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4978),(15125,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-05-25','National Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6579),(15124,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-02-17','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6578),(15123,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6236),(15122,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-12-28','Day after Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6235),(15120,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6233),(15119,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6232),(15118,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6231),(15117,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-07-03','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6230),(15115,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-01-20','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6227),(15114,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6226),(15112,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4977),(15108,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4973),(15107,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4972),(15103,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-01-20','Dr.Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4968),(15102,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4967),(15101,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-07-03','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6576),(15100,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6133),(15099,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6132),(15096,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6129),(15095,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6128),(15094,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6127),(15093,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6126),(15092,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6125),(15090,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6123),(15088,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4966),(15089,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6575),(15087,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4965),(15079,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4957),(15078,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4956),(15072,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4950),(15070,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-01-20','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4948),(15069,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4947),(15068,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-07-03','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6574),(15067,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6122),(15066,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-11-26','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6121),(15065,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6120),(15064,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6119),(15062,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-07-04','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6117),(15061,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6116),(15060,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6115),(15059,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6114),(15058,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6113),(15054,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4944),(15053,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4943),(15052,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4942),(15049,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4939),(15048,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4938),(15046,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4936),(15033,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-12-28','Christmas Holiday',NULL,'','CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'','OB',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6572),(15032,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6571),(15029,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-11-27','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6110),(15028,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6109),(15027,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6108),(15026,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6107),(15025,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6106),(15024,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6105),(15023,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6104),(15019,'state','new-york','us','Americas','New York',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4923),(15018,'state','new-york','us','Americas','New York',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4922),(15015,'state','new-york','us','Americas','New York',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4919),(15014,'state','new-york','us','Americas','New York',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4918),(15013,'state','new-york','us','Americas','New York',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4917),(15012,'state','new-york','us','Americas','New York',NULL,'2020','2020-02-17','Washington\'s Birthday (observed)',NULL,'','WASHINGTONS-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','OB',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4916),(15011,'state','new-york','us','Americas','New York',NULL,'2020','2020-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4915),(15006,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6223),(15005,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-11-11','Veterans\' Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6222),(15004,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-10-12','Indigenous Peoples\' Day',NULL,'','INDIGENOUS-PEOPLE-DAY',NULL,'/indigenous-peoples-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6221),(15003,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6220),(15001,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6218),(15002,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6219),(14998,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6569),(14997,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6180),(14996,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6177),(14995,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6176),(14994,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-11-03','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',6175),(14993,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6174),(14991,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6172),(14987,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6568),(14986,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-01-20','Martin Luther King, Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6167),(14985,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6166),(14981,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4910),(14980,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4909),(14979,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4908),(14978,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4907),(14977,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4906),(14976,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4905),(14973,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6566),(14972,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4902),(14971,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-11-27','Family Day',NULL,'','FAMILY-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,'Friday following the Fourth Thursday in November.','2020-03-14',NULL,'Y',4901),(14970,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4900),(14969,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4899),(14968,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-10-30','Nevada Day',NULL,'','NEVADA-DAY','/nevada-day/','/nevada-day/',0,'','RH',NULL,'',NULL,'Last Friday in October','2020-03-14',NULL,'Y',4898),(14967,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4897),(14966,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4896),(14965,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4895),(14964,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4894),(14962,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4892),(14958,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4889),(14957,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4888),(14956,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4887),(14953,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4884),(14951,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4882),(14950,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4881),(14949,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4880),(14948,'state','montana','us','Americas','Montana',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6564),(14947,'state','montana','us','Americas','Montana',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4879),(14946,'state','montana','us','Americas','Montana',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4878),(14945,'state','montana','us','Americas','Montana',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4877),(14944,'state','montana','us','Americas','Montana',NULL,'2020','2020-11-03','General Election Day',NULL,'','GENERAL-ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4876),(14943,'state','montana','us','Americas','Montana',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4875),(14939,'state','montana','us','Americas','Montana',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4871),(14938,'state','montana','us','Americas','Montana',NULL,'2020','2020-01-20','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4870),(14937,'state','montana','us','Americas','Montana',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4869),(14936,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6563),(14935,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4867),(14934,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4866),(14933,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4865),(14929,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4861),(14928,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-05-08','Truman Day',NULL,'','TRUMAN-DAY','/truman-day/','/truman-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4860),(14927,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-02-17','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4859),(14926,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-02-12','Lincoln Day',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4858),(14925,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4857),(14923,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-05-25','Jefferson Davis’ Birthday',NULL,'','JEFFERSON-DAVIS-BIRTHDAY','/jefferson-davis-birthday/','/jefferson-davis-birthday/',0,'','RH',NULL,'',NULL,'The last Monday of May','2020-03-14',NULL,'Y',6562),(14922,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-01-20','Robert E. Lee\'s Birthday',NULL,'','ROBERT-E-LEES-BIRTHDAY',NULL,'/robert-e-lee-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',6561),(14921,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6192),(14920,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6191),(14919,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6190),(14918,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6189),(14917,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6188),(14916,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6187),(14915,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6186),(14914,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-04-27','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,'The last Monday of April','2020-03-14',NULL,'Y',6185),(14913,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-02-17','Washington\'s Birthday',NULL,'','WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6184),(14912,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6183),(14911,'state','mississippi','us','Americas','Mississippi',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6182),(14909,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4855),(14905,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4851),(14904,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4850),(14903,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4849),(14900,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4845),(14899,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4844),(14898,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6558),(14897,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4843),(14896,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4842),(14895,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4841),(14894,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4840),(14893,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4839),(14892,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4838),(14891,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-11-03','General Election Day',NULL,'','GENERAL-ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-13',NULL,'Y',4837),(14887,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4833),(14885,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4831),(14884,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4830),(14883,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4829),(14882,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,'Restrictions until 1pm','2020-03-13',NULL,'Y',4828),(14879,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4825),(14878,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4824),(14877,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-04-20','Patriots\' Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH',NULL,'',NULL,'Third Monday in April','2020-03-13',NULL,'Y',4823),(14876,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-02-17','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4822),(14875,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4821),(14874,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4820),(14873,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6557),(14872,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4819),(14870,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4817),(14866,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4813),(14846,'state','maine','us','Americas','Maine',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4807),(14840,'state','maine','us','Americas','Maine',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4801),(14838,'state','maine','us','Americas','Maine',NULL,'2020','2020-04-20','Patriot\'s Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-13',NULL,'Y',4799),(14839,'state','maine','us','Americas','Maine',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4800),(14837,'state','maine','us','Americas','Maine',NULL,'2020','2020-02-17','Washington\'s Birthday',NULL,'','WASHINGTONS-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4798),(14833,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6554),(14831,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4794),(14830,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4793),(14829,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4792),(14824,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-01-20','Birthday of Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4787),(14823,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4786),(14822,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6146),(14821,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6145),(14819,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-11-27','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6143),(14818,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6142),(14817,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6141),(14812,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6136),(14810,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6134),(14809,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6553),(14804,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4781),(14803,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4780),(14802,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4779),(14801,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4778),(14800,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4777),(14799,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4776),(14798,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6552),(14796,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-11-27','Friday After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4774),(14795,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4773),(14794,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4772),(14793,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4771),(14792,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4770),(14791,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4769),(14790,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4768),(14789,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4767),(14788,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4766),(14787,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-12-24','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4765),(14786,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-11-27','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4764),(14785,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4763),(14784,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4762),(14783,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-11-03','General Election Day',NULL,'','GENERAL-ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4761),(14782,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4760),(14773,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6551),(14771,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-11-27','Thanksgiving Holiday',NULL,'','THANKSGIVING-DAY-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4750),(14769,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4748),(14768,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-11-03','General Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4747),(14767,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4746),(14763,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-02-17','Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4742),(14762,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-DAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4741),(14761,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-01-20','Martin Luther King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4740),(14760,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4739),(14759,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6550),(14758,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4738),(14757,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4737),(14756,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4736),(14755,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4735),(14754,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4734),(14753,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4733),(14752,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4732),(14751,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4731),(14750,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-01-20','M L King Jr./Idaho Human Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4730),(14749,'state','idaho','us','Americas','Idaho',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,'','2020-03-12',NULL,'Y',4729),(14748,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,'The fourth day in July','2020-03-12',NULL,'Y',6549),(14745,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,'The eleventh day in November','2020-03-12',NULL,'Y',4726),(14744,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-11-03','General Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','OB',NULL,'',NULL,'The first Tuesday in Nov. following the first Monday of even numbered years.','2020-03-12',NULL,'Y',4725),(14742,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-08-21','Statehood Day',NULL,'','STATEHOOD-DAY','/statehood-day-hawaii/','/statehood-day-hawaii/',0,'Y','RH',NULL,'',NULL,'The third Friday in August','2020-03-12',NULL,'Y',4723),(14741,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4722),(14740,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-06-11','King Kamehameha I Day',NULL,'','KING-KAMEHAMEHA-DAY','/kamehameha-day/','/kamehameha-day/',0,'Y','RH',NULL,'',NULL,'The eleventh day in June','2020-03-12',NULL,'Y',4721),(14738,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,'The Friday preceding Easter Sunday','2020-03-12',NULL,'Y',4719),(14737,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-03-26','Prince Kuhio Day',NULL,'','KUHIO-KALANIANAOLE-DAY','/kuhio-day/','/kuhio-day/',0,'Y','RH',NULL,'',NULL,'The twenty-sixth day in March','2020-03-12',NULL,'Y',4718),(14736,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-02-17','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,'The third Monday in February','2020-03-12',NULL,'Y',4717),(14722,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-01-20','Martin Luther King Jr\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4704),(14721,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4703),(14720,'state','florida','us','Americas','Florida',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6547),(14713,'state','florida','us','Americas','Florida',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6159),(14708,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4701),(14707,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4700),(14705,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-11-05','Return Day (after 12 noon Sussex County)',NULL,'','RETURN-DAY',NULL,'/return-day-delaware/',0,'','RH',NULL,'',NULL,'Announcement of the election results in Georgetown','2020-03-12',NULL,'Y',4698),(14704,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-11-03','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4697),(14016,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4687),(14007,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6204),(14000,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6196),(13999,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6195),(13967,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-01-20','Martin Luther King, Jr./Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4554),(13968,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-02-17','Lincoln/Washington Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4555),(13969,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4556),(13970,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4557),(13971,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4558),(13972,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4559),(13973,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4560),(13974,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4561),(13975,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4562),(13976,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6205),(13977,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6206),(13978,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-02-17','George Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6207),(13979,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6208),(13980,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-07-03','Independence Day Holiday',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6209),(13981,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6210),(13982,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6211),(13983,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6212),(15279,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4548),(15278,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4547),(15264,'state','california','us','Americas','California',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6149),(15265,'state','california','us','Americas','California',NULL,'2020','2020-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',6150),(15266,'state','california','us','Americas','California',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6151),(15267,'state','california','us','Americas','California',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6152),(15268,'state','california','us','Americas','California',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6153),(15269,'state','california','us','Americas','California',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6154),(15270,'state','california','us','Americas','California',NULL,'2020','2020-11-27','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6155),(15271,'state','california','us','Americas','California',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6156),(15272,'state','california','us','Americas','California',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6594),(15273,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-02-17','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4544),(15274,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-01-20','MLK Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4543),(15275,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4542),(15276,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-03-30','Seward\'s Day',NULL,'','SEWARDS-DAY','/sewards-day/','/sewards-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',4545),(15277,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4546),(19604,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5060),(19603,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5059),(19602,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5058),(19600,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5056),(19599,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5054),(19598,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5053),(19588,'state','washington','us','Americas','Washington',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5034),(19589,'state','washington','us','Americas','Washington',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5035),(19590,'state','washington','us','Americas','Washington',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5036),(19591,'state','washington','us','Americas','Washington',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5037),(19592,'state','washington','us','Americas','Washington',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5038),(19593,'state','washington','us','Americas','Washington',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5039),(19594,'state','washington','us','Americas','Washington',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5040),(19595,'state','washington','us','Americas','Washington',NULL,'2021','2021-11-26','Native American Heritage Day',NULL,'','AMERICAN-HERITAGE-DAY',NULL,'/native-americans-heritage-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',5041),(19609,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5066),(19608,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','H','christmas.jpg',NULL,'(1/2 day)','2020-10-03',NULL,'Y',5065),(19607,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-11-26','Day after Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5064),(19606,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5063),(19605,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5062),(19587,'state','washington','us','Americas','Washington',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5033),(19586,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6593),(19583,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5078),(19582,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-11-24','Thanksgiving Eve',NULL,'','THANKSGIVING-EVE','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','H','thanksgiving-day.jpg',NULL,'4 hours additional holiday time','2020-10-03',NULL,'Y',5077),(19581,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5076),(19579,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5074),(19572,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5090),(19570,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5088),(19568,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-08-16','Bennington Battle Day',NULL,'','BENNINGTON-BATTLE-DAY','/bennington-battle-day/','/bennington-battle-day/',0,'Y','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',5086),(19567,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5085),(19566,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5084),(19565,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-03-02','Town Meeting Day',NULL,'','TOWN-MEETING-DAY','/town-meeting-day/','/town-meeting-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',5083),(19564,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5082),(19563,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5081),(19562,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5080),(19561,'state','utah','us','Americas','Utah',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6591),(19560,'state','utah','us','Americas','Utah',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5023),(19559,'state','utah','us','Americas','Utah',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5020),(19558,'state','utah','us','Americas','Utah',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5019),(19557,'state','utah','us','Americas','Utah',NULL,'2021','2021-08-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5018),(19554,'state','utah','us','Americas','Utah',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5015),(19553,'state','utah','us','Americas','Utah',NULL,'2021','2021-02-15','Washington & Lincoln Day',NULL,'','WASHINGTON-LINCOLN-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5014),(19546,'state','texas','us','Americas','Texas',NULL,'2021','2021-06-19','Emancipation Day',NULL,'','EMANCIPATION-DAY','/emancipation-day/','/emancipation-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2020-10-03',NULL,'Y',6586),(19544,'state','texas','us','Americas','Texas',NULL,'2021','2021-03-02','Texas Independence Day',NULL,'','TEXAS-INDEPENDENCE-DAY',NULL,'/texas-independence-day/',0,'Y','RH',NULL,'',NULL,'Skeleton Crew Required','2020-10-03',NULL,'Y',6584),(19529,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5011),(19526,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-11-26','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5008),(19525,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5007),(19524,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5006),(19523,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5005),(19522,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5004),(19521,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5003),(19520,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5002),(19519,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5001),(19518,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-01-18','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5000),(19517,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4999),(19514,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4986),(19510,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4982),(19509,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4981),(19508,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4980),(19505,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-05-31','National Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6579),(19504,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-02-15','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6578),(19503,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6236),(19502,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-12-28','Day after Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6235),(19501,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-11-26','Day after Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6234),(19500,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6233),(19499,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6232),(19497,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-07-05','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6230),(19496,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-05-10','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',6229),(19493,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-07-05','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6577),(19492,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4977),(19491,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4976),(19490,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4975),(19489,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4973),(19483,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4967),(19482,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-07-05','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6576),(19481,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6133),(19480,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6132),(19477,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6129),(19476,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6128),(19475,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6127),(19474,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6126),(19473,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6125),(19472,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-01-18','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6124),(19471,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6123),(19469,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4966),(19467,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4964),(19466,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4963),(19464,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4961),(19462,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-01-18','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4959),(19450,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4947),(19449,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6574),(19442,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6116),(19441,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6115),(19440,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6114),(19439,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6113),(19438,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6573),(19437,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4946),(19435,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4944),(19434,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4943),(19433,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4942),(19432,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4941),(19431,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4940),(19430,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4939),(19429,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4938),(19426,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-12-28','Christmas Holiday',NULL,'','CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'','OB',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6572),(19425,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6571),(19424,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6112),(19423,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6111),(19422,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-11-26','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6110),(19419,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6107),(19418,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6106),(19415,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-01-18','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6103),(19414,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6102),(19413,'state','new-york','us','Americas','New York',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4924),(19412,'state','new-york','us','Americas','New York',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4923),(19411,'state','new-york','us','Americas','New York',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4922),(19410,'state','new-york','us','Americas','New York',NULL,'2021','2021-11-02','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',4921),(19409,'state','new-york','us','Americas','New York',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4920),(19408,'state','new-york','us','Americas','New York',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4919),(19407,'state','new-york','us','Americas','New York',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4918),(19406,'state','new-york','us','Americas','New York',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4917),(19405,'state','new-york','us','Americas','New York',NULL,'2021','2021-02-15','Washington\'s Birthday (observed)',NULL,'','WASHINGTONS-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','OB',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4916),(19399,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6223),(19398,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-11-11','Veterans\' Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6222),(19397,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-10-11','Indigenous Peoples\' Day',NULL,'','INDIGENOUS-PEOPLE-DAY',NULL,'/indigenous-peoples-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6221),(19396,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6220),(19395,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6219),(19394,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6218),(19393,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6217),(19392,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6216),(19389,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6177),(19380,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-01-18','Martin Luther King, Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6167),(19377,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4912),(19375,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4910),(19374,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4909),(19373,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4908),(19372,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4907),(19371,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-03-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4906),(19370,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4905),(19368,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4903),(19365,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-11-26','Family Day',NULL,'','FAMILY-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,'Friday following the Fourth Thursday in November.','2020-10-03',NULL,'Y',4901),(19364,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4900),(19363,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4899),(19359,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4895),(19358,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4894),(19355,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6565),(19353,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4890),(19352,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4889),(19351,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4888),(19349,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4886),(19348,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4885),(19347,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4884),(19346,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-04-30','Arbor Day',NULL,'','ARBOR-DAY','/arbor-day/','/arbor-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',4883),(19345,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4882),(19344,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4881),(19343,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4880),(19342,'state','montana','us','Americas','Montana',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6564),(19341,'state','montana','us','Americas','Montana',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4879),(19340,'state','montana','us','Americas','Montana',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4878),(19339,'state','montana','us','Americas','Montana',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4877),(19338,'state','montana','us','Americas','Montana',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4875),(19337,'state','montana','us','Americas','Montana',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4874),(19336,'state','montana','us','Americas','Montana',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4873),(19335,'state','montana','us','Americas','Montana',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4872),(19334,'state','montana','us','Americas','Montana',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4871),(19333,'state','montana','us','Americas','Montana',NULL,'2021','2021-01-18','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4870),(19332,'state','montana','us','Americas','Montana',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4869),(19328,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4865),(19327,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4864),(19326,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4863),(19320,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4857),(19319,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4856),(19318,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-01-18','Robert E. Lee\'s Birthday',NULL,'','ROBERT-E-LEES-BIRTHDAY',NULL,'/robert-e-lee-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',6561),(19317,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6192),(19316,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6191),(19315,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6190),(19314,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6189),(19313,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6188),(19310,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-04-26','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,'The last Monday of April','2020-10-01',NULL,'Y',6185),(19309,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-02-17','Washington\'s Birthday',NULL,'','WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6184),(19308,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6183),(19307,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6182),(19305,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4855),(19300,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4850),(19297,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4846),(19296,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4845),(19295,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4844),(19294,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6558),(19293,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4843),(19292,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4842),(19286,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4835),(19283,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4832),(19280,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4829),(19279,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,'Restrictions until 1pm','2020-10-01',NULL,'Y',4828),(19277,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4826),(19276,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4825),(19275,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4824),(19274,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-04-19','Patriots\' Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH',NULL,'',NULL,'Third Monday in April','2020-10-01',NULL,'Y',4823),(19273,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-02-15','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4822),(19272,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4821),(19267,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4817),(19266,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4816),(19265,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4814),(19260,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-01-18','Dr. Martin Luther King, Jr., Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4809),(19259,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4808),(19258,'state','maine','us','Americas','Maine',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6556),(19257,'state','maine','us','Americas','Maine',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4807),(19254,'state','maine','us','Americas','Maine',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4804),(19251,'state','maine','us','Americas','Maine',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4801),(19250,'state','maine','us','Americas','Maine',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4800),(19249,'state','maine','us','Americas','Maine',NULL,'2021','2021-04-19','Patriot\'s Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4799),(19248,'state','maine','us','Americas','Maine',NULL,'2021','2021-02-15','Washington\'s Birthday',NULL,'','WASHINGTONS-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4798),(19247,'state','maine','us','Americas','Maine',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4797),(19246,'state','maine','us','Americas','Maine',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4796),(19245,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6554),(19244,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4795),(19243,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4794),(19242,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4793),(19241,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4792),(19240,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4791),(19236,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-01-18','Birthday of Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4787),(19235,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4786),(19234,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6146),(19232,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6144),(19228,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6139),(19227,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6138),(19226,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6137),(19224,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-01-18','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6135),(19222,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6553),(19220,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4784),(19218,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4782),(19216,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4780),(19213,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4777),(19212,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4776),(19211,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6552),(19207,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4771),(19204,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4768),(19202,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4766),(19193,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4756),(19192,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4754),(19188,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-12-24','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4751),(19183,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4746),(19182,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4745),(19181,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4744),(19180,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4743),(19179,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-02-15','Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4742),(19178,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-DAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4741),(19177,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-01-18','Martin Luther King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4740),(19176,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4739),(19175,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6550),(19174,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-12-24','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4738),(19173,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4737),(19172,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4736),(19171,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4735),(19170,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4734),(19169,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4733),(19168,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4732),(19167,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4731),(19166,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-01-18','M L King Jr./Idaho Human Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4730),(19164,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,'The fourth day in July','2020-10-01',NULL,'Y',6549),(19163,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-12-24','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'The twenty-fifth day in December','2020-10-01',NULL,'Y',4728),(19161,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,'The eleventh day in November','2020-10-01',NULL,'Y',4726),(19160,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,'The first Monday in September','2020-10-01',NULL,'Y',4724),(19159,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-08-20','Statehood Day',NULL,'','STATEHOOD-DAY','/statehood-day-hawaii/','/statehood-day-hawaii/',0,'Y','RH',NULL,'',NULL,'The third Friday in August','2020-10-01',NULL,'Y',4723),(19158,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4722),(19157,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-06-11','King Kamehameha I Day',NULL,'','KING-KAMEHAMEHA-DAY','/kamehameha-day/','/kamehameha-day/',0,'Y','RH',NULL,'',NULL,'The eleventh day in June','2020-10-01',NULL,'Y',4721),(19156,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,'The last Monday in May','2020-10-01',NULL,'Y',4720),(19155,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,'The Friday preceding Easter Sunday','2020-10-01',NULL,'Y',4719),(19154,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-03-26','Prince Kuhio Day',NULL,'','KUHIO-KALANIANAOLE-DAY','/kuhio-day/','/kuhio-day/',0,'Y','RH',NULL,'',NULL,'The twenty-sixth day in March','2020-10-01',NULL,'Y',4718),(19153,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-02-15','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,'The third Monday in February','2020-10-01',NULL,'Y',4717),(19150,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6548),(19146,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4711),(19141,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-04-26','State Holiday',NULL,'','STATE-HOLIDAY','/state-holiday-georgia/','/state-holiday-georgia/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4706),(19139,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-01-18','Martin Luther King Jr\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4704),(19138,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4703),(19137,'state','florida','us','Americas','Florida',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6547),(19136,'state','florida','us','Americas','Florida',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6165),(19135,'state','florida','us','Americas','Florida',NULL,'2021','2021-11-26','Fridayay After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6164),(19134,'state','florida','us','Americas','Florida',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6163),(19133,'state','florida','us','Americas','Florida',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6162),(19132,'state','florida','us','Americas','Florida',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6161),(19131,'state','florida','us','Americas','Florida',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6160),(19130,'state','florida','us','Americas','Florida',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6159),(19128,'state','florida','us','Americas','Florida',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6157),(19122,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-11-02','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4697),(19118,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4693),(19115,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4690),(19106,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4681),(19105,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-01-18','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4680),(19104,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4679),(19103,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6204),(19101,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6201),(19098,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6198),(19097,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6197),(19096,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6196),(19095,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6195),(19094,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6194),(19093,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6193),(19091,'state','california','us','Americas','California',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6156),(19083,'state','california','us','Americas','California',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6148),(19082,'state','california','us','Americas','California',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6147),(19078,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6212),(19077,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6211),(19074,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6208),(19073,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-02-15','George Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6207),(19072,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6206),(19071,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6205),(19070,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-12-24','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4562),(19069,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4561),(19068,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4560),(19067,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4559),(19059,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-01-18','Martin Luther King, Jr./Robert E. Lee Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4529),(19058,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-02-15','George Washington/Thomas Jefferson\'s Birthday',NULL,'','GEORGE-WASHINGTON','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4530),(19056,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-04-26','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4532),(19052,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4536),(19049,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4539),(19048,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-12-01','Mrs. Rosa L. Parks Day (Commemoration Only)',NULL,'','ROSA-PARKS-DAY','/rosa-parks-day/','/rosa-parks-day/',0,'','OB','N','',NULL,NULL,'2020-10-01',NULL,'Y',4540),(19047,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-12-24','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4541),(19046,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4552),(19045,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4551),(19044,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4550),(19039,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-03-29','Seward\'s Day',NULL,'','SEWARDS-DAY','/sewards-day/','/sewards-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4545),(19038,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4542),(19037,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-01-18','MLK Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4543),(24879,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5030),(24878,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','H','new-years-day.jpg',NULL,'(1/2 day)','2021-04-22',NULL,'Y',5067),(24877,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5066),(24876,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','H','christmas.jpg',NULL,'(1/2 day)','2021-04-22',NULL,'Y',5065),(24875,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5052),(24871,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-06-20','West Virginia Day (observed)',NULL,'','WEST-VIRGINIA-DAY',NULL,'/west-virginia-day/',0,'','OB',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',5057),(24869,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5059),(24868,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5060),(24867,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5062),(24865,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5063),(24864,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6593),(24863,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6592),(24861,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5068),(24860,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-01-14','Lee-Jackson Day',NULL,'','LEE-JACKSON-DAY','/lee-jackson-day/','/lee-jackson-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',5069),(24859,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-01-17','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5070),(24858,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-02-21','George Washington Day',NULL,'','GEORGE-WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5071),(24855,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5074),(24852,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-11-23','Thanksgiving Eve',NULL,'','THANKSGIVING-EVE','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','H','thanksgiving-day.jpg',NULL,'4 hours additional holiday time','2021-04-22',NULL,'Y',5077),(24851,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5078),(24850,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12358),(24849,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5090),(24848,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5089),(24839,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-08-16','Bennington Battle Day',NULL,'','BENNINGTON-BATTLE-DAY','/bennington-battle-day/','/bennington-battle-day/',0,'Y','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',5086),(24838,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12357),(24837,'state','utah','us','Americas','Utah',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6591),(24836,'state','utah','us','Americas','Utah',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5023),(24835,'state','utah','us','Americas','Utah',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5020),(24834,'state','utah','us','Americas','Utah',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5012),(24833,'state','utah','us','Americas','Utah',NULL,'2022','2022-01-17','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5013),(24832,'state','utah','us','Americas','Utah',NULL,'2022','2022-02-21','Washington & Lincoln Day',NULL,'','WASHINGTON-LINCOLN-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5014),(24831,'state','utah','us','Americas','Utah',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5015),(24830,'state','utah','us','Americas','Utah',NULL,'2022','2022-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12355),(24829,'state','utah','us','Americas','Utah',NULL,'2022','2022-07-24','Pioneer Day',NULL,'','PIONEER-DAY','/pioneer-day/','/pioneer-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',5017),(24824,'state','texas','us','Americas','Texas',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5091),(24822,'state','texas','us','Americas','Texas',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5093),(24821,'state','texas','us','Americas','Texas',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5094),(24820,'state','texas','us','Americas','Texas',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5095),(24818,'state','texas','us','Americas','Texas',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5097),(24816,'state','texas','us','Americas','Texas',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5099),(24814,'state','texas','us','Americas','Texas',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6101),(24815,'state','texas','us','Americas','Texas',NULL,'2022','2022-12-24','Christmas Eve Day',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6100),(24811,'state','texas','us','Americas','Texas',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OH',NULL,'good-friday.jpg',NULL,'Optional Holiday','2021-04-22',NULL,'Y',6583),(24810,'state','texas','us','Americas','Texas',NULL,'2022','2022-03-02','Texas Independence Day',NULL,'','TEXAS-INDEPENDENCE-DAY',NULL,'/texas-independence-day/',0,'Y','RH',NULL,'',NULL,'Skeleton Crew Required','2021-04-22',NULL,'Y',6584),(24809,'state','texas','us','Americas','Texas',NULL,'2022','2022-04-21','San Jacinto Day',NULL,'','SAN-JACINTO-DAY',NULL,'/san-jacinto-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2021-04-22',NULL,'Y',6585),(24808,'state','texas','us','Americas','Texas',NULL,'2022','2022-08-27','LBJ\'s Birthday',NULL,'','LBJS-BIRTHDAY',NULL,'/lyndon-b-johnson-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2021-04-22',NULL,'Y',6587),(24807,'state','texas','us','Americas','Texas',NULL,'2022','2022-06-19','Emancipation Day',NULL,'','EMANCIPATION-DAY','/emancipation-day/','/emancipation-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2021-04-22',NULL,'Y',6586),(24806,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5011),(24805,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5010),(24804,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5009),(24803,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-11-26','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5008),(24801,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5006),(24793,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12353),(24792,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4978),(24791,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4979),(24790,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4980),(24789,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4981),(24788,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4982),(24787,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4983),(24784,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4986),(24781,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-02-21','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6578),(24780,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6226),(24776,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-07-04','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6230),(24775,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6231),(24774,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6232),(24759,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4976),(24758,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12351),(24757,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6123),(24755,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6125),(24752,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6128),(24750,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6130),(24749,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6131),(24748,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6133),(24747,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6132),(24745,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4958),(24744,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-01-17','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4959),(24743,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4960),(24742,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4961),(24741,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4962),(24740,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4963),(24739,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4964),(24738,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4965),(24737,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4966),(24736,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12350),(24735,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4957),(24734,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4956),(24733,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4947),(24727,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4953),(24725,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-11-25','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4955),(24724,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6574),(24723,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6122),(24718,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6117),(24716,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6115),(24714,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6113),(24713,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12348),(24711,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-01-17','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4937),(24708,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4940),(24704,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4944),(24703,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4946),(24702,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'Office will close at noon','2021-04-22',NULL,'Y',4945),(24699,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-12-26','Christmas Holiday',NULL,'','CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'','OB',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6572),(24697,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6102),(24696,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-01-17','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6103),(24676,'state','new-york','us','Americas','New York',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4922),(24675,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6216),(24674,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6217),(24673,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6218),(24672,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6219),(24671,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6220),(24670,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-10-10','Indigenous Peoples\' Day',NULL,'','INDIGENOUS-PEOPLE-DAY',NULL,'/indigenous-peoples-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6221),(24669,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-11-11','Veterans\' Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6222),(24668,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6223),(24667,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-11-25','Presidents\' Day (observed)',NULL,'','PRESIDENTS-DAY-HOLIDAY','/presidents-day/','/presidents-day/',0,'','OB',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6224),(24666,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6225),(24665,'state','new-mexico','us','Americas','New Mexico',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12344),(24664,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6568),(24663,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12343),(24662,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6180),(24661,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6166),(24660,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-01-17','Martin Luther King, Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6167),(24657,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6171),(24656,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6173),(24652,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6177),(24650,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4739),(24647,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-02-21','Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4742),(24646,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4743),(24645,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4744),(24644,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4745),(24642,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4748),(24640,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-11-25','Thanksgiving Holiday',NULL,'','THANKSGIVING-DAY-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4750),(24636,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6194),(24635,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6196),(24634,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6198),(24632,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-10-03','Cabrini Day',NULL,'','CABRINI-DAY',NULL,'/cabrini-day/',0,'','RH',NULL,'',NULL,'The first Monday of October','2021-04-22',NULL,'Y',6200),(24631,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6203),(24630,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6201),(24629,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6215),(24628,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6214),(24627,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6205),(24626,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6206),(24618,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4808),(24617,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-01-17','Dr. Martin Luther King, Jr., Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4809),(24616,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-02-21','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4810),(24615,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4811),(24614,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4812),(24613,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4813),(24612,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4814),(24611,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4816),(24610,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4817),(24609,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4819),(24606,'state','california','us','Americas','California',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6148),(24605,'state','california','us','Americas','California',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6149),(24604,'state','california','us','Americas','California',NULL,'2022','2022-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',6150),(24603,'state','california','us','Americas','California',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6151),(24602,'state','california','us','Americas','California',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6152),(24601,'state','california','us','Americas','California',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6153),(24572,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4903),(24571,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-01-17','Martin Luther King Jr./ Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4904),(24570,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4905),(24569,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-03-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4906),(24568,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4907),(24567,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4908),(24566,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4909),(24564,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4911),(24559,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4893),(24558,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4894),(24535,'state','montana','us','Americas','Montana',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4869),(24536,'state','montana','us','Americas','Montana',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4879),(24537,'state','montana','us','Americas','Montana',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12339),(24538,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4890),(24539,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4889),(24540,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4888),(24541,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4887),(24542,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4886),(24543,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4885),(24544,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4884),(24545,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-04-29','Arbor Day',NULL,'','ARBOR-DAY','/arbor-day/','/arbor-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4883),(24546,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4882),(24547,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4881),(24548,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4880),(24549,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4891),(24691,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6109),(24677,'state','new-york','us','Americas','New York',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4920),(24678,'state','new-york','us','Americas','New York',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4919),(24679,'state','new-york','us','Americas','New York',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4918),(24680,'state','new-york','us','Americas','New York',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4917),(24681,'state','new-york','us','Americas','New York',NULL,'2022','2022-02-21','Washington\'s Birthday (observed)',NULL,'','WASHINGTONS-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','OB',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4916),(24682,'state','new-york','us','Americas','New York',NULL,'2022','2022-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4915),(24683,'state','new-york','us','Americas','New York',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4914),(24684,'state','new-york','us','Americas','New York',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4913),(24685,'state','new-york','us','Americas','New York',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4923),(24686,'state','new-york','us','Americas','New York',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4924),(24687,'state','new-york','us','Americas','New York',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12345),(24688,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6111),(24689,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6112),(24845,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5082),(24844,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-03-01','Town Meeting Day',NULL,'','TOWN-MEETING-DAY','/town-meeting-day/','/town-meeting-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',5083),(24843,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5084),(24842,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5085),(24841,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5088),(24840,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5087),(24773,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6233),(24772,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-11-25','Day after Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6234),(24770,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6236),(24768,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4977),(24767,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4967),(24532,'state','montana','us','Americas','Montana',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4872),(24527,'state','montana','us','Americas','Montana',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4878),(24526,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6563),(24520,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4862),(24519,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4861),(24514,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4856),(24513,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6182),(24512,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6183),(24511,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-02-21','Washington\'s Birthday',NULL,'','WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6184),(24510,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-04-25','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,'The last Monday of April','2021-04-22',NULL,'Y',6185),(24509,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6186),(24505,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6191),(24503,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6192),(24502,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4855),(24501,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4844),(24497,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4849),(24493,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4853),(24492,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-11-25','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4854),(24491,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4843),(24490,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12337),(24489,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4831),(24488,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4832),(24487,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4833),(24486,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4834),(24485,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4835),(24484,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4836),(24483,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4838),(24482,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4839),(24481,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4840),(24480,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4841),(24479,'state','michigan','us','Americas','Michigan',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4842),(24478,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12336),(24477,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4830),(24476,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4820),(24475,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4821),(24474,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-02-21','Washington\'s Birthday',NULL,'','WASHINGTONS-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4822),(24469,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,'Restrictions until 12 noon','2021-04-22',NULL,'Y',4827),(24468,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4829),(24466,'state','maine','us','Americas','Maine',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6556),(24456,'state','maine','us','Americas','Maine',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4804),(24455,'state','maine','us','Americas','Maine',NULL,'2022','2022-11-25','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4806),(24453,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-11-08','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',6555),(24452,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12333),(24447,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4790),(24446,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4791),(24445,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4792),(24444,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4793),(24443,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4794),(24442,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4795),(24429,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6146),(24428,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6145),(24427,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6134),(24426,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-01-17','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6135),(24425,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6136),(24424,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6137),(24423,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6138),(24422,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6139),(24421,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6141),(24420,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6142),(24419,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-11-25','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6143),(24418,'state','kentucky','us','Americas','Kentucky',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6144),(24417,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6553),(24416,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4785),(24415,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4784),(24414,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-11-26','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4783),(24413,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4782),(24412,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4781),(24411,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4780),(24410,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4779),(24409,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4778),(24408,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4777),(24407,'state','kansas','us','Americas','Kansas',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4776),(24406,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6552),(24405,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12332),(24404,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4767),(24403,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4768),(24402,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4769),(24401,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4771),(24399,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4773),(24398,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4775),(24397,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-11-25','Friday After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4774),(24396,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12331),(24395,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4766),(24394,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-12-23','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4765),(24393,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4752),(24392,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4753),(24391,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4754),(24390,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4756),(24389,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4758),(24388,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4759),(24387,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4760),(24386,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4762),(24385,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-11-25','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4764),(24368,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,'','2021-04-22',NULL,'Y',4729),(24366,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4731),(24365,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4732),(24363,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4735),(24362,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4736),(24361,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4737),(24360,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,'The fourth day in July','2021-04-22',NULL,'Y',6549),(24359,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'The twenty-fifth day in December','2021-04-22',NULL,'Y',4728),(24358,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,'The first day in January','2021-04-22',NULL,'Y',4715),(24354,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-03-26','Prince Kuhio Day',NULL,'','KUHIO-KALANIANAOLE-DAY','/kuhio-day/','/kuhio-day/',0,'Y','RH',NULL,'',NULL,'The twenty-sixth day in March','2021-04-22',NULL,'Y',4718),(24353,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,'The last Monday in May','2021-04-22',NULL,'Y',4720),(24352,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-06-11','King Kamehameha I Day',NULL,'','KING-KAMEHAMEHA-DAY','/kamehameha-day/','/kamehameha-day/',0,'Y','RH',NULL,'',NULL,'The eleventh day in June','2021-04-22',NULL,'Y',4721),(24351,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-08-09','Statehood Day',NULL,'','STATEHOOD-DAY','/statehood-day-hawaii/','/statehood-day-hawaii/',0,'Y','RH',NULL,'',NULL,'The third Friday in August','2021-04-22',NULL,'Y',4723),(24349,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,'The eleventh day in November','2021-04-22',NULL,'Y',4726),(24348,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,'The fourth Thursday in November','2021-04-22',NULL,'Y',4727),(24347,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6548),(24346,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4714),(24345,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4703),(24343,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-12-23','Washington Birthday Holiday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washington-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4705),(24340,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4709),(24336,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4712),(24335,'state','florida','us','Americas','Florida',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6547),(24334,'state','florida','us','Americas','Florida',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6157),(24333,'state','florida','us','Americas','Florida',NULL,'2022','2022-01-17','Birthday of Dr. Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6158),(24332,'state','florida','us','Americas','Florida',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6159),(24331,'state','florida','us','Americas','Florida',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6161),(24330,'state','florida','us','Americas','Florida',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6162),(24329,'state','florida','us','Americas','Florida',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6165),(24328,'state','florida','us','Americas','Florida',NULL,'2022','2022-11-25','Fridayay After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6164),(24327,'state','florida','us','Americas','Florida',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6163),(24323,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-01-17','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4692),(24322,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4693),(24321,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4694),(24318,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4700),(24316,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12329),(24311,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4681),(24310,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-02-21','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4682),(24309,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4683),(24308,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4684),(24307,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4685),(24306,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4686),(24305,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4688),(24304,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4687),(24243,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4562),(24242,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4553),(24241,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-01-17','Martin Luther King, Jr./Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4554),(24240,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-02-21','Lincoln/Washington Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4555),(24239,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4556),(24238,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4557),(24237,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4558),(24236,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4559),(24235,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4561),(24234,'state','arizona','us','Americas','Arizona',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4560),(24233,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4552),(24230,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-01-17','MLK Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4543),(24229,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4544),(24226,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-07-04','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4547),(24220,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-02-22','George Washington/Thomas Jefferson\'s Birthday',NULL,'','GEORGE-WASHINGTON','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4530),(24219,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-03-01','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4531),(24218,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-04-25','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4532),(24217,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-05-30','National Memorial Day',NULL,'','NATIONAL-MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4533),(24216,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-06-06','Jefferson Davis\' Birthday',NULL,'','JEFFERSON-DAVIS-BIRTHDAY',NULL,'/jefferson-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4534),(24215,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-07-04','Fourth day of July (observed)',NULL,'','FOURTH-DAY-OF-JULY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4535),(24214,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4536),(28458,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-12-27','Boxing Day',NULL,'','BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','RH','Y','boxing-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2772),(28456,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-02-21','Family Day',NULL,NULL,'FAMILY-DAY','/family-day/','/family-day/',0,'','RH','Y','family-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2764),(28457,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-01-03','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Toronto Stock Exchange, Canada','2021-06-02',NULL,'Y',2763),(19035,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-12-28','Boxing Day',NULL,'','BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','RH','Y','boxing-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2772),(19034,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-12-27','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2771),(19033,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-10-11','Thanksgiving',NULL,NULL,'THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2770),(19032,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-09-06','Labour Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2769),(28530,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2867),(28531,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2866),(28532,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2865),(28533,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2875),(28510,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2899),(28511,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2898),(28512,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2897),(28513,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2906),(28514,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2895),(28515,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2894),(28516,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2893),(28517,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2892),(28518,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2891),(28519,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2890),(28520,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2889),(28521,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2888),(28522,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2887),(28523,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2896),(28524,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2873),(28525,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2872),(28526,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2871),(28527,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2870),(28528,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2869),(28529,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2868),(28492,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2862),(28493,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2861),(28494,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2860),(28495,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2859),(28496,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2858),(28497,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2857),(28498,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2856),(28499,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2855),(28500,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2854),(28501,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2853),(28502,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2864),(28503,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2876),(28504,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2905),(28505,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2904),(28506,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2903),(28490,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2852),(28488,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2844),(28489,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2843),(18847,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2839),(18848,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2840),(18849,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2841),(18850,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2842),(18851,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2877),(18852,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2878),(18853,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2879),(18854,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2880),(18855,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2881),(18856,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2882),(18857,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2883),(18858,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2884),(18859,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2885),(18860,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2886),(18861,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2843),(18862,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2844),(18863,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2845),(18864,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2846),(18865,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2847),(18866,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2848),(18867,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2849),(18868,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2850),(18869,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2851),(18870,'bank-org','chase-bank','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2852),(18871,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2853),(18872,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2854),(18873,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2855),(18874,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2856),(18875,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2857),(18876,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2858),(18877,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2859),(18878,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2860),(18879,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2861),(18880,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2862),(18881,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2863),(18882,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2864),(18883,'bank-org','citibank','us','Americas','United States',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2876),(18884,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2897),(18885,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2898),(18886,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2899),(18887,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2900),(18888,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2901),(18889,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2902),(18890,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2903),(18891,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2904),(18892,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2905),(18893,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2906),(18894,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2887),(18895,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2888),(18896,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2889),(18897,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2890),(18898,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2891),(18899,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2892),(18900,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2893),(18901,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2894),(18902,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2895),(18903,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2896),(18904,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2865),(18905,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2866),(18906,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2867),(18907,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2868),(18908,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2869),(18909,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2870),(18910,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2871),(18911,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2872),(18912,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2873),(18913,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2875),(28459,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2841),(28460,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2840),(28461,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2839),(28462,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2838),(28463,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2837),(28464,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2836),(28465,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2835),(28466,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2834),(28467,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2833),(28468,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','OB',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',12365),(28469,'bank-org','bank-of-america','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2842),(28470,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2885),(28471,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2884),(28472,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2883),(28473,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2882),(28474,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2881),(28475,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2880),(28476,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2879),(28477,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2878),(28478,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2877),(28479,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2886),(28480,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','OB',NULL,'christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',12366),(28481,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2851),(28482,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2850),(28483,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2849),(28484,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2848),(28485,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2847),(28486,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2846),(13790,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2867),(13791,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2868),(13792,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2869),(13793,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2870),(13794,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2871),(13795,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2872),(13796,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2873),(13797,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2875),(18841,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2833),(18842,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2834),(18843,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2835),(18844,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2836),(18845,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2837),(18846,'bank-org','bank-of-america','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-09-29',NULL,'Y',2838),(13769,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2898),(13770,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2899),(13771,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2900),(13772,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2901),(13773,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2902),(13774,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2903),(13775,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2904),(13776,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2905),(13777,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2906),(13778,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2887),(13779,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2888),(13780,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2889),(13781,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2890),(13782,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2891),(13783,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2892),(13784,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2893),(13785,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2894),(13786,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2895),(13787,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2896),(13747,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2845),(13748,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2846),(13749,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2847),(13750,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2848),(13751,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2849),(13752,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2850),(13753,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2851),(13754,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2852),(13755,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2853),(13756,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2854),(13757,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2855),(13758,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2856),(13759,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2857),(13760,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2858),(13761,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2859),(13762,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2860),(13763,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2861),(13764,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2862),(13765,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2863),(13766,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2864),(13767,'bank-org','citibank','us','Americas','United States',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2876),(11412,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2873),(11413,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2875),(11414,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2877),(11415,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2878),(11416,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2879),(11417,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2880),(11418,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2881),(11419,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2882),(11420,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2883),(11421,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2884),(11422,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2885),(11423,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2886),(11424,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2887),(11425,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2888),(11426,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2889),(11427,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2890),(11428,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2891),(11429,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2892),(11430,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2893),(11431,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2894),(11432,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2895),(11433,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2896),(11434,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2897),(11435,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2898),(11436,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2899),(11437,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2900),(11438,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2901),(11439,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2902),(11440,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2903),(11441,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2904),(11442,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2905),(11443,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2906),(13725,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2833),(13726,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2834),(13727,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2835),(13728,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2836),(13729,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2837),(13730,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2838),(13731,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2839),(13732,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2840),(13733,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2841),(13734,'bank-org','bank-of-america','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2842),(13735,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2877),(13736,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2878),(13737,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2879),(13738,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2880),(13739,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2881),(13740,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2882),(13741,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2883),(13742,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2884),(13743,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2885),(13744,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2886),(13745,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2843),(11396,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2857),(11397,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2858),(11398,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2859),(11399,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2860),(11400,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2861),(11401,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2862),(11402,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2863),(11403,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2864),(11404,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2865),(11405,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2866),(11406,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2867),(11407,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2868),(11408,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2869),(11409,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2870),(11410,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2871),(11411,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2019','2019-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2872),(11373,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2834),(11374,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2835),(11375,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2836),(11376,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2837),(11377,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2838),(11378,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2839),(11379,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2840),(11380,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2841),(11381,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2842),(11382,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2843),(11383,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2844),(11384,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2845),(11385,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2846),(11386,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2847),(11387,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2848),(11388,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2849),(11389,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2850),(11390,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2851),(11391,'bank-org','chase-bank','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2852),(11392,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2853),(11393,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2854),(11394,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2855),(19030,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-07-01','Canada Day',NULL,'','CANADA-DAY','/canada-day/','/canada-day/',0,'Y','ND','Y','canada-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2767),(19031,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-08-02','Civic Holiday',NULL,'','CIVIC-HOLIDAY','/provincial-day/','/provincial-day/',0,'','NH','Y','provincial-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2768),(12228,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-12-28','Boxing Day',NULL,'','BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','RH','Y','boxing-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2772),(12227,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2771),(12225,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-09-07','Labour Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2769),(12224,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-08-03','Civic Holiday',NULL,'','CIVIC-HOLIDAY','/provincial-day/','/provincial-day/',0,'','NH','Y','provincial-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2768),(9681,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-12-26','Boxing Day',NULL,'','BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','RH','Y','boxing-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2772),(12223,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-07-01','Canada Day',NULL,'','CANADA-DAY','/canada-day/','/canada-day/',0,'Y','ND','Y','canada-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2767),(9680,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2771),(9678,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-09-02','Labour Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2769),(9677,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-08-05','Civic Holiday',NULL,'','CIVIC-HOLIDAY','/provincial-day/','/provincial-day/',0,'','NH','Y','provincial-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2768),(9669,'market','nyse','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2758),(9668,'market','nyse','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2757),(9667,'market','nyse','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2756),(9666,'market','nyse','us','Americas','United States',NULL,'2019','2019-04-19','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2755),(9665,'market','nyse','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2754),(9664,'market','nyse','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2753),(9697,'market','nse','india','asia-pacific','India',NULL,'2019','2019-06-05','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2475),(9689,'market','nse','india','asia-pacific','India',NULL,'2019','2019-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2476),(9686,'market','nse','india','asia-pacific','India',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2458),(9685,'market','nse','india','asia-pacific','India',NULL,'2019','2019-04-17','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2457),(9684,'market','nse','india','asia-pacific','India',NULL,'2019','2019-03-21','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','NH','Y','holi.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2456),(9683,'market','nse','india','asia-pacific','India',NULL,'2019','2019-03-04','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2455),(9682,'market','nse','india','asia-pacific','India',NULL,'2019','2019-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2454),(9662,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2751),(9661,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2750),(9660,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2749),(9657,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-04-19','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2746),(9722,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-03-04','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','M','maha-shivaratri.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2500),(9721,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2499),(9720,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','E','new-years-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2498),(9638,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','Religious','E','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2761),(9636,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2741),(9635,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-08-26','Summer Bank Holiday',NULL,NULL,'SUMMER-BANK-HOLIDAY','/summer-bank-holiday/','/summer-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2740),(9634,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-05-27','Spring Bank Holiday',NULL,NULL,'SPRING-BANK-HOLIDAY','/may-spring-bank-holiday/','/may-spring-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2739),(9633,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-05-06','Early May Bank Holiday',NULL,NULL,'EARLY-MAY-BANK-HOLIDAY','/early-may-bank-holiday/','/early-may-bank-holiday/',0,'','National','Y','may-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2738),(9632,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-04-22','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','Religious','Y','easter.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2737),(9631,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2736),(9630,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2018-11-14',NULL,'Y',2735),(9653,'market','euronext','france','Europe','France',NULL,'2019','2019-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2725),(9652,'market','euronext','france','Europe','France',NULL,'2019','2019-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2724),(9651,'market','euronext','france','Europe','France',NULL,'2019','2019-05-01','Labor day',NULL,NULL,'LABOR-DAY','/may-day/','/may-day/',0,'Y','NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2723),(9650,'market','euronext','france','Europe','France',NULL,'2019','2019-04-22','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2722),(9649,'market','euronext','france','Europe','France',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2721),(9648,'market','euronext','france','Europe','France',NULL,'2019','2019-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2720),(9644,'market','dax','germany','Europe','Germany',NULL,'2019','2019-06-10','Whit Monday',NULL,NULL,'WHIT-MONDAY','/pentecost-monday/','/pentecost-monday/',0,'','NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2730),(9643,'market','dax','germany','Europe','Germany',NULL,'2019','2019-05-01','Labor Day',NULL,NULL,'LABOR-DAY',NULL,'/may-day/',0,'Y','NH','Y','may-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2729),(9642,'market','dax','germany','Europe','Germany',NULL,'2019','2019-04-22','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2728),(9641,'market','dax','germany','Europe','Germany',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2727),(9640,'market','dax','germany','Europe','Germany',NULL,'2019','2019-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Frankfurt Stock Exchange Germany','2018-11-14',NULL,'Y',2726),(9716,'market','bse','india','asia-pacific','India',NULL,'2019','2019-06-05','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2492),(9715,'market','bse','india','asia-pacific','India',NULL,'2019','2019-10-28','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2491),(9714,'market','bse','india','asia-pacific','India',NULL,'2019','2019-10-27','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2018-11-14',NULL,'Y',2490),(9713,'market','bse','india','asia-pacific','India',NULL,'2019','2019-10-08','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2489),(9712,'market','bse','india','asia-pacific','India',NULL,'2019','2019-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2488),(9711,'market','bse','india','asia-pacific','India',NULL,'2019','2019-09-10','Moharum',NULL,NULL,'MUHARRAM','/muharram/','/muharram/',0,NULL,'NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2487),(9710,'market','bse','india','asia-pacific','India',NULL,'2019','2019-09-02','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2486),(9703,'market','bse','india','asia-pacific','India',NULL,'2019','2019-03-21','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','Y','holi.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2479),(9704,'market','bse','india','asia-pacific','India',NULL,'2019','2019-04-17','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2480),(9701,'market','bse','india','asia-pacific','India',NULL,'2019','2019-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2477),(9629,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-12-26','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','NH','Y','boxing-day.jpg',NULL,NULL,'2018-11-13',NULL,'Y',2719),(9628,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-13',NULL,'Y',2718),(9626,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-04-25','Anzac Day',NULL,'','ANZAC-DAY',NULL,'/anzac-day/',0,'Y','NH','Y','anzac-day.jpg',NULL,NULL,'2018-11-13',NULL,'Y',2716),(9625,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-04-22','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2018-11-13',NULL,'Y',2715),(9624,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2018-11-13',NULL,'Y',2714),(9623,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-01-28','Australia Day OBS',NULL,'','AUSTRALIA-DAY','/australia-day/','/australia-day/',0,'Y','ND','Y','australia-flag.gif',NULL,NULL,'2018-11-13',NULL,'Y',2713),(12237,'market','nyse','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2760),(12219,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Toronto Stock Exchange, Canada','2019-11-23',NULL,'Y',2763),(12236,'market','nyse','us','Americas','United States',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2755),(12235,'market','nyse','us','Americas','United States',NULL,'2020','2020-02-17','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2754),(12233,'market','nyse','us','Americas','United States',NULL,'2020','2020-11-26','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2759),(12232,'market','nyse','us','Americas','United States',NULL,'2020','2020-07-03','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2757),(12231,'market','nyse','us','Americas','United States',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2756),(12230,'market','nyse','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'New York Stock Exchange, United States','2019-11-23',NULL,'Y',2752),(12229,'market','nyse','us','Americas','United States',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2758),(12218,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-02-21','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2455),(12217,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2454),(12216,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-03-06','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','NH','Y','holi.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2456),(12215,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-04-02','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2457),(12214,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2458),(12213,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2460),(12212,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-09-25','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2463),(12211,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-09-17','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2464),(12210,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2466),(12202,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-05-25','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2475),(12245,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'NASDAQ Stock Exchange, United States','2019-11-23',NULL,'Y',2743),(12244,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-02-17','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2745),(12242,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2746),(12240,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2749),(12238,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2751),(12263,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2499),(12262,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-02-21','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','M','maha-shivaratri.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2500),(12261,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-04-02','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','M',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2502),(12260,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-03-06','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','M','holi.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2501),(12259,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2503),(12258,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','M',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2504),(12257,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-09-25','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','M',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2506),(12256,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-09-17','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','M',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2507),(12255,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2509),(12254,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-10-22','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','M',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2510),(12253,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-11-11','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,'','2019-11-23',NULL,'Y',2511),(12252,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-11-12','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2512),(12247,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-04-02','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2515),(12272,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-08-31','Summer Bank Holiday',NULL,NULL,'SUMMER-BANK-HOLIDAY','/summer-bank-holiday/','/summer-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2740),(12271,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2741),(12270,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','Religious','E','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2761),(12268,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2019-11-23',NULL,'Y',2735),(12267,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2736),(12266,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-04-13','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','Religious','Y','easter.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2737),(12265,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-05-08','Early May Bank Holiday',NULL,NULL,'EARLY-MAY-BANK-HOLIDAY','/early-may-bank-holiday/','/early-may-bank-holiday/',0,'','National','Y','may-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2738),(12264,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-12-28','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','Religious','Y','boxing-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2742),(12278,'market','euronext','france','Europe','France',NULL,'2020','2020-05-01','Labor day',NULL,NULL,'LABOR-DAY','/may-day/','/may-day/',0,'Y','NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2723),(12277,'market','euronext','france','Europe','France',NULL,'2020','2020-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2720),(12274,'market','euronext','france','Europe','France',NULL,'2020','2020-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2724),(12184,'market','dax','germany','Europe','Germany',NULL,'2020','2020-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Frankfurt Stock Exchange Germany','2019-11-23',NULL,'Y',2726),(12183,'market','dax','germany','Europe','Germany',NULL,'2020','2020-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2732),(12181,'market','dax','germany','Europe','Germany',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2727),(12180,'market','dax','germany','Europe','Germany',NULL,'2020','2020-04-13','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2728),(12179,'market','dax','germany','Europe','Germany',NULL,'2020','2020-05-01','Labor Day',NULL,NULL,'LABOR-DAY',NULL,'/may-day/',0,'Y','NH','Y','may-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2729),(12197,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2481),(12196,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2482),(12195,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2484),(12194,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-09-25','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2485),(12193,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-09-17','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2486),(12192,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2488),(12191,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-10-22','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2489),(12190,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-11-11','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2019-11-23',NULL,'Y',2490),(12189,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-11-12','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2491),(12188,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-05-25','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2492),(12187,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-04-13','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2493),(12186,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-11-25','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2494),(12185,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2495),(12162,'market','asx','australia','Asia Pacific','Australia',NULL,'2020','2020-01-27','Australia Day OBS',NULL,'','AUSTRALIA-DAY','/australia-day/','/australia-day/',0,'Y','ND','Y','australia-flag.gif',NULL,NULL,'2019-11-23',NULL,'Y',2713),(12160,'market','asx','australia','Asia Pacific','Australia',NULL,'2020','2020-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Australian Stock Exchange Ltd, Australia ','2019-11-23',NULL,'Y',2712),(12159,'market','asx','australia','Asia Pacific','Australia',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2714),(12158,'market','asx','australia','Asia Pacific','Australia',NULL,'2020','2020-04-13','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2715),(19025,'market','nyse','us','Americas','United States',NULL,'2021','2021-12-24','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2760),(19026,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Toronto Stock Exchange, Canada','2020-09-30',NULL,'Y',2763),(19024,'market','nyse','us','Americas','United States',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2755),(19023,'market','nyse','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2754),(19022,'market','nyse','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2753),(19021,'market','nyse','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2759),(19017,'market','nyse','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2758),(19018,'market','nyse','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'New York Stock Exchange, United States','2020-09-30',NULL,'Y',2752),(18942,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-03-11','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2455),(18938,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-09-10','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2464),(18935,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2476),(18934,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-10-20','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2020-09-30',NULL,'Y',2468),(18933,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-10-15','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2467),(18932,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-11-04','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2469),(18931,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-11-18','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2472),(18930,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2473),(18929,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-04-21','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2474),(18928,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-05-13','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2475),(19015,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'NASDAQ Stock Exchange, United States','2020-09-30',NULL,'Y',2743),(19014,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2745),(19013,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2747),(19012,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2746),(18976,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2499),(18975,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-03-11','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','M','maha-shivaratri.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2500),(18974,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-04-25','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','M',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2502),(18973,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-03-29','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','M','holi.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2501),(18972,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2503),(18971,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','M',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2504),(18970,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-07-20','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','M',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2506),(18969,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-09-10','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','M',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2507),(18968,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2509),(18967,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-10-15','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','M',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2510),(18966,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-10-20','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,'','2020-09-30',NULL,'Y',2511),(18965,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-11-04','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2512),(18964,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-11-19','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','M',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2513),(18960,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-04-21','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2515),(19006,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-08-30','Summer Bank Holiday',NULL,NULL,'SUMMER-BANK-HOLIDAY','/summer-bank-holiday/','/summer-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2740),(19005,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2741),(19004,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','Religious','E','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2761),(19002,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2020-09-30',NULL,'Y',2735),(19001,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2736),(19000,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-04-05','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','Religious','Y','easter.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2737),(18999,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-05-03','Early May Bank Holiday',NULL,NULL,'EARLY-MAY-BANK-HOLIDAY','/early-may-bank-holiday/','/early-may-bank-holiday/',0,'','National','Y','may-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2738),(18998,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-12-28','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','Religious','Y','boxing-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2742),(18989,'market','euronext','france','Europe','France',NULL,'2021','2021-05-01','Labor day',NULL,NULL,'LABOR-DAY','/may-day/','/may-day/',0,'Y','NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2723),(18988,'market','euronext','france','Europe','France',NULL,'2021','2021-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2720),(18987,'market','euronext','france','Europe','France',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2721),(18986,'market','euronext','france','Europe','France',NULL,'2021','2021-04-05','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2722),(18997,'market','dax','germany','Europe','Germany',NULL,'2021','2021-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Frankfurt Stock Exchange Germany','2020-09-30',NULL,'Y',2726),(18996,'market','dax','germany','Europe','Germany',NULL,'2021','2021-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2732),(18995,'market','dax','germany','Europe','Germany',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2734),(18994,'market','dax','germany','Europe','Germany',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2727),(18992,'market','dax','germany','Europe','Germany',NULL,'2021','2021-05-01','Labor Day',NULL,NULL,'LABOR-DAY',NULL,'/may-day/',0,'Y','NH','Y','may-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2729),(18991,'market','dax','germany','Europe','Germany',NULL,'2021','2021-05-24','Whit Monday',NULL,NULL,'WHIT-MONDAY','/pentecost-monday/','/pentecost-monday/',0,'','NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2730),(18990,'market','dax','germany','Europe','Germany',NULL,'2021','2021-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2731),(18959,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2477),(18958,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-03-11','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2478),(18957,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-03-29','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','Y','holi.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2479),(18956,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-04-25','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2480),(18955,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2481),(18954,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2482),(18953,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2484),(18952,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-07-20','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2485),(18951,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-09-10','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2486),(18950,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2488),(18949,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-10-15','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2489),(18948,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-10-20','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2020-09-30',NULL,'Y',2490),(18947,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-11-04','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2491),(18946,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-05-13','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2492),(18945,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-04-21','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2493),(18944,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-11-19','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2494),(18943,'market','bse','india','Asia Pacific','India',NULL,'2021','2021-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2495),(18984,'market','asx','australia','Asia Pacific','Australia',NULL,'2021','2021-01-26','Australia Day OBS',NULL,'','AUSTRALIA-DAY','/australia-day/','/australia-day/',0,'Y','ND','Y','australia-flag.gif',NULL,NULL,'2020-09-30',NULL,'Y',2713),(18982,'market','asx','australia','Asia Pacific','Australia',NULL,'2021','2021-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Australian Stock Exchange Ltd, Australia ','2020-09-30',NULL,'Y',2712),(18981,'market','asx','australia','Asia Pacific','Australia',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2714),(18980,'market','asx','australia','Asia Pacific','Australia',NULL,'2021','2021-04-05','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2715),(28455,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2765),(28454,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-05-23','Victoria/Patriots\' Day',NULL,'','VICTORIA-DAY','/victoria-day/','/victoria-day/',0,'','NH','Y','victoria-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2766),(28453,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-07-01','Canada Day',NULL,'','CANADA-DAY','/canada-day/','/canada-day/',0,'Y','ND','Y','canada-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2767),(28443,'market','nyse','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2754),(28442,'market','nyse','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2753),(28441,'market','nyse','us','Americas','United States',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2755),(28439,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2454),(28440,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-03-01','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2455),(28432,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-10-24','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2021-06-02',NULL,'Y',2468),(28430,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-08-09','Muharram',NULL,NULL,'MUHARRAM','/muharram/','/muharram/',0,NULL,'NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2465),(28428,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-07-10','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2463),(28425,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-01-17','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2744),(28419,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2747),(28418,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2745),(28417,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'NASDAQ Stock Exchange, United States','2021-06-02',NULL,'Y',2743),(28416,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','E','new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2498),(28415,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2499),(28414,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-03-01','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','M','maha-shivaratri.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2500),(28413,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-04-10','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2515),(28412,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2514),(28408,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-10-24','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2512),(28406,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-10-05','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','M',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2510),(28401,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2503),(28400,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-03-19','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','M','holi.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2501),(28399,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-04-02','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','M',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2502),(28398,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-06-02','Spring Bank Holiday',NULL,NULL,'SPRING-BANK-HOLIDAY','/may-spring-bank-holiday/','/may-spring-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2739),(28397,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-12-27','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','Religious','Y','boxing-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2742),(28396,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-05-02','Early May Bank Holiday',NULL,NULL,'EARLY-MAY-BANK-HOLIDAY','/early-may-bank-holiday/','/early-may-bank-holiday/',0,'','National','Y','may-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2738),(28394,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2736),(28393,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-01-03','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2021-06-02',NULL,'Y',2735),(28392,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','National','E','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2021-06-02',NULL,'Y',2762),(28391,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','Religious','E','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2761),(28390,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-12-26','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2741),(28389,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-08-29','Summer Bank Holiday',NULL,NULL,'SUMMER-BANK-HOLIDAY','/summer-bank-holiday/','/summer-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2740),(28388,'market','euronext','france','Europe','France',NULL,'2022','2022-05-01','Labor day',NULL,NULL,'LABOR-DAY','/may-day/','/may-day/',0,'Y','NH','Y','labour-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2723),(28387,'market','euronext','france','Europe','France',NULL,'2022','2022-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2724),(28386,'market','euronext','france','Europe','France',NULL,'2022','2022-04-18','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2722),(28385,'market','euronext','france','Europe','France',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2721),(28384,'market','euronext','france','Europe','France',NULL,'2022','2022-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2720),(28383,'market','dax','germany','Europe','Germany',NULL,'2022','2022-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Frankfurt Stock Exchange Germany','2021-06-02',NULL,'Y',2726),(28382,'market','dax','germany','Europe','Germany',NULL,'2022','2022-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2731),(28381,'market','dax','germany','Europe','Germany',NULL,'2022','2022-06-06','Whit Monday',NULL,NULL,'WHIT-MONDAY','/pentecost-monday/','/pentecost-monday/',0,'','NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2730),(28380,'market','dax','germany','Europe','Germany',NULL,'2022','2022-05-01','Labor Day',NULL,NULL,'LABOR-DAY',NULL,'/may-day/',0,'Y','NH','Y','may-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2729),(28379,'market','dax','germany','Europe','Germany',NULL,'2022','2022-04-18','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2728),(28378,'market','dax','germany','Europe','Germany',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2727),(28377,'market','dax','germany','Europe','Germany',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2734),(28375,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2477),(28374,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-03-01','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2478),(28373,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-03-19','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','Y','holi.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2479),(28372,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2495),(28371,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-11-08','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2494),(28370,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-04-10','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2493),(28369,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-05-03','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2492),(28368,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-10-24','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2491),(28367,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-10-24','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2021-06-02',NULL,'Y',2490),(28363,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-07-10','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2485),(28354,'market','asx','australia','Asia Pacific','Australia',NULL,'2022','2022-01-03','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Australian Stock Exchange Ltd, Australia ','2021-06-02',NULL,'Y',2712),(28353,'market','asx','australia','Asia Pacific','Australia',NULL,'2022','2022-06-13','Queen\'s Birthday',NULL,NULL,'QUEENS-BIRTHDAY-QLD','/queens-birthday/','/queens-birthday/',0,'','RH','Y','queens-birthday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2717),(14519,'post','usps','us','Americas','United States',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6246),(14518,'post','usps','us','Americas','United States',NULL,'2020','2020-11-26','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6245),(14517,'post','usps','us','Americas','United States',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6244),(14516,'post','usps','us','Americas','United States',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','NH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6243),(14515,'post','usps','us','Americas','United States',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6242),(14514,'post','usps','us','Americas','United States',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','NH',NULL,'us-flag.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6241),(14513,'post','usps','us','Americas','United States',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6240),(14512,'post','usps','us','Americas','United States',NULL,'2020','2020-02-17','Washington\'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6239),(14511,'post','usps','us','Americas','United States',NULL,'2020','2020-01-20','Martin Luther King Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6238),(19908,'post','usps','us','Americas','United States',NULL,'2021','2021-12-24','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','PH',NULL,'christmas.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6246),(19907,'post','usps','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','PH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6245),(19906,'post','usps','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','PH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6244),(19905,'post','usps','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','PH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6243),(19904,'post','usps','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','PH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6242),(19903,'post','usps','us','Americas','United States',NULL,'2021','2021-07-05','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','PH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6241),(19902,'post','usps','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','PH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6240),(19901,'post','usps','us','Americas','United States',NULL,'2021','2021-02-15','Washington\'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','PH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6239),(19900,'post','usps','us','Americas','United States',NULL,'2021','2021-01-18','Martin Luther King Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','PH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6238),(24078,'post','usps','us','Americas','United States',NULL,'2022','2022-12-24','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','PH',NULL,'christmas.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6246),(24077,'post','usps','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','PH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6245),(24076,'post','usps','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','PH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6244),(24075,'post','usps','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','PH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6243),(24074,'post','usps','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','PH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6242),(24073,'post','usps','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','PH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6241),(24072,'post','usps','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','PH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6240),(24071,'post','usps','us','Americas','United States',NULL,'2022','2022-02-21','Washington\'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','PH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6239),(24070,'post','usps','us','Americas','United States',NULL,'2022','2022-01-17','Martin Luther King Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','PH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6238),(5254,'country','us','us','Americas','United States','','2019','2019-02-18','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',330),(5253,'country','us','us','Americas','United States','','2019','2019-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',329),(5252,'country','us','us','Americas','United States','','2019','2019-01-21','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',328),(5251,'country','us','us','Americas','United States','','2019','2019-01-01','New Year\'s Day',2,'X','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',327),(5283,'country','us','us','Americas','United States','','2020','2020-07-03','Independence Day Holiday',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',336),(5282,'country','us','us','Americas','United States','','2020','2020-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious',NULL,'',NULL,'','2016-06-14',NULL,'Y',342),(5280,'country','us','us','Americas','United States','','2020','2020-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',340),(5279,'country','us','us','Americas','United States','','2020','2020-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',339),(5278,'country','us','us','Americas','United States','','2020','2020-10-12','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',338),(5277,'country','us','us','Americas','United States','','2020','2020-09-07','Labor Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',337),(5276,'country','us','us','Americas','United States','','2020','2020-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',336),(5275,'country','us','us','Americas','United States','','2020','2020-06-21','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','National',NULL,'fathers-day.jpg',NULL,'','2016-06-14',NULL,'Y',335),(5271,'country','us','us','Americas','United States','','2020','2020-04-10','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious',NULL,'good-friday.jpg',NULL,'','2016-06-14',NULL,'Y',331),(5270,'country','us','us','Americas','United States','','2020','2020-02-17','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',330),(5268,'country','us','us','Americas','United States','','2020','2020-01-20','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',328),(5267,'country','us','us','Americas','United States','','2020','2020-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National',NULL,'',NULL,'','2016-06-14',NULL,'Y',327),(11285,'country','us','us','Americas','United States',NULL,'2021','2021-06-04','National Donut Day',1,'X','NATIONAL-DONUT-DAY','/national-donut-day/','/national-donut-day/',0,'','OB','N','national-donut-day.jpg',NULL,'Celebrated every year on the first Friday of June','2018-11-25',NULL,'Y',2453),(11284,'country','us','us','Americas','United States',NULL,'2021','2021-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-11-25',NULL,'Y',342),(11283,'country','us','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving Day',2,'X','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',341),(11282,'country','us','us','Americas','United States',NULL,'2021','2021-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',340),(11281,'country','us','us','Americas','United States',NULL,'2021','2021-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','NH',NULL,'halloween.jpg',NULL,NULL,'2018-11-25',NULL,'Y',339),(11280,'country','us','us','Americas','United States',NULL,'2021','2021-10-11','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',338),(11279,'country','us','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',1,'X','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',337),(11278,'country','us','us','Americas','United States',NULL,'2021','2021-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-11-25',NULL,'Y',336),(11277,'country','us','us','Americas','United States',NULL,'2021','2021-06-20','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','OB',NULL,'fathers-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',335),(11276,'country','us','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',334),(11275,'country','us','us','Americas','United States',NULL,'2021','2021-05-09','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','OB',NULL,'mothers-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',333),(11274,'country','us','us','Americas','United States',NULL,'2021','2021-04-04','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','OB',NULL,'easter.jpg',NULL,NULL,'2018-11-25',NULL,'Y',332),(11273,'country','us','us','Americas','United States',NULL,'2021','2021-04-02','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OB',NULL,'good-friday.jpg',NULL,NULL,'2018-11-25',NULL,'Y',331),(11272,'country','us','us','Americas','United States',NULL,'2021','2021-02-15','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',330),(11270,'country','us','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-11-25',NULL,'Y',328),(11269,'country','us','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',2,'X','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',327),(11302,'country','us','us','Americas','United States',NULL,'2022','2022-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-11-25',NULL,'Y',342),(11301,'country','us','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving Day',2,'X','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',341),(11300,'country','us','us','Americas','United States',NULL,'2022','2022-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',340),(11298,'country','us','us','Americas','United States',NULL,'2022','2022-10-10','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',338),(11297,'country','us','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',1,'X','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',337),(11296,'country','us','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-11-25',NULL,'Y',336),(11295,'country','us','us','Americas','United States',NULL,'2022','2022-06-19','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','OB',NULL,'fathers-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',335),(11294,'country','us','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',334),(11293,'country','us','us','Americas','United States',NULL,'2022','2022-05-08','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','OB',NULL,'mothers-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',333),(11292,'country','us','us','Americas','United States',NULL,'2022','2022-04-17','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','OB',NULL,'easter.jpg',NULL,NULL,'2018-11-25',NULL,'Y',332),(11291,'country','us','us','Americas','United States',NULL,'2022','2022-04-15','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OB',NULL,'good-friday.jpg',NULL,NULL,'2018-11-25',NULL,'Y',331),(11287,'country','us','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',2,'X','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-11-25',NULL,'Y',327),(9612,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-01-13','Maghi - Lohri',NULL,NULL,'MAGHI-LOHRI','/maghi-lohri/','/maghi-lohri/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',482),(9590,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-12-30','Hanukkah Ends',NULL,NULL,'HANUKKAH-ENDS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',461),(9588,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-10-22','Simchat Torah',NULL,NULL,'SIMHAT-TORAH','/simhat-torah/','/simhat-torah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',459),(9585,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-10-14','Sukkot Starts',NULL,NULL,'SUKKOT-STARTS','/sukkot/','/sukkot/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',455),(9584,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-10-09','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',454),(9583,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-10-02','Fast of Gedaliah',NULL,NULL,'FAST-OF-GEDALIAH','/fast-of-gedaliah/','/fast-of-gedaliah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',453),(9582,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-10-01','Rosh HaShana Ends',NULL,NULL,'ROSH-HASHANAH-ENDS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',452),(9573,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-05-02','Yom Hashoah',NULL,NULL,'YOM-HASHOAH','/yom-hashoah/','/yom-hashoah/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',442),(9572,'religious','jewish','jewish',NULL,NULL,'jewish','2019','2019-04-27','Passover - Final Day',NULL,NULL,'PASSOVER-FINAL-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',441),(9530,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-01-21','Thaipusam',NULL,NULL,'THAIPUSAM','/thaipusam/','/thaipusam/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',754),(9529,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-12-16','Dhanu Sankranti',NULL,NULL,'DHANU-SANKRANTI','/dhanu-sankranti/','/dhanu-sankranti/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',688),(9528,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-12-08','Geeta Jayanti',NULL,NULL,'GEETA-JAYANTI','/geeta-jayanti/','/geeta-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',687),(9527,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-09-17','Vishwakarma Puja',NULL,NULL,'VISHWAKARMA-PUJA','/vishwakarma-puja/','/vishwakarma-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',686),(9525,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-03-20','Holika Dahan',NULL,NULL,'HOLIKA-DAHAN','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',684),(9524,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-11-02','Chhath Puja',NULL,NULL,'CHHATH-PUJA','/chhath-puja/','/chhath-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',655),(9523,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-11-12','Kartik Poornima',NULL,NULL,'KARTIK-POORNIMA','/kartik-purnima/','/kartik-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',435),(9522,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-10-27','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2018-09-21',NULL,'Y',434),(9521,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-10-25','Dhan Teras',NULL,NULL,'DHAN-TERAS','/dhanteras/','/dhanteras/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',433),(9520,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-10-17','Karwa Chauth',NULL,NULL,'KARWA-CHAUTH','/karva-chauth/','/karva-chauth/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',432),(9517,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-10-07','Navaratri ends / Maha Navami',NULL,NULL,'NAVARATRI-ENDS-MAHA-NAVAMI','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',429),(9515,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-10-29','Bhai Dooj',NULL,NULL,'BHAI-DOOJ','/bhai-dooj/','/bhai-dooj/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',654),(9513,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-09-11','Onam',NULL,NULL,'ONAM','/onam/','/onam/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',424),(9512,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-09-02','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',423),(9511,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-08-24','Krishna Janmashtami',NULL,NULL,'KRISHNA-JANMASHTAMI','/janmashtami/','/janmashtami/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',422),(9510,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-08-15','Raksha Bandhan',NULL,NULL,'RAKSHA-BANDHAN','/raksha-bandhan/','/raksha-bandhan/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',421),(9509,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-08-05','Nag Panchami',NULL,NULL,'NAG-PANCHAMI','/nag-panchami/','/nag-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',420),(9508,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-07-16','Guru Purnima',NULL,NULL,'GURU-PURNIMA','/guru-purnima/','/guru-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',419),(9507,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-07-04','Puri Rath Yatra',NULL,NULL,'PURI-RATH-YATRA','/rath-yatra/','/rath-yatra/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',418),(9500,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-04-06','Ugadi / Gudi Padwa / Telugu New Year',NULL,NULL,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','/ugadi-telugu-new-year/','/ugadi-telugu-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',410),(9499,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-03-22','Hindi New Year',NULL,NULL,'HINDI-NEW-YEAR','/hindi-new-year/','/hindi-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',409),(9498,'religious','hindu','hindu',NULL,NULL,'hindu','2019','2019-03-21','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',408),(9562,'religious','christian','christian',NULL,NULL,'christian','2019','2019-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2018-09-21',NULL,'Y',401),(9558,'religious','christian','christian',NULL,NULL,'christian','2019','2019-12-01','Advent - first Sunday',NULL,NULL,'ADVENT-FIRST-SUNDAY','/advent-first-sunday/','/advent-first-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',397),(9556,'religious','christian','christian',NULL,NULL,'christian','2019','2019-11-02','All Souls\' Day',NULL,NULL,'ALL-SOULS-DAY','/all-souls-day/','/all-souls-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',395),(9548,'religious','christian','christian',NULL,NULL,'christian','2019','2019-06-29','Saints Peter and Paul',NULL,NULL,'SAINTS-PETER-AND-PAUL','/saints-peter-and-paul/','/saints-peter-and-paul/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',386),(9547,'religious','christian','christian',NULL,NULL,'christian','2019','2019-06-20','Corpus Christi',NULL,NULL,'CORPUS-CHRISTI','/corpus-christi/','/corpus-christi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',385),(9546,'religious','christian','christian',NULL,NULL,'christian','2019','2019-06-16','Trinity Sunday',NULL,NULL,'TRINITY-SUNDAY','/trinity-sunday/','/trinity-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',384),(9545,'religious','christian','christian',NULL,NULL,'christian','2019','2019-06-09','Pentecost',NULL,NULL,'PENTECOST','/pentecost/','/pentecost/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',383),(9542,'religious','christian','christian',NULL,NULL,'christian','2019','2019-04-22','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2018-09-21',NULL,'Y',380),(9541,'religious','christian','christian',NULL,NULL,'christian','2019','2019-04-21','Easter',NULL,NULL,'EASTER','/easter/','/easter/',0,'','RH',NULL,'easter.jpg',NULL,NULL,'2018-09-21',NULL,'Y',379),(9540,'religious','christian','christian',NULL,NULL,'christian','2019','2019-04-23','St. George\'s Day',NULL,NULL,'ST-GEORGES-DAY','/st-georges-day/','/st-georges-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',378),(9539,'religious','christian','christian',NULL,NULL,'christian','2019','2019-04-19','Good Friday ',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2018-09-21',NULL,'Y',377),(9534,'religious','christian','christian',NULL,NULL,'christian','2019','2019-02-14','St. Valentine\'s Day',0,'','ST-VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',372),(9533,'religious','christian','christian',NULL,NULL,'christian','2019','2019-02-02','Candlemas',NULL,NULL,'CANDLEMAS','/candlemas/','/candlemas/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-21',NULL,'Y',371),(9609,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-02-05','Chinese New Year',NULL,NULL,'CHINESE-NEW-YEAR','/chinese-new-year/','/chinese-new-year/',0,'','RH',NULL,'chinese-new-year.jpg',NULL,NULL,'2018-09-23',NULL,'Y',658),(9607,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-07-16','Asala - Dharma Day',NULL,NULL,'ASALA-DHARMA-DAY','/asala-dharma-day/','/asala-dharma-day/',0,'','RH',NULL,'asala-dharma-day.jpg',NULL,NULL,'2018-09-23',NULL,'Y',479),(9606,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-05-18','Vesak - Buddha Day',NULL,NULL,'VESAK-BUDDHA-DAY','/vesak-day/','/vesak-day/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',478),(9603,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-02-08','Nirvana Day',NULL,NULL,'NIRVANA-DAY','/nirvana-day/','/nirvana-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',475),(9602,'religious','buddhist','buddhist',NULL,NULL,'buddhist','2019','2019-01-21','Mahayana New Year',NULL,NULL,'MAHAYANA-NEW-YEAR','/mahayana-new-year/','/mahayana-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',473),(13920,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-11-14','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2019-12-02',NULL,'Y',493),(13919,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-01-05','Guru Gobind Singh Birthday',NULL,NULL,'GURU-GOBIND-SINGH-BIRTHDAY','/guru-gobind-singh-birthday/','/guru-gobind-singh-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',481),(13918,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-01-14','Maghi - Lohri',NULL,NULL,'MAGHI-LOHRI','/maghi-lohri/','/maghi-lohri/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',482),(13916,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-06-16','Martyrdom of Guru Arjan Dev Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','/martyrdom-of-guru-arjan-dev-sahib/','/martyrdom-of-guru-arjan-dev-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',486),(13915,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-04-14','Vaisakhi',NULL,NULL,'VAISAKHI','/vaisakhi/','/vaisakhi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',485),(13901,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-07-30','Tish\'a B\'Av',NULL,NULL,'TISHA-BAV','/tisha-bav/','/tisha-bav/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',450),(13899,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-09-20','Rosh HaShana Ends',NULL,NULL,'ROSH-HASHANAH-ENDS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',452),(13898,'religious','jewish','jewish',NULL,NULL,NULL,'2020','2020-09-21','Fast of Gedaliah',NULL,NULL,'FAST-OF-GEDALIAH','/fast-of-gedaliah/','/fast-of-gedaliah/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',453),(13888,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-03-22','Lailat al Miraj',NULL,NULL,'LAILAT-AL-MIRAJ','/lailat-al-miraj/','/lailat-al-miraj/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',464),(13886,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-04-22','Ramadan (start)',NULL,NULL,'RAMADAN-START','/ramadan-start/','/ramadan-start/',0,'','RH',NULL,'ramadan.jpg',NULL,NULL,'2019-12-02',NULL,'Y',466),(13884,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-05-24','Eid-al-Fitr (End of Ramadan)',NULL,NULL,'EID-AL-FITR-END-OF-RAMADAN','/ramadan-end/','/ramadan-end/',0,'','RH',NULL,'hari-raya-puasa.jpg',NULL,NULL,'2019-12-02',NULL,'Y',468),(13883,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-08-10','Waqf al Arafa - Hajj',NULL,NULL,'WAQF-AL-ARAFA-HAJJ','/waqf-al-arafa-hajj/','/waqf-al-arafa-hajj/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',469),(13882,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-07-31','Eid-al-Adha',NULL,NULL,'EID-AL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',470),(13881,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-08-20','Hijra - Islamic New Year',NULL,NULL,'HIJRA-ISLAMIC-NEW-YEAR','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',471),(13880,'religious','islam','islam',NULL,NULL,NULL,'2020','2020-08-30','Day of Ashura / Muharram',NULL,NULL,'DAY-OF-ASHURA-MUHARRAM','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',472),(13879,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-02-08','Thaipusam',NULL,NULL,'THAIPUSAM','/thaipusam/','/thaipusam/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',754),(13876,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-09-16','Vishwakarma Puja',NULL,NULL,'VISHWAKARMA-PUJA','/vishwakarma-puja/','/vishwakarma-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',686),(13871,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-04-14','Tamil New Year',NULL,NULL,'TAMIL-NEW-YEAR','/tamil-new-year/','/tamil-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',405),(13870,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-01-29','Vasant Panchami',0,NULL,'VASANT-PANCHAMI','/vasant-panchami/','/vasant-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',406),(13869,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-02-21','Maha Shivaratri',NULL,NULL,'MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',407),(13868,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-03-10','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',408),(13867,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-03-25','Hindi New Year',NULL,NULL,'HINDI-NEW-YEAR','/hindi-new-year/','/hindi-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',409),(13864,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-04-14','Bengali New Year / Bihu',NULL,NULL,'BENGALI-NEW-YEAR-BIHU','/bihu-bengali-new-year/','/bihu-bengali-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',413),(13863,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-04-08','Hanuman Jayanti',NULL,NULL,'HANUMAN-JAYANTI','/hanuman-jayanti/','/hanuman-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',414),(13862,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-04-26','Akshaya Tritiya',0,NULL,'AKSHAYA-TRITIYA','/akshaya-tritiya/','/akshaya-tritiya/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',415),(13861,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-04-14','Vaisakhi / Baisakhi / Vishu ',NULL,NULL,'VAISAKHI-BAISAKHI-VISHU','/vishu/','/vishu/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',416),(13860,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-05-22','Savitri Pooja',NULL,NULL,'SAVITRI-POOJA','/savitri-pooja/','/savitri-pooja/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',417),(13859,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-06-23','Puri Rath Yatra',NULL,NULL,'PURI-RATH-YATRA','/rath-yatra/','/rath-yatra/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',418),(13858,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-07-05','Guru Purnima',NULL,NULL,'GURU-PURNIMA','/guru-purnima/','/guru-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',419),(13857,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-07-25','Nag Panchami',NULL,NULL,'NAG-PANCHAMI','/nag-panchami/','/nag-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',420),(13856,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-08-03','Raksha Bandhan',NULL,NULL,'RAKSHA-BANDHAN','/raksha-bandhan/','/raksha-bandhan/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',421),(13855,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-08-11','Krishna Janmashtami',NULL,NULL,'KRISHNA-JANMASHTAMI','/janmashtami/','/janmashtami/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',422),(13852,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-09-17','Mahalaya Amavasya',NULL,NULL,'MAHALAYA-AMAVASYA','/mahalaya-amavasya/','/mahalaya-amavasya/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',425),(13849,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-10-24','Navaratri ends / Maha Navami',NULL,NULL,'NAVARATRI-ENDS-MAHA-NAVAMI','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',429),(13848,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-10-25','Dusshera ',NULL,NULL,'DUSSHERA-','/dussehra/','/dussehra/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',430),(13847,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-10-30','Sharad Purnima',NULL,NULL,'SHARAD-PURNIMA','/sharad-purnima/','/sharad-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',431),(13846,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-11-04','Karwa Chauth',NULL,NULL,'KARWA-CHAUTH','/karva-chauth/','/karva-chauth/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',432),(13845,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-11-13','Dhan Teras',NULL,NULL,'DHAN-TERAS','/dhanteras/','/dhanteras/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',433),(13844,'religious','hindu','hindu',NULL,NULL,NULL,'2020','2020-11-14','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2019-12-02',NULL,'Y',434),(13839,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-01-12','The Baptism of Jesus',1,'X','BAPTISM-OF-THE-JESUS','/baptism-of-the-lord/','/baptism-of-the-lord/',0,'','RH',NULL,'baptism-of-the-lord.jpg',NULL,NULL,'2019-12-02',NULL,'Y',370),(13838,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-02-02','Candlemas',NULL,NULL,'CANDLEMAS','/candlemas/','/candlemas/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',371),(13837,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-02-14','St. Valentine\'s Day',0,'','ST-VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',372),(13836,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-03-17','St. Patrick\'s Day',NULL,NULL,'ST-PATRICK\'S-DAY','/st-patricks-day/','/st-patricks-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',373),(13835,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-03-19','St. Joseph\'s Day',NULL,NULL,'ST-JOSEPHS-DAY','/st-josephs-day-/','/st-josephs-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',374),(13833,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-04-09','Maundy (Holy) Thursday',NULL,NULL,'MAUNDY-HOLY-THURSDAY','/maundy-thursday/','/maundy-thursday/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',376),(13827,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-05-21','Ascension of Jesus',NULL,NULL,'ASCENSION-OF-JESUS','/ascension-day/','/ascension-day/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',382),(13826,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-05-31','Pentecost',NULL,NULL,'PENTECOST','/pentecost/','/pentecost/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',383),(13825,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-06-07','Trinity Sunday',NULL,NULL,'TRINITY-SUNDAY','/trinity-sunday/','/trinity-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',384),(13820,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-08-15','The Assumption of Mary',NULL,NULL,'THE-ASSUMPTION-OF-MARY','/the-assumption-of-mary/','/the-assumption-of-mary/',0,'Y','RH',NULL,'the-assumption-of-mary.jpg',NULL,NULL,'2019-12-02',NULL,'Y',389),(13818,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-09-29','Michael and All Angels',NULL,NULL,'MICHAEL-AND-ALL-ANGELS','/michael-and-all-angels/','/michael-and-all-angels/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',391),(13817,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-10-31','All Hallows Eve',NULL,NULL,'ALL-HALLOWS-EVE','/halloween/','/halloween/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',392),(13813,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-11-29','Advent - first Sunday',NULL,NULL,'ADVENT-FIRST-SUNDAY','/advent-first-sunday/','/advent-first-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',397),(13810,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2019-12-02',NULL,'Y',400),(13809,'religious','christian','christian',NULL,NULL,NULL,'2020','2020-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2019-12-02',NULL,'Y',401),(13806,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-08-15','Obon',NULL,NULL,'OBON','/obon/','/obon/',0,'','RH',NULL,'obon.jpg','flickr.com/14360805@N05',NULL,'2019-12-02',NULL,'Y',659),(13801,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-04-09','Theravada New Year',NULL,NULL,'THERAVADA-NEW-YEAR','/theravada-new-year/','/theravada-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',477),(13798,'religious','buddhist','buddhist',NULL,NULL,NULL,'2020','2020-12-08','Bodhi Day',NULL,NULL,'BODHI-DAY','/bodhi-day/','/bodhi-day/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',480),(18813,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-11-04','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2020-09-22',NULL,'Y',493),(18812,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-01-20','Guru Gobind Singh Birthday',NULL,NULL,'GURU-GOBIND-SINGH-BIRTHDAY','/guru-gobind-singh-birthday/','/guru-gobind-singh-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',481),(18811,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-01-14','Maghi - Lohri',NULL,NULL,'MAGHI-LOHRI','/maghi-lohri/','/maghi-lohri/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',482),(18809,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-06-16','Martyrdom of Guru Arjan Dev Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','/martyrdom-of-guru-arjan-dev-sahib/','/martyrdom-of-guru-arjan-dev-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',486),(18808,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-04-14','Vaisakhi',NULL,NULL,'VAISAKHI','/vaisakhi/','/vaisakhi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',485),(18794,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-07-18','Tish\'a B\'Av',NULL,NULL,'TISHA-BAV','/tisha-bav/','/tisha-bav/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',450),(18792,'religious','jewish','jewish','','',NULL,'2021','2021-09-08','Rosh HaShana Ends',NULL,NULL,'ROSH-HASHANAH-ENDS','/rosh-hashanah/','/rosh-hashanah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',452),(18791,'religious','jewish','jewish',NULL,NULL,NULL,'2021','2021-09-09','Fast of Gedaliah',NULL,NULL,'FAST-OF-GEDALIAH','/fast-of-gedaliah/','/fast-of-gedaliah/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',453),(18838,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-03-11','Lailat al Miraj',NULL,NULL,'LAILAT-AL-MIRAJ','/lailat-al-miraj/','/lailat-al-miraj/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',464),(18836,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-04-12','Ramadan (start)',NULL,NULL,'RAMADAN-START','/ramadan-start/','/ramadan-start/',0,'','RH',NULL,'ramadan.jpg',NULL,NULL,'2020-09-23',NULL,'Y',466),(18834,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-05-13','Eid-al-Fitr (End of Ramadan)',NULL,NULL,'EID-AL-FITR-END-OF-RAMADAN','/ramadan-end/','/ramadan-end/',0,'','RH',NULL,'hari-raya-puasa.jpg',NULL,NULL,'2020-09-23',NULL,'Y',468),(18833,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-07-19','Waqf al Arafa - Hajj',NULL,NULL,'WAQF-AL-ARAFA-HAJJ','/waqf-al-arafa-hajj/','/waqf-al-arafa-hajj/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',469),(18832,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-07-20','Eid-al-Adha',NULL,NULL,'EID-AL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',470),(18831,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-08-09','Hijra - Islamic New Year',NULL,NULL,'HIJRA-ISLAMIC-NEW-YEAR','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',471),(18830,'religious','islam','islam',NULL,NULL,NULL,'2021','2021-08-18','Day of Ashura / Muharram',NULL,NULL,'DAY-OF-ASHURA-MUHARRAM','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-23',NULL,'Y',472),(18783,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-01-28','Thaipusam',NULL,NULL,'THAIPUSAM','/thaipusam/','/thaipusam/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',754),(18780,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-09-17','Vishwakarma Puja',NULL,NULL,'VISHWAKARMA-PUJA','/vishwakarma-puja/','/vishwakarma-puja/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',686),(18775,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-04-14','Tamil New Year',NULL,NULL,'TAMIL-NEW-YEAR','/tamil-new-year/','/tamil-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',405),(18774,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-02-16','Vasant Panchami',0,NULL,'VASANT-PANCHAMI','/vasant-panchami/','/vasant-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',406),(18773,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-03-11','Maha Shivaratri',NULL,NULL,'MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',407),(18772,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-03-29','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',408),(18771,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-04-12','Hindi New Year',NULL,NULL,'HINDI-NEW-YEAR','/hindi-new-year/','/hindi-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',409),(18768,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-04-15','Bengali New Year / Bihu',NULL,NULL,'BENGALI-NEW-YEAR-BIHU','/bihu-bengali-new-year/','/bihu-bengali-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',413),(18767,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-04-27','Hanuman Jayanti',NULL,NULL,'HANUMAN-JAYANTI','/hanuman-jayanti/','/hanuman-jayanti/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',414),(18766,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-05-14','Akshaya Tritiya',0,NULL,'AKSHAYA-TRITIYA','/akshaya-tritiya/','/akshaya-tritiya/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',415),(18765,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-04-14','Vaisakhi / Baisakhi / Vishu ',NULL,NULL,'VAISAKHI-BAISAKHI-VISHU','/vishu/','/vishu/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',416),(18764,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-06-10','Savitri Pooja',NULL,NULL,'SAVITRI-POOJA','/savitri-pooja/','/savitri-pooja/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',417),(18763,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-07-12','Puri Rath Yatra',NULL,NULL,'PURI-RATH-YATRA','/rath-yatra/','/rath-yatra/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',418),(18762,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-07-24','Guru Purnima',NULL,NULL,'GURU-PURNIMA','/guru-purnima/','/guru-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',419),(18761,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-08-13','Nag Panchami',NULL,NULL,'NAG-PANCHAMI','/nag-panchami/','/nag-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',420),(18760,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-08-22','Raksha Bandhan',NULL,NULL,'RAKSHA-BANDHAN','/raksha-bandhan/','/raksha-bandhan/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',421),(18759,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-08-30','Krishna Janmashtami',NULL,NULL,'KRISHNA-JANMASHTAMI','/janmashtami/','/janmashtami/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',422),(18756,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-10-06','Mahalaya Amavasya',NULL,NULL,'MAHALAYA-AMAVASYA','/mahalaya-amavasya/','/mahalaya-amavasya/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',425),(18753,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-10-14','Navaratri ends / Maha Navami',NULL,NULL,'NAVARATRI-ENDS-MAHA-NAVAMI','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',429),(18752,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-10-15','Dusshera ',NULL,NULL,'DUSSHERA-','/dussehra/','/dussehra/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',430),(18751,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-10-19','Sharad Purnima',NULL,NULL,'SHARAD-PURNIMA','/sharad-purnima/','/sharad-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',431),(18750,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-11-24','Karwa Chauth',NULL,NULL,'KARWA-CHAUTH','/karva-chauth/','/karva-chauth/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',432),(18749,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-11-02','Dhan Teras',NULL,NULL,'DHAN-TERAS','/dhanteras/','/dhanteras/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',433),(18748,'religious','hindu','hindu',NULL,NULL,NULL,'2021','2021-11-04','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2020-09-22',NULL,'Y',434),(18743,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-01-10','The Baptism of Jesus',1,'X','BAPTISM-OF-THE-JESUS','/baptism-of-the-lord/','/baptism-of-the-lord/',0,'','RH',NULL,'baptism-of-the-lord.jpg',NULL,NULL,'2020-09-22',NULL,'Y',370),(18742,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-02-02','Candlemas',NULL,NULL,'CANDLEMAS','/candlemas/','/candlemas/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',371),(18741,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-02-14','St. Valentine\'s Day',0,'','ST-VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',372),(18740,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-03-17','St. Patrick\'s Day',NULL,NULL,'ST-PATRICK\'S-DAY','/st-patricks-day/','/st-patricks-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',373),(18739,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-03-19','St. Joseph\'s Day',NULL,NULL,'ST-JOSEPHS-DAY','/st-josephs-day-/','/st-josephs-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',374),(18737,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-04-01','Maundy (Holy) Thursday',NULL,NULL,'MAUNDY-HOLY-THURSDAY','/maundy-thursday/','/maundy-thursday/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',376),(18731,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-05-13','Ascension of Jesus',NULL,NULL,'ASCENSION-OF-JESUS','/ascension-day/','/ascension-day/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',382),(18730,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-05-23','Pentecost',NULL,NULL,'PENTECOST','/pentecost/','/pentecost/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',383),(18729,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-05-30','Trinity Sunday',NULL,NULL,'TRINITY-SUNDAY','/trinity-sunday/','/trinity-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',384),(18724,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-08-15','The Assumption of Mary',NULL,NULL,'THE-ASSUMPTION-OF-MARY','/the-assumption-of-mary/','/the-assumption-of-mary/',0,'Y','RH',NULL,'the-assumption-of-mary.jpg',NULL,NULL,'2020-09-22',NULL,'Y',389),(18722,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-09-29','Michael and All Angels',NULL,NULL,'MICHAEL-AND-ALL-ANGELS','/michael-and-all-angels/','/michael-and-all-angels/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',391),(18721,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-10-31','All Hallows Eve',NULL,NULL,'ALL-HALLOWS-EVE','/halloween/','/halloween/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',392),(18717,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-11-28','Advent - first Sunday',NULL,NULL,'ADVENT-FIRST-SUNDAY','/advent-first-sunday/','/advent-first-sunday/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',397),(18714,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-09-22',NULL,'Y',400),(18713,'religious','christian','christian',NULL,NULL,NULL,'2021','2021-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-09-22',NULL,'Y',401),(18710,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-08-13','Obon',NULL,NULL,'OBON','/obon/','/obon/',0,'','RH',NULL,'obon.jpg','flickr.com/14360805@N05',NULL,'2020-09-22',NULL,'Y',659),(18705,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-04-27','Theravada New Year',NULL,NULL,'THERAVADA-NEW-YEAR','/theravada-new-year/','/theravada-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',477),(18702,'religious','buddhist','buddhist',NULL,NULL,NULL,'2021','2021-01-20','Bodhi Day',NULL,NULL,'BODHI-DAY','/bodhi-day/','/bodhi-day/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',480),(24203,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-10-24','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2021-04-20',NULL,'Y',493),(24202,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-01-09','Guru Gobind Singh Birthday',NULL,NULL,'GURU-GOBIND-SINGH-BIRTHDAY','/guru-gobind-singh-birthday/','/guru-gobind-singh-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',481),(24201,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-01-14','Maghi - Lohri',NULL,NULL,'MAGHI-LOHRI','/maghi-lohri/','/maghi-lohri/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',482),(24200,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-01-31','Guru Har Rai Birthday',NULL,NULL,'GURU-HAR-RAI-BIRTHDAY',NULL,'/guru-har-rai-birthday/',0,'','Religious',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',483),(24199,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-03-19','Hola Mohalla',NULL,NULL,'HOLA-MOHALLA','/hola-mohalla/','/hola-mohalla/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',484),(24196,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-01-16','Tu Bishvat',NULL,NULL,'TU-BISHVAT','/tu-bishvat/','/tu-bishvat/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',436),(24195,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-03-16','Purim',0,NULL,'PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',437),(24194,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-03-18','Shushan Purim',NULL,NULL,'SHUSHAN-PURIM','/purim/','/purim/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',438),(24193,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-04-15','Passover - First Day',0,NULL,'PASSOVER-FIRST-DAY','/passover/','/passover/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',439),(24188,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-05-05','Yom HaAtzma\'ut',NULL,NULL,'YOM-HAATZMAUT','/yom-haatzmaut/','/yom-haatzmaut/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',444),(24187,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-05-19','Lag BaOmer',NULL,NULL,'LAG-BAOMER','/lag-bomer/','/lag-bomer/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',445),(24185,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-06-04','Shavuot (1st day)',NULL,NULL,'SHAVUOT-1ST-DAY','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',447),(24184,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-06-06','Shavuot',NULL,NULL,'SHAVUOT','/shavuot/','/shavuot/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',448),(24172,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-12-18','Hanukkah Starts',NULL,NULL,'HANUKKAH-STARTS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',460),(24171,'religious','jewish','jewish',NULL,NULL,NULL,'2022','2022-12-26','Hanukkah Ends',NULL,NULL,'HANUKKAH-ENDS','/hanukkah/','/hanukkah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',461),(24170,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-10-08','Milad un Nabi',NULL,NULL,'MILAD-UN-NABI','/milad-un-nabi/','/milad-un-nabi/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',462),(24169,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-02-28','Lailat al Miraj',NULL,NULL,'LAILAT-AL-MIRAJ','/lailat-al-miraj/','/lailat-al-miraj/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',464),(24168,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-03-18','Lailat al Bara\'ah',NULL,NULL,'LAILAT-AL-BARAAH','/lailat-al-baraah/','/lailat-al-baraah/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',465),(24167,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-04-02','Ramadan (start)',NULL,NULL,'RAMADAN-START','/ramadan-start/','/ramadan-start/',0,'','RH',NULL,'ramadan.jpg',NULL,NULL,'2021-04-20',NULL,'Y',466),(24165,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-05-02','Eid-al-Fitr (End of Ramadan)',NULL,NULL,'EID-AL-FITR-END-OF-RAMADAN','/ramadan-end/','/ramadan-end/',0,'','RH',NULL,'hari-raya-puasa.jpg',NULL,NULL,'2021-04-20',NULL,'Y',468),(24164,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-07-08','Waqf al Arafa - Hajj',NULL,NULL,'WAQF-AL-ARAFA-HAJJ','/waqf-al-arafa-hajj/','/waqf-al-arafa-hajj/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',469),(24163,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-07-09','Eid-al-Adha',NULL,NULL,'EID-AL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','RH',NULL,'eid-al-adha.jpg',NULL,NULL,'2021-04-20',NULL,'Y',470),(24161,'religious','islam','islam',NULL,NULL,NULL,'2022','2022-08-08','Day of Ashura / Muharram',NULL,NULL,'DAY-OF-ASHURA-MUHARRAM','/muharram/','/muharram/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',472),(24160,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-01-18','Thaipusam',NULL,NULL,'THAIPUSAM','/thaipusam/','/thaipusam/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',754),(24159,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-12-16','Dhanu Sankranti',NULL,NULL,'DHANU-SANKRANTI','/dhanu-sankranti/','/dhanu-sankranti/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',688),(24156,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-08-12','Varalakshmi Vrat',NULL,NULL,'VARALAKSHMI-VRAT','/varalakshmi-vrat/','/varalakshmi-vrat/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',685),(24155,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-03-17','Holika Dahan',NULL,NULL,'HOLIKA-DAHAN','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',684),(24152,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-04-14','Tamil New Year',NULL,NULL,'TAMIL-NEW-YEAR','/tamil-new-year/','/tamil-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',405),(24151,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-02-05','Vasant Panchami',0,NULL,'VASANT-PANCHAMI','/vasant-panchami/','/vasant-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',406),(24142,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-04-14','Vaisakhi / Baisakhi / Vishu ',NULL,NULL,'VAISAKHI-BAISAKHI-VISHU','/vishu/','/vishu/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',416),(24141,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-05-30','Savitri Pooja',NULL,NULL,'SAVITRI-POOJA','/savitri-pooja/','/savitri-pooja/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',417),(24140,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-07-01','Puri Rath Yatra',NULL,NULL,'PURI-RATH-YATRA','/rath-yatra/','/rath-yatra/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',418),(24139,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-07-13','Guru Purnima',NULL,NULL,'GURU-PURNIMA','/guru-purnima/','/guru-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',419),(24138,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-08-02','Nag Panchami',NULL,NULL,'NAG-PANCHAMI','/nag-panchami/','/nag-panchami/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',420),(24136,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-08-19','Krishna Janmashtami',NULL,NULL,'KRISHNA-JANMASHTAMI','/janmashtami/','/janmashtami/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',422),(24133,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-09-25','Mahalaya Amavasya',NULL,NULL,'MAHALAYA-AMAVASYA','/mahalaya-amavasya/','/mahalaya-amavasya/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',425),(24132,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-26','Bhai Dooj',NULL,NULL,'BHAI-DOOJ','/bhai-dooj/','/bhai-dooj/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',654),(24130,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-04','Navaratri ends / Maha Navami',NULL,NULL,'NAVARATRI-ENDS-MAHA-NAVAMI','/navaratri/','/navaratri/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',429),(24129,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-05','Dusshera ',NULL,NULL,'DUSSHERA-','/dussehra/','/dussehra/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',430),(24128,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-09','Sharad Purnima',NULL,NULL,'SHARAD-PURNIMA','/sharad-purnima/','/sharad-purnima/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',431),(24127,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-13','Karwa Chauth',NULL,NULL,'KARWA-CHAUTH','/karva-chauth/','/karva-chauth/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',432),(24126,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-22','Dhan Teras',NULL,NULL,'DHAN-TERAS','/dhanteras/','/dhanteras/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',433),(24125,'religious','hindu','hindu',NULL,NULL,NULL,'2022','2022-10-24','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2021-04-20',NULL,'Y',434),(24120,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-01-09','The Baptism of Jesus',1,'X','BAPTISM-OF-THE-JESUS','/baptism-of-the-lord/','/baptism-of-the-lord/',0,'','RH',NULL,'baptism-of-the-lord.jpg',NULL,NULL,'2021-04-20',NULL,'Y',370),(24119,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-02-02','Candlemas',NULL,NULL,'CANDLEMAS','/candlemas/','/candlemas/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',371),(24118,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-02-14','St. Valentine\'s Day',0,'','ST-VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',372),(24117,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-03-17','St. Patrick\'s Day',NULL,NULL,'ST-PATRICK\'S-DAY','/st-patricks-day/','/st-patricks-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',373),(24112,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-04-23','St. George\'s Day',NULL,NULL,'ST-GEORGES-DAY','/st-georges-day/','/st-georges-day/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',378),(24109,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-07-25','St. James the Great Day',NULL,NULL,'ST-JAMES-THE-GREAT-DAY','/st-james-the-great-day-/','/st-james-the-great-day-/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',381),(24103,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-07-15','Saint Vladimir',NULL,NULL,'SAINT-VLADIMIR','/saint-vladimir/','/saint-vladimir/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',387),(24099,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-09-29','Michael and All Angels',NULL,NULL,'MICHAEL-AND-ALL-ANGELS','/michael-and-all-angels/','/michael-and-all-angels/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',391),(24097,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-11-01','All Saints\' Day',NULL,NULL,'ALL-SAINTS-DAY','/all-saints-day/','/all-saints-day/',0,'Y','RH',NULL,'all-saints-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',393),(24096,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-11-02','All Souls\' Day',NULL,NULL,'ALL-SOULS-DAY','/all-souls-day/','/all-souls-day/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',395),(24095,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-11-24','Thanksgiving (USA)',NULL,NULL,'THANKSGIVING-USA','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',396),(24091,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-20',NULL,'Y',400),(24089,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-12-28','Holy Innocents',NULL,NULL,'HOLY-INNOCENTS','/holy-innocents/','/holy-innocents/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',402),(24088,'religious','christian','christian',NULL,NULL,NULL,'2022','2022-12-31','Watch Night',NULL,NULL,'WATCH-NIGHT','/watch-night/','/watch-night/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',403),(24087,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-08-13','Obon',NULL,NULL,'OBON','/obon/','/obon/',0,'','RH',NULL,'obon.jpg','flickr.com/14360805@N05',NULL,'2021-04-20',NULL,'Y',659),(24082,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-04-16','Theravada New Year',NULL,NULL,'THERAVADA-NEW-YEAR','/theravada-new-year/','/theravada-new-year/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',477),(24079,'religious','buddhist','buddhist',NULL,NULL,NULL,'2022','2022-01-10','Bodhi Day',NULL,NULL,'BODHI-DAY','/bodhi-day/','/bodhi-day/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',480),(15243,'state','wyoming','us','Americas','Wyoming',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5044),(15241,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5032),(15240,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5031),(15239,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5030),(15238,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-11-26','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5029),(15236,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5027),(15234,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-01-20','Martin Luther King Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5025),(15233,'state','wisconsin','us','Americas','Wisconsin',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5024),(15223,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5058),(15221,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5056),(15220,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-05-12','Primary Election Day',NULL,'','ELECTION-DAY','/primary-election-day/','/primary-election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5055),(15218,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5053),(15217,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5052),(15215,'state','washington','us','Americas','Washington',NULL,'2020','2020-11-27','Native American Heritage Day',NULL,'','AMERICAN-HERITAGE-DAY',NULL,'/native-americans-heritage-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5041),(15214,'state','washington','us','Americas','Washington',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5040),(15213,'state','washington','us','Americas','Washington',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5039),(15212,'state','washington','us','Americas','Washington',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5038),(15211,'state','washington','us','Americas','Washington',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5037),(15209,'state','washington','us','Americas','Washington',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5035),(15203,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5078),(15202,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-11-25','Thanksgiving Eve',NULL,'','THANKSGIVING-EVE','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','H','thanksgiving-day.jpg',NULL,'4 hours additional holiday time','2020-03-15',NULL,'Y',5077),(15201,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5076),(15200,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-10-12','Columbus Day & Yorktown Victory Day',NULL,'','COLUMBUS-DAY-YORKTOWN','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5075),(15198,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5073),(15196,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-02-17','George Washington Day',NULL,'','GEORGE-WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5071),(15195,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-01-20','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5070),(15194,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-01-17','Lee-Jackson Day',NULL,'','LEE-JACKSON-DAY','/lee-jackson-day/','/lee-jackson-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5069),(15193,'state','virginia','us','Americas','Virginia',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5068),(15192,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5090),(15191,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5089),(15190,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5088),(15188,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-08-17','Bennington Battle Day',NULL,'','BENNINGTON-BATTLE-DAY','/bennington-battle-day/','/bennington-battle-day/',0,'Y','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5086),(15185,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-03-03','Town Meeting Day',NULL,'','TOWN-MEETING-DAY','/town-meeting-day/','/town-meeting-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5083),(15183,'state','vermont','us','Americas','Vermont',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5081),(15181,'state','utah','us','Americas','Utah',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6591),(15176,'state','utah','us','Americas','Utah',NULL,'2020','2020-07-24','Pioneer Day',NULL,'','PIONEER-DAY','/pioneer-day/','/pioneer-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',5017),(15172,'state','utah','us','Americas','Utah',NULL,'2020','2020-01-20','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5013),(15160,'state','texas','us','Americas','Texas',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6101),(15159,'state','texas','us','Americas','Texas',NULL,'2020','2020-12-24','Christmas Eve Day',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',6100),(15158,'state','texas','us','Americas','Texas',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5099),(15157,'state','texas','us','Americas','Texas',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5098),(15151,'state','texas','us','Americas','Texas',NULL,'2020','2020-01-20','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5092),(15150,'state','texas','us','Americas','Texas',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5091),(15149,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5011),(15138,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-01-20','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',5000),(15137,'state','tennessee','us','Americas','Tennessee',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4999),(15136,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-07-03','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6580),(15135,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4987),(15134,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4986),(15133,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4985),(15132,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-10-12','Native Americans Day',NULL,'','NATIVE-AMERICANS-DAY','/native-americans-day/','/native-americans-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4984),(15131,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4983),(15130,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4982),(15129,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4981),(15127,'state','south-dakota','us','Americas','South Dakota',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4979),(15121,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-11-27','Day after Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6234),(15116,'state','south-carolina','us','Americas','South Carolina',NULL,'2020','2020-05-11','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',6229),(15113,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-07-06','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6577),(15111,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4976),(15110,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4975),(15109,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-11-03','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4974),(15106,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-08-10','Victory Day',NULL,'','VICTORY-DAY','/victory-day/','/victory-day/',0,'','RH',NULL,'',NULL,'Second Monday in August','2020-03-14',NULL,'Y',4971),(15105,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4970),(15104,'state','rhode-island','us','Americas','Rhode Island',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4969),(15098,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6131),(15097,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6130),(15091,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2020','2020-01-20','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6124),(15086,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4964),(15085,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4963),(15084,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4962),(15083,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-07-03','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4961),(15082,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4960),(15081,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-01-20','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4959),(15080,'state','oregon','us','Americas','Oregon',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4958),(15077,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-11-27','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4955),(15076,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4954),(15075,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4953),(15074,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4952),(15073,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-07-03','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4951),(15071,'state','oklahoma','us','Americas','Oklahoma',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4949),(15063,'state','ohio','us','Americas','Ohio',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6118),(15057,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6573),(15056,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4946),(15055,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'Office will close at noon','2020-03-14',NULL,'Y',4945),(15051,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4941),(15050,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4940),(15047,'state','north-dakota','us','Americas','North Dakota',NULL,'2020','2020-01-20','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4937),(15031,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6112),(15030,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6111),(15022,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-01-20','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6103),(15021,'state','north-carolina','us','Americas','North Carolina',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6102),(15020,'state','new-york','us','Americas','New York',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4924),(15017,'state','new-york','us','Americas','New York',NULL,'2020','2020-11-03','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4921),(15016,'state','new-york','us','Americas','New York',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4920),(15010,'state','new-york','us','Americas','New York',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4914),(15009,'state','new-york','us','Americas','New York',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4913),(15008,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6225),(15007,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-11-27','Presidents\' Day (observed)',NULL,'','PRESIDENTS-DAY-HOLIDAY','/presidents-day/','/presidents-day/',0,'','OB',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6224),(15000,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6217),(14999,'state','new-mexico','us','Americas','New Mexico',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6216),(14992,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6173),(14990,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6171),(14989,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6170),(14988,'state','new-jersey','us','Americas','New Jersey',NULL,'2020','2020-02-17','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6169),(14984,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6567),(14983,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4912),(14982,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4911),(14975,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-01-20','Martin Luther King Jr./ Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4904),(14974,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4903),(14963,'state','nevada','us','Americas','Nevada',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4893),(14961,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',6565),(14960,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4891),(14959,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-11-27','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4890),(14955,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4886),(14954,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4885),(14952,'state','nebraska','us','Americas','Nebraska',NULL,'2020','2020-04-24','Arbor Day',NULL,'','ARBOR-DAY','/arbor-day/','/arbor-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-14',NULL,'Y',4883),(14942,'state','montana','us','Americas','Montana',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4874),(14941,'state','montana','us','Americas','Montana',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4873),(14940,'state','montana','us','Americas','Montana',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4872),(14932,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4864),(14931,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4863),(14930,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4862),(14924,'state','missouri','us','Americas','Missouri',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-14',NULL,'Y',4856),(14910,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6559),(14908,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-11-27','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4854),(14907,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4853),(14906,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4852),(14902,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4848),(14901,'state','minnesota','us','Americas','Minnesota',NULL,'2020','2020-02-17','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4846),(14890,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4836),(14889,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4835),(14888,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4834),(14886,'state','michigan','us','Americas','Michigan',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4832),(14881,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,'Restrictions until 12 noon','2020-03-13',NULL,'Y',4827),(14880,'state','massachusetts','us','Americas','Massachusetts',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4826),(14871,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-11-27','American Indian Heritage Day',NULL,'','AMERICAN-INDIAN-HERITAGE-DAY','/american-indian-heritage-day/','/american-indian-heritage-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-13',NULL,'Y',4818),(14869,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4816),(14868,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-11-03','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-13',NULL,'Y',4815),(14867,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4814),(14865,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4812),(14864,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4811),(14863,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-02-17','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4810),(14862,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-01-20','Dr. Martin Luther King, Jr., Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4809),(14861,'state','maryland','us','Americas','Maryland',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4808),(14847,'state','maine','us','Americas','Maine',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6556),(14845,'state','maine','us','Americas','Maine',NULL,'2020','2020-11-27','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4806),(14844,'state','maine','us','Americas','Maine',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4805),(14843,'state','maine','us','Americas','Maine',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4804),(14842,'state','maine','us','Americas','Maine',NULL,'2020','2020-10-12','Indigenous Peoples Day',NULL,'','INDIGENOUS-PEOPLES-DAY',NULL,'/indigenous-peoples-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-13',NULL,'Y',4803),(14841,'state','maine','us','Americas','Maine',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4802),(14836,'state','maine','us','Americas','Maine',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4797),(14835,'state','maine','us','Americas','Maine',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4796),(14834,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-11-03','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-13',NULL,'Y',6555),(14832,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4795),(14828,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4791),(14827,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4790),(14826,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4789),(14825,'state','louisiana','us','Americas','Louisiana',NULL,'2020','2020-02-25','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH',NULL,'',NULL,'Tuesday before Ash Wednesday','2020-03-13',NULL,'Y',4788),(14820,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6144),(14816,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-11-03','Presidential Election',NULL,'','PRESEDENTIAL-ELECTION','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-13',NULL,'Y',6140),(14815,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6139),(14814,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-07-03','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6138),(14813,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6137),(14811,'state','kentucky','us','Americas','Kentucky',NULL,'2020','2020-01-20','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-13',NULL,'Y',6135),(14808,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4785),(14807,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4784),(14806,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-11-27','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4783),(14805,'state','kansas','us','Americas','Kansas',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-13',NULL,'Y',4782),(14797,'state','iowa','us','Americas','Iowa',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4775),(14781,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4759),(14780,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4758),(14779,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4757),(14778,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4756),(14777,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-05-05','Primary Election Day',NULL,'','PRIMARY-ELECTION-DAY','/primary-election-day/','/primary-election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4755),(14776,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4754),(14775,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4753),(14774,'state','indiana','us','Americas','Indiana',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4752),(14772,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4751),(14770,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-11-26','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4749),(14766,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4745),(14765,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4744),(14764,'state','illinois','us','Americas','Illinois',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4743),(14747,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'The twenty-fifth day in December','2020-03-12',NULL,'Y',4728),(14746,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,'The fourth Thursday in November','2020-03-12',NULL,'Y',4727),(14743,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,'The first Monday in September','2020-03-12',NULL,'Y',4724),(14739,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,'The last Monday in May','2020-03-12',NULL,'Y',4720),(14735,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-01-20','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,'The third Monday in January','2020-03-12',NULL,'Y',4716),(14734,'state','hawaii','us','Americas','Hawaii',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,'The first day in January','2020-03-12',NULL,'Y',4715),(14733,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6548),(14732,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4714),(14731,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-11-27','State Holiday',NULL,'','STATE-HOLIDAY','/state-holiday-georgia/','/state-holiday-georgia/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4713),(14730,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4712),(14729,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4711),(14728,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-10-12','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4710),(14727,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4709),(14726,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4708),(14725,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4707),(14724,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-04-10','State Holiday',NULL,'','STATE-HOLIDAY','/state-holiday-georgia/','/state-holiday-georgia/',0,'','RH',NULL,'',NULL,NULL,'2020-03-12',NULL,'Y',4706),(14723,'state','georgia','us','Americas','Georgia',NULL,'2020','2020-12-24','Washington Birthday Holiday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washington-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4705),(14719,'state','florida','us','Americas','Florida',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6165),(14718,'state','florida','us','Americas','Florida',NULL,'2020','2020-11-27','Fridayay After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6164),(14717,'state','florida','us','Americas','Florida',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6163),(14716,'state','florida','us','Americas','Florida',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6162),(14715,'state','florida','us','Americas','Florida',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6161),(14714,'state','florida','us','Americas','Florida',NULL,'2020','2020-07-03','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6160),(14712,'state','florida','us','Americas','Florida',NULL,'2020','2020-01-20','Birthday of Dr. Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6158),(14711,'state','florida','us','Americas','Florida',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6157),(14710,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',6546),(14709,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4702),(14706,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4699),(14703,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4696),(14702,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-07-03','Independence Day Holiday',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4695),(14701,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4694),(14700,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4693),(14699,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-01-20','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4692),(14698,'state','delaware','us','Americas','Delaware',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-12',NULL,'Y',4691),(14019,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4690),(14018,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4689),(14017,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4688),(14015,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4686),(14014,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-07-03','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4685),(14013,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4684),(14012,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-04-10','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4683),(14011,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-02-17','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4682),(14010,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-01-06',NULL,'Y',4681),(14009,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-01-20','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4680),(14008,'state','connecticut','us','Americas','Connecticut',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4679),(14006,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6203),(14005,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6201),(14004,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-10-05','Cabrini Day',NULL,'','CABRINI-DAY',NULL,'/cabrini-day/',0,'','RH',NULL,'',NULL,NULL,'2020-01-06',NULL,'Y',6200),(14003,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6199),(14002,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6198),(14001,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-07-03','Independence Day Holiday',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6197),(13998,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-01-20','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6194),(13997,'state','colorado','us','Americas','Colorado',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6193),(13986,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6215),(13985,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6214),(13984,'state','arkansas','us','Americas','Arkansas',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6213),(13966,'state','arizona','us','Americas','Arizona',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',4553),(15232,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','H','new-years-day.jpg',NULL,'(1/2 day)','2020-03-15',NULL,'Y',5067),(15231,'state','west-virginia','us','Americas','West Virginia',NULL,'2020','2020-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',5066),(15280,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-10-18','Alaska Day',NULL,'','ALASKA-DAY','/alaska-day/','/alaska-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',4549),(15282,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4551),(15281,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4550),(19601,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-06-20','West Virginia Day (observed)',NULL,'','WEST-VIRGINIA-DAY',NULL,'/west-virginia-day/',0,'','OB',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',5057),(19597,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5052),(19596,'state','washington','us','Americas','Washington',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5042),(19610,'state','west-virginia','us','Americas','West Virginia',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','H','new-years-day.jpg',NULL,'(1/2 day)','2020-10-03',NULL,'Y',5067),(19585,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6592),(19584,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'8 hours additional holiday time','2020-10-03',NULL,'Y',5079),(19580,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-10-11','Columbus Day & Yorktown Victory Day',NULL,'','COLUMBUS-DAY-YORKTOWN','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5075),(19578,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5073),(19577,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5072),(19576,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-02-15','George Washington Day',NULL,'','GEORGE-WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5071),(19575,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-01-18','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5070),(19574,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-01-15','Lee-Jackson Day',NULL,'','LEE-JACKSON-DAY','/lee-jackson-day/','/lee-jackson-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',5069),(19573,'state','virginia','us','Americas','Virginia',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5068),(19571,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5089),(19569,'state','vermont','us','Americas','Vermont',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5087),(19556,'state','utah','us','Americas','Utah',NULL,'2021','2021-07-23','Pioneer Day',NULL,'','PIONEER-DAY','/pioneer-day/','/pioneer-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',5017),(19555,'state','utah','us','Americas','Utah',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5016),(19552,'state','utah','us','Americas','Utah',NULL,'2021','2021-01-18','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5013),(19551,'state','utah','us','Americas','Utah',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5012),(19550,'state','texas','us','Americas','Texas',NULL,'2021','2021-12-26','Day After Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6590),(19549,'state','texas','us','Americas','Texas',NULL,'2021','2021-09-19','Rosh Hashanah',NULL,NULL,'ROSH-HASHANAH','/rosh-hashanah/','/rosh-hashanah/',0,'','OH',NULL,NULL,NULL,'Optional Holiday','2020-10-03',NULL,'Y',6589),(19548,'state','texas','us','Americas','Texas',NULL,'2021','2021-09-28','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','OH',NULL,NULL,NULL,'Optional Holiday','2020-10-03',NULL,'Y',6588),(19547,'state','texas','us','Americas','Texas',NULL,'2021','2021-08-27','LBJ\'s Birthday',NULL,'','LBJS-BIRTHDAY',NULL,'/lyndon-b-johnson-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2020-10-03',NULL,'Y',6587),(19545,'state','texas','us','Americas','Texas',NULL,'2021','2021-04-21','San Jacinto Day',NULL,'','SAN-JACINTO-DAY',NULL,'/san-jacinto-day/',0,'','RH',NULL,'',NULL,'Skeleton Crew Required','2020-10-03',NULL,'Y',6585),(19543,'state','texas','us','Americas','Texas',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OH',NULL,'good-friday.jpg',NULL,'Optional Holiday','2020-10-03',NULL,'Y',6583),(19542,'state','texas','us','Americas','Texas',NULL,'2021','2021-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','OH',NULL,'',NULL,'Optional Holiday','2020-10-03',NULL,'Y',6582),(19541,'state','texas','us','Americas','Texas',NULL,'2021','2021-01-19','Confederate Heroes\' Day',NULL,'','CONFEDERATE-HEROES-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',6581),(19540,'state','texas','us','Americas','Texas',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6101),(19539,'state','texas','us','Americas','Texas',NULL,'2021','2021-12-24','Christmas Eve Day',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6100),(19538,'state','texas','us','Americas','Texas',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5099),(19537,'state','texas','us','Americas','Texas',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5098),(19536,'state','texas','us','Americas','Texas',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5097),(19535,'state','texas','us','Americas','Texas',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5096),(19534,'state','texas','us','Americas','Texas',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5095),(19533,'state','texas','us','Americas','Texas',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5094),(19532,'state','texas','us','Americas','Texas',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5093),(19531,'state','texas','us','Americas','Texas',NULL,'2021','2021-01-18','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5092),(19530,'state','texas','us','Americas','Texas',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5091),(19528,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5010),(19527,'state','tennessee','us','Americas','Tennessee',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5009),(19516,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-07-05','Independence Day (Observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6580),(19515,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4987),(19513,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'',4985),(19512,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-10-11','Native Americans Day',NULL,'','NATIVE-AMERICANS-DAY','/native-americans-day/','/native-americans-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',4984),(19511,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4983),(19507,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4979),(19506,'state','south-dakota','us','Americas','South Dakota',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4978),(19498,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6231),(19495,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-01-18','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6227),(19494,'state','south-carolina','us','Americas','South Carolina',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6226),(19488,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4972),(19487,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-08-09','Victory Day',NULL,'','VICTORY-DAY','/victory-day/','/victory-day/',0,'','RH',NULL,'',NULL,'Second Monday in August','2020-10-03',NULL,'Y',4971),(19486,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4970),(19485,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4969),(19484,'state','rhode-island','us','Americas','Rhode Island',NULL,'2021','2021-01-18','Dr.Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4968),(19479,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6131),(19478,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6130),(19470,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6575),(19468,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4965),(19465,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4962),(19463,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4960),(19461,'state','oregon','us','Americas','Oregon',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4958),(19460,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-12-24','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4957),(19459,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-12-23','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4956),(19458,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-11-26','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4955),(19457,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4954),(19456,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4953),(19455,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4952),(19454,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-07-05','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4951),(19453,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4950),(19452,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4949),(19451,'state','oklahoma','us','Americas','Oklahoma',NULL,'2021','2021-01-18','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4948),(19448,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6122),(19447,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6121),(19446,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6120),(19445,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6119),(19444,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6118),(19443,'state','ohio','us','Americas','Ohio',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6117),(19436,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'Office will close at noon','2020-10-03',NULL,'Y',4945),(19428,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-01-18','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4937),(19427,'state','north-dakota','us','Americas','North Dakota',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4936),(19421,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6109),(19420,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6108),(19417,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6105),(19416,'state','north-carolina','us','Americas','North Carolina',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6104),(19404,'state','new-york','us','Americas','New York',NULL,'2021','2021-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',4915),(19403,'state','new-york','us','Americas','New York',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4914),(19402,'state','new-york','us','Americas','New York',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4913),(19401,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6225),(19400,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-11-26','Presidents\' Day (observed)',NULL,'','PRESIDENTS-DAY-HOLIDAY','/presidents-day/','/presidents-day/',0,'','OB',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6224),(19391,'state','new-mexico','us','Americas','New Mexico',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6569),(19390,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6180),(19388,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6176),(19387,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6174),(19386,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6173),(19385,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6172),(19384,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6171),(19383,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6170),(19382,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-02-15','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6169),(19381,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6568),(19379,'state','new-jersey','us','Americas','New Jersey',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6166),(19378,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6567),(19376,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4911),(19369,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2021','2021-01-18','Martin Luther King Jr./ Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4904),(19367,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6566),(19366,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4902),(19362,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-10-29','Nevada Day',NULL,'','NEVADA-DAY','/nevada-day/','/nevada-day/',0,'','RH',NULL,'',NULL,'Last Friday in October','2020-10-03',NULL,'Y',4898),(19361,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4897),(19360,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4896),(19357,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4893),(19356,'state','nevada','us','Americas','Nevada',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4892),(19354,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4891),(19350,'state','nebraska','us','Americas','Nebraska',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4887),(19331,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',6563),(19330,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4867),(19329,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4866),(19325,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4862),(19324,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4861),(19323,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-05-08','Truman Day',NULL,'','TRUMAN-DAY','/truman-day/','/truman-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',4860),(19322,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-02-15','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',4859),(19321,'state','missouri','us','Americas','Missouri',NULL,'2021','2021-02-12','Lincoln Day',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-03',NULL,'Y',4858),(19312,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6187),(19311,'state','mississippi','us','Americas','Mississippi',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6186),(19306,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6559),(19304,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-11-26','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4854),(19303,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4853),(19302,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4852),(19301,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4851),(19299,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4849),(19298,'state','minnesota','us','Americas','Minnesota',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4848),(19291,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4841),(19290,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4840),(19289,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4839),(19288,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4838),(19287,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4836),(19285,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4834),(19284,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4833),(19282,'state','michigan','us','Americas','Michigan',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4831),(19281,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4830),(19278,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,'Restrictions until 12 noon','2020-10-01',NULL,'Y',4827),(19271,'state','massachusetts','us','Americas','Massachusetts',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4820),(19270,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6557),(19269,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4819),(19268,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-11-26','American Indian Heritage Day',NULL,'','AMERICAN-INDIAN-HERITAGE-DAY','/american-indian-heritage-day/','/american-indian-heritage-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4818),(19264,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4813),(19263,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4812),(19262,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4811),(19261,'state','maryland','us','Americas','Maryland',NULL,'2021','2021-02-15','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4810),(19256,'state','maine','us','Americas','Maine',NULL,'2021','2021-11-26','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4806),(19255,'state','maine','us','Americas','Maine',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4805),(19253,'state','maine','us','Americas','Maine',NULL,'2021','2021-10-11','Indigenous Peoples Day',NULL,'','INDIGENOUS-PEOPLES-DAY',NULL,'/indigenous-peoples-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4803),(19252,'state','maine','us','Americas','Maine',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4802),(19239,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4790),(19238,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4789),(19237,'state','louisiana','us','Americas','Louisiana',NULL,'2021','2021-02-16','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH',NULL,'',NULL,'Tuesday before Ash Wednesday','2020-10-01',NULL,'Y',4788),(19233,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6145),(19231,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-11-26','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6143),(19230,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6142),(19229,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6141),(19225,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6136),(19223,'state','kentucky','us','Americas','Kentucky',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6134),(19221,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4785),(19219,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-11-26','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4783),(19217,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4781),(19215,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4779),(19214,'state','kansas','us','Americas','Kansas',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4778),(19210,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4775),(19209,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4773),(19208,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4772),(19206,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4770),(19205,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4769),(19203,'state','iowa','us','Americas','Iowa',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4767),(19201,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-12-24','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4765),(19200,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-11-26','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4764),(19199,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4763),(19198,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4762),(19197,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4760),(19196,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4759),(19195,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4758),(19194,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4757),(19191,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4753),(19190,'state','indiana','us','Americas','Indiana',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4752),(19189,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6551),(19187,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-11-26','Thanksgiving Holiday',NULL,'','THANKSGIVING-DAY-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4750),(19186,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4749),(19185,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4748),(19184,'state','illinois','us','Americas','Illinois',NULL,'2021','2021-11-03','General Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'',4747),(19165,'state','idaho','us','Americas','Idaho',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,'','2020-10-01',NULL,'Y',4729),(19162,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,'The fourth Thursday in November','2020-10-01',NULL,'Y',4727),(19152,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-01-18','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,'The third Monday in January','2020-10-01',NULL,'Y',4716),(19151,'state','hawaii','us','Americas','Hawaii',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,'The first day in January','2020-10-01',NULL,'Y',4715),(19149,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4714),(19148,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-04-26','State Holiday',NULL,'','STATE-HOLIDAY','/state-holiday-georgia/','/state-holiday-georgia/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4713),(19147,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4712),(19145,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4710),(19144,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4709),(19143,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4708),(19142,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4707),(19140,'state','georgia','us','Americas','Georgia',NULL,'2021','2021-12-15','Washington Birthday Holiday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washington-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4705),(19129,'state','florida','us','Americas','Florida',NULL,'2021','2021-01-18','Birthday of Dr. Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6158),(19127,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6546),(19126,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4702),(19125,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-11-26','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4701),(19124,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4700),(19123,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4699),(19121,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4696),(19120,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-07-05','Independence Day Holiday',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4695),(19119,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4694),(19117,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-01-18','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4692),(19116,'state','delaware','us','Americas','Delaware',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4691),(19114,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4689),(19113,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4688),(19112,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4687),(19111,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4686),(19110,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4685),(19109,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4684),(19108,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4683),(19107,'state','connecticut','us','Americas','Connecticut',NULL,'2021','2021-02-15','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4682),(19102,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6203),(19100,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-10-05','Cabrini Day',NULL,'','CABRINI-DAY',NULL,'/cabrini-day/',0,'','RH',NULL,'',NULL,'The first Monday of October','2020-10-01',NULL,'Y',6200),(19099,'state','colorado','us','Americas','Colorado',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6199),(19092,'state','california','us','Americas','California',NULL,'2021','2021-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6594),(19090,'state','california','us','Americas','California',NULL,'2021','2021-11-26','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6155),(19089,'state','california','us','Americas','California',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6154),(19088,'state','california','us','Americas','California',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6153),(19087,'state','california','us','Americas','California',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6152),(19086,'state','california','us','Americas','California',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6151),(19085,'state','california','us','Americas','California',NULL,'2021','2021-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',6150),(19084,'state','california','us','Americas','California',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6149),(19081,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6215),(19080,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6214),(19079,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6213),(19076,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6210),(19075,'state','arkansas','us','Americas','Arkansas',NULL,'2021','2021-07-05','Independence Day Holiday',NULL,'','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',6209),(19066,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4558),(19065,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-07-05','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4557),(19064,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4556),(19063,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-02-15','Lincoln/Washington Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4555),(19062,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-01-18','Martin Luther King, Jr./Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4554),(19061,'state','arizona','us','Americas','Arizona',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4553),(19060,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4528),(19057,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-02-16','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4531),(19055,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-05-31','National Memorial Day',NULL,'','NATIONAL-MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4533),(19054,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-06-07','Jefferson Davis\' Birthday',NULL,'','JEFFERSON-DAVIS-BIRTHDAY',NULL,'/jefferson-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4534),(19053,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-07-05','Fourth day of July (observed)',NULL,'','FOURTH-DAY-OF-JULY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4535),(19051,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-10-11','Columbus Day / Fraternal Day / American Indian Heritage Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4537),(19050,'state','alabama','us','Americas','Alabama',NULL,'2021','2021-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4538),(19043,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-10-18','Alaska Day',NULL,'','ALASKA-DAY','/alaska-day/','/alaska-day/',0,'','RH',NULL,'',NULL,NULL,'2020-10-01',NULL,'Y',4549),(19042,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4548),(19041,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-07-04','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4547),(19040,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4546),(19036,'state','alaska','us','Americas','Alaska',NULL,'2021','2021-02-15','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-01',NULL,'Y',4544),(24880,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5031),(24874,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5053),(24873,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5054),(24872,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5056),(24870,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12361),(24866,'state','west-virginia','us','Americas','West Virginia',NULL,'2022','2022-11-25','Day after Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5064),(24862,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,'8 hours additional holiday time','2021-04-22',NULL,'Y',5079),(24857,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5072),(24856,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12359),(24854,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-10-10','Columbus Day & Yorktown Victory Day',NULL,'','COLUMBUS-DAY-YORKTOWN','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5075),(24853,'state','virginia','us','Americas','Virginia',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5076),(24828,'state','utah','us','Americas','Utah',NULL,'2022','2022-07-25','Pioneer Day Holiday',NULL,NULL,'PIONEER-HOLIDAY','/pioneer-day/','/pioneer-day/',0,NULL,'RH',NULL,NULL,NULL,NULL,'2021-04-22',NULL,'Y',12356),(24827,'state','utah','us','Americas','Utah',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5019),(24826,'state','utah','us','Americas','Utah',NULL,'2022','2022-08-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5018),(24825,'state','texas','us','Americas','Texas',NULL,'2022','2022-12-26','Day After Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6590),(24823,'state','texas','us','Americas','Texas',NULL,'2022','2022-01-17','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5092),(24819,'state','texas','us','Americas','Texas',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5096),(24817,'state','texas','us','Americas','Texas',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5098),(24813,'state','texas','us','Americas','Texas',NULL,'2022','2022-01-19','Confederate Heroes\' Day',NULL,'','CONFEDERATE-HEROES-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',6581),(24812,'state','texas','us','Americas','Texas',NULL,'2022','2022-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','OH',NULL,'',NULL,'Optional Holiday','2021-04-22',NULL,'Y',6582),(24802,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5007),(24800,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5005),(24799,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-07-05','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5004),(24798,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5003),(24797,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-04-02','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5002),(24796,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5001),(24795,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-01-18','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5000),(24794,'state','tennessee','us','Americas','Tennessee',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4999),(24786,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-10-10','Native Americans Day',NULL,'','NATIVE-AMERICANS-DAY','/native-americans-day/','/native-americans-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4984),(24785,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4985),(24783,'state','south-dakota','us','Americas','South Dakota',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4987),(24782,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-05-30','National Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6579),(24779,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-01-17','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6227),(24778,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6228),(24777,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-05-10','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',6229),(24761,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4973),(24760,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4975),(24756,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-01-17','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6124),(24754,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6126),(24753,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6127),(24751,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6129),(24746,'state','oregon','us','Americas','Oregon',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6575),(24732,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-01-17','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4948),(24731,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4949),(24730,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4950),(24729,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4951),(24728,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4952),(24726,'state','oklahoma','us','Americas','Oklahoma',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4954),(24722,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6121),(24721,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6120),(24720,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6119),(24719,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6118),(24717,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6116),(24715,'state','ohio','us','Americas','Ohio',NULL,'2022','2022-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6114),(24712,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4936),(24710,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4938),(24709,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4939),(24707,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4941),(24706,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4942),(24705,'state','north-dakota','us','Americas','North Dakota',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4943),(24701,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-12-23','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,NULL,'OB',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12347),(24700,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-12-27','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,NULL,'OB',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12346),(24698,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6571),(24659,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-02-21','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6169),(24658,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6170),(24655,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6174),(24654,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-11-08','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',6175),(24653,'state','new-jersey','us','Americas','New Jersey',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6176),(24651,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4751),(24649,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-01-17','Martin Luther King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4740),(24648,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-DAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4741),(24643,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4746),(24641,'state','illinois','us','Americas','Illinois',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4749),(24639,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6204),(24638,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6193),(24637,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6195),(24633,'state','colorado','us','Americas','Colorado',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6199),(24625,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-02-21','George Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6207),(24624,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6208),(24623,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6210),(24622,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6211),(24621,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6213),(24620,'state','arkansas','us','Americas','Arkansas',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6212),(24619,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12335),(24608,'state','maryland','us','Americas','Maryland',NULL,'2022','2022-11-25','American Indian Heritage Day',NULL,'','AMERICAN-INDIAN-HERITAGE-DAY','/american-indian-heritage-day/','/american-indian-heritage-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4818),(24607,'state','california','us','Americas','California',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6147),(24600,'state','california','us','Americas','California',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6154),(24599,'state','california','us','Americas','California',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6156),(24598,'state','california','us','Americas','California',NULL,'2022','2022-11-25','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6155),(24573,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12342),(24565,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4910),(24563,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4912),(24562,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12341),(24561,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4902),(24560,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4892),(24557,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4895),(24556,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4896),(24555,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4897),(24554,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-10-28','Nevada Day',NULL,'','NEVADA-DAY','/nevada-day/','/nevada-day/',0,'','RH',NULL,'',NULL,'Last Friday in October','2021-04-22',NULL,'Y',4898),(24553,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4899),(24552,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4900),(24551,'state','nevada','us','Americas','Nevada',NULL,'2022','2022-11-25','Family Day',NULL,'','FAMILY-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,'Friday following the Fourth Thursday in November.','2021-04-22',NULL,'Y',4901),(24550,'state','nebraska','us','Americas','Nebraska',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12340),(24534,'state','montana','us','Americas','Montana',NULL,'2022','2022-01-17','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4870),(24846,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5081),(24695,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6104),(24694,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6105),(24693,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6107),(24692,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6108),(24690,'state','north-carolina','us','Americas','North Carolina',NULL,'2022','2022-11-25','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6110),(24847,'state','vermont','us','Americas','Vermont',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5080),(24771,'state','south-carolina','us','Americas','South Carolina',NULL,'2022','2022-12-26','Day after Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6235),(24769,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12352),(24766,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-01-17','Dr.Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4968),(24765,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4969),(24764,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4970),(24763,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-08-08','Victory Day',NULL,'','VICTORY-DAY','/victory-day/','/victory-day/',0,'','RH',NULL,'',NULL,'Second Monday in August','2021-04-22',NULL,'Y',4971),(24762,'state','rhode-island','us','Americas','Rhode Island',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4972),(24533,'state','montana','us','Americas','Montana',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4871),(24531,'state','montana','us','Americas','Montana',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4873),(24530,'state','montana','us','Americas','Montana',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4874),(24529,'state','montana','us','Americas','Montana',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4875),(24528,'state','montana','us','Americas','Montana',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4877),(24525,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4867),(24524,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4866),(24523,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4865),(24522,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-10-11','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4864),(24521,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4863),(24518,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-05-08','Truman Day',NULL,'','TRUMAN-DAY','/truman-day/','/truman-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4860),(24517,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-02-15','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4859),(24516,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-02-12','Lincoln Day',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4858),(24515,'state','missouri','us','Americas','Missouri',NULL,'2022','2022-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4857),(24508,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6188),(24507,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6189),(24506,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-11-10','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6190),(24504,'state','mississippi','us','Americas','Mississippi',NULL,'2022','2022-01-17','Robert E. Lee\'s Birthday',NULL,'','ROBERT-E-LEES-BIRTHDAY',NULL,'/robert-e-lee-birthday/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',6561),(24500,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4845),(24499,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-02-21','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4846),(24498,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4848),(24496,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4850),(24495,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4851),(24494,'state','minnesota','us','Americas','Minnesota',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4852),(24473,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-04-18','Patriots\' Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH',NULL,'',NULL,'Third Monday in April','2021-04-22',NULL,'Y',4823),(24472,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4824),(24471,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4825),(24470,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4826),(24467,'state','massachusetts','us','Americas','Massachusetts',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,'Restrictions until 1pm','2021-04-22',NULL,'Y',4828),(24465,'state','maine','us','Americas','Maine',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12334),(24464,'state','maine','us','Americas','Maine',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4807),(24463,'state','maine','us','Americas','Maine',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4796),(24462,'state','maine','us','Americas','Maine',NULL,'2022','2022-01-17','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4797),(24461,'state','maine','us','Americas','Maine',NULL,'2022','2022-02-21','Washington\'s Birthday',NULL,'','WASHINGTONS-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4798),(24460,'state','maine','us','Americas','Maine',NULL,'2022','2022-04-18','Patriot\'s Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4799),(24459,'state','maine','us','Americas','Maine',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4800),(24458,'state','maine','us','Americas','Maine',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4802),(24457,'state','maine','us','Americas','Maine',NULL,'2022','2022-10-10','Indigenous Peoples Day',NULL,'','INDIGENOUS-PEOPLES-DAY',NULL,'/indigenous-peoples-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4803),(24454,'state','maine','us','Americas','Maine',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4805),(24451,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4786),(24450,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-01-17','Birthday of Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4787),(24449,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-03-01','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH',NULL,'',NULL,'Tuesday before Ash Wednesday','2021-04-22',NULL,'Y',4788),(24448,'state','louisiana','us','Americas','Louisiana',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4789),(24400,'state','iowa','us','Americas','Iowa',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4772),(24384,'state','indiana','us','Americas','Indiana',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4763),(24371,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6550),(24370,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12330),(24369,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4738),(24367,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-01-17','M L King Jr./Idaho Human Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4730),(24364,'state','idaho','us','Americas','Idaho',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4734),(24357,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-01-17','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,'The third Monday in January','2021-04-22',NULL,'Y',4716),(24356,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-02-21','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,'The third Monday in February','2021-04-22',NULL,'Y',4717),(24355,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH',NULL,'good-friday.jpg',NULL,'The Friday preceding Easter Sunday','2021-04-22',NULL,'Y',4719),(24350,'state','hawaii','us','Americas','Hawaii',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,'The first Monday in September','2021-04-22',NULL,'Y',4724),(24344,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-01-17','Martin Luther King Jr\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4704),(24342,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-04-25','State Holiday',NULL,'','STATE-HOLIDAY','/state-holiday-georgia/','/state-holiday-georgia/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4706),(24341,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4707),(24339,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-10-10','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4710),(24338,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4711),(24337,'state','georgia','us','Americas','Georgia',NULL,'2022','2022-11-25','State Holiday',NULL,'','STATE-HOLIDAY','/state-holiday-georgia/','/state-holiday-georgia/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4713),(24326,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',6546),(24325,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4702),(24324,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4691),(24320,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4696),(24319,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4699),(24317,'state','delaware','us','Americas','Delaware',NULL,'2022','2022-11-25','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4701),(24315,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4690),(24314,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4689),(24313,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4679),(24312,'state','connecticut','us','Americas','Connecticut',NULL,'2022','2022-01-17','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4680),(24232,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4551),(24231,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4542),(24228,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-03-28','Seward\'s Day',NULL,'','SEWARDS-DAY','/sewards-day/','/sewards-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4545),(24227,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4546),(24225,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4548),(24224,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-10-18','Alaska Day',NULL,'','ALASKA-DAY','/alaska-day/','/alaska-day/',0,'','RH',NULL,'',NULL,NULL,'2021-04-22',NULL,'Y',4549),(24223,'state','alaska','us','Americas','Alaska',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4550),(24222,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4528),(24221,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-01-17','Martin Luther King, Jr./Robert E. Lee Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4529),(24213,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-10-10','Columbus Day / Fraternal Day / American Indian Heritage Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4537),(24212,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4538),(24211,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-11-24','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4539),(24210,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-12-01','Mrs. Rosa L. Parks Day (Commemoration Only)',NULL,'','ROSA-PARKS-DAY','/rosa-parks-day/','/rosa-parks-day/',0,'','OB','N','',NULL,NULL,'2021-04-22',NULL,'Y',4540),(24209,'state','alabama','us','Americas','Alabama',NULL,'2022','2022-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',4541),(28507,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2902),(28508,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2901),(28509,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2900),(13789,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2866),(11372,'bank-org','bank-of-america','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-12-13',NULL,'Y',2833),(12226,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-10-12','Thanksgiving',NULL,NULL,'THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2770),(9679,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-10-14','Thanksgiving',NULL,NULL,'THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2770),(9676,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-07-01','Canada Day',NULL,'','CANADA-DAY','/canada-day/','/canada-day/',0,'Y','ND','Y','canada-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2767),(9675,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-05-20','Victoria/Patriots\' Day',NULL,'','VICTORIA-DAY','/victoria-day/','/victoria-day/',0,'','NH','Y','victoria-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2766),(9674,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2765),(9673,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-02-18','Family Day',NULL,NULL,'FAMILY-DAY','/family-day/','/family-day/',0,'','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2764),(9672,'market','tsx','canada','Americas','Canada',NULL,'2019','2019-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,'Toronto Stock Exchange, Canada','2018-11-14',NULL,'Y',2763),(9671,'market','nyse','us','Americas','United States',NULL,'2019','2019-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2760),(9670,'market','nyse','us','Americas','United States',NULL,'2019','2019-11-28','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2759),(9663,'market','nyse','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'New York Stock Exchange, United States','2018-11-14',NULL,'Y',2752),(9700,'market','nse','india','asia-pacific','India',NULL,'2019','2019-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2473),(9699,'market','nse','india','asia-pacific','India',NULL,'2019','2019-11-12','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2472),(9698,'market','nse','india','asia-pacific','India',NULL,'2019','2019-04-13','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2474),(9696,'market','nse','india','asia-pacific','India',NULL,'2019','2019-10-28','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2469),(9695,'market','nse','india','asia-pacific','India',NULL,'2019','2019-10-27','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2018-11-14',NULL,'Y',2468),(9694,'market','nse','india','asia-pacific','India',NULL,'2019','2019-10-08','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2467),(9693,'market','nse','india','asia-pacific','India',NULL,'2019','2019-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2466),(9692,'market','nse','india','asia-pacific','India',NULL,'2019','2019-09-10','Moharum',NULL,NULL,'MUHARRAM','/muharram/','/muharram/',0,NULL,'NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2465),(9691,'market','nse','india','asia-pacific','India',NULL,'2019','2019-09-02','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2464),(9690,'market','nse','india','asia-pacific','India',NULL,'2019','2019-08-12','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2463),(9688,'market','nse','india','asia-pacific','India',NULL,'2019','2019-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2018-11-14',NULL,'Y',2461),(9687,'market','nse','india','asia-pacific','India',NULL,'2019','2019-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2460),(9659,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2748),(9658,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2747),(9656,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-02-18','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','National','Y','presidents-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2745),(9655,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2744),(9654,'market','nasdaq','us','Americas','United States',NULL,'2019','2019-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','National','Y','new-years-day.jpg',NULL,'NASDAQ Stock Exchange, United States','2018-11-14',NULL,'Y',2743),(9739,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-06-05','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2517),(9738,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2516),(9737,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-04-13','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2515),(9736,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2514),(9735,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-11-12','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','M',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2513),(9734,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-10-28','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2512),(9733,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-10-27','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,'','2018-11-14',NULL,'Y',2511),(9732,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-10-08','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','M',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2510),(9731,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2509),(9730,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-09-10','Moharum',NULL,NULL,'MUHARRAM','/muharram/','/muharram/',0,NULL,'NH','M',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2508),(9729,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-09-02','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','M',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2507),(9728,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-08-12','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','M',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2506),(9727,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2018-11-14',NULL,'Y',2505),(9726,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','M',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2504),(9725,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2503),(9724,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-04-17','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','M',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2502),(9723,'market','mcx','india','asia-pacific','India',NULL,'2019','2019-03-21','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','M','holi.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2501),(9639,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','National','E','new-years-day.jpg',NULL,'','2018-11-14',NULL,'Y',2762),(9637,'market','lse','uk','Europe','United Kingdom',NULL,'2019','2019-12-26','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','Religious','Y','boxing-day.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2742),(9647,'market','dax','germany','Europe','Germany',NULL,'2019','2019-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2733),(9646,'market','dax','germany','Europe','Germany',NULL,'2019','2019-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2732),(9645,'market','dax','germany','Europe','Germany',NULL,'2019','2019-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2731),(9719,'market','bse','india','asia-pacific','India',NULL,'2019','2019-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2495),(9718,'market','bse','india','asia-pacific','India',NULL,'2019','2019-11-12','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2494),(9717,'market','bse','india','asia-pacific','India',NULL,'2019','2019-04-13','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2493),(9709,'market','bse','india','asia-pacific','India',NULL,'2019','2019-08-12','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2485),(9708,'market','bse','india','asia-pacific','India',NULL,'2019','2019-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2484),(9707,'market','bse','india','asia-pacific','India',NULL,'2019','2019-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2018-11-14',NULL,'Y',2483),(9706,'market','bse','india','asia-pacific','India',NULL,'2019','2019-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','Y',NULL,NULL,NULL,'2018-11-14',NULL,'Y',2482),(9705,'market','bse','india','asia-pacific','India',NULL,'2019','2019-04-19','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2481),(9702,'market','bse','india','asia-pacific','India',NULL,'2019','2019-03-04','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2018-11-14',NULL,'Y',2478),(9627,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-10-06','Queen\'s Birthday',NULL,NULL,'QUEENS-BIRTHDAY-QLD','/queens-birthday/','/queens-birthday/',0,'','RH','Y','queens-birthday.jpg',NULL,NULL,'2018-11-13',NULL,'Y',2717),(9622,'market','asx','australia','Asia Pacific','Australia',NULL,'2019','2019-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2018-11-13',NULL,'Y',2712),(12222,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-05-18','Victoria/Patriots\' Day',NULL,'','VICTORIA-DAY','/victoria-day/','/victoria-day/',0,'','NH','Y','victoria-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2766),(12221,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2765),(12220,'market','tsx','canada','Americas','Canada',NULL,'2020','2020-02-17','Family Day',NULL,NULL,'FAMILY-DAY','/family-day/','/family-day/',0,'','RH','Y','family-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2764),(12234,'market','nyse','us','Americas','United States',NULL,'2020','2020-01-20','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2753),(12209,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2476),(12208,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-11-11','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2019-11-23',NULL,'Y',2468),(12207,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-10-22','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2467),(12206,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-11-12','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2469),(12205,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-11-25','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2472),(12204,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2473),(12203,'market','nse','india','Asia Pacific','India',NULL,'2020','2020-04-02','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2474),(12246,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-01-20','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2744),(12243,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-05-25','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2747),(12241,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-07-03','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2748),(12239,'market','nasdaq','us','Americas','United States',NULL,'2020','2020-11-26','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2750),(12251,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-11-25','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','M',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2513),(12250,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2516),(12249,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-05-25','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2517),(12248,'market','mcx','india','Asia Pacific','India',NULL,'2020','2020-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2514),(12273,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-05-25','Spring Bank Holiday',NULL,NULL,'SPRING-BANK-HOLIDAY','/may-spring-bank-holiday/','/may-spring-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2739),(12269,'market','lse','uk','Europe','United Kingdom',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','National','E','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2019-11-23',NULL,'Y',2762),(12276,'market','euronext','france','Europe','France',NULL,'2020','2020-04-10','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2721),(12275,'market','euronext','france','Europe','France',NULL,'2020','2020-04-13','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2722),(12182,'market','dax','germany','Europe','Germany',NULL,'2020','2020-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2734),(12178,'market','dax','germany','Europe','Germany',NULL,'2020','2020-06-01','Whit Monday',NULL,NULL,'WHIT-MONDAY','/pentecost-monday/','/pentecost-monday/',0,'','NH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2730),(12177,'market','dax','germany','Europe','Germany',NULL,'2020','2020-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2731),(12201,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2477),(12200,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-02-21','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','NH','Y','maha-shivaratri.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2478),(12199,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-03-06','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','RH','Y','holi.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2479),(12198,'market','bse','india','Asia Pacific','India',NULL,'2020','2020-04-02','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','Y',NULL,NULL,NULL,'2019-11-23',NULL,'Y',2480),(12161,'market','asx','australia','Asia Pacific','Australia',NULL,'2020','2020-06-08','Queen\'s Birthday',NULL,NULL,'QUEENS-BIRTHDAY-QLD','/queens-birthday/','/queens-birthday/',0,'','RH','Y','queens-birthday.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2717),(12157,'market','asx','australia','Asia Pacific','Australia',NULL,'2020','2020-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2718),(12156,'market','asx','australia','Asia Pacific','Australia',NULL,'2020','2020-12-28','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','NH','Y','boxing-day.jpg',NULL,NULL,'2019-11-23',NULL,'Y',2719),(19029,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-05-24','Victoria/Patriots\' Day',NULL,'','VICTORIA-DAY','/victoria-day/','/victoria-day/',0,'','NH','Y','victoria-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2766),(19028,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2765),(19027,'market','tsx','canada','Americas','Canada',NULL,'2021','2021-02-15','Family Day',NULL,NULL,'FAMILY-DAY','/family-day/','/family-day/',0,'','RH','Y','family-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2764),(19020,'market','nyse','us','Americas','United States',NULL,'2021','2021-07-05','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2757),(19019,'market','nyse','us','Americas','United States',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2756),(18941,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2454),(18940,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2458),(18939,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-07-20','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2463),(18937,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2466),(18936,'market','nse','india','Asia Pacific','India',NULL,'2021','2021-08-19','Muharram',NULL,NULL,'MUHARRAM','/muharram/','/muharram/',0,NULL,'NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2465),(19016,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-01-18','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','National','Y','martin-luther-king.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2744),(19011,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-07-05','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2748),(19010,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2749),(19009,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2750),(19008,'market','nasdaq','us','Americas','United States',NULL,'2021','2021-12-24','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2751),(18977,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','E','new-years-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2498),(18963,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2516),(18962,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-05-13','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2517),(18961,'market','mcx','india','Asia Pacific','India',NULL,'2021','2021-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2514),(19007,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-05-31','Spring Bank Holiday',NULL,NULL,'SPRING-BANK-HOLIDAY','/may-spring-bank-holiday/','/may-spring-bank-holiday/',0,'','National','Y',NULL,NULL,NULL,'2020-09-30',NULL,'Y',2739),(19003,'market','lse','uk','Europe','United Kingdom',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','National','E','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2020-09-30',NULL,'Y',2762),(18985,'market','euronext','france','Europe','France',NULL,'2021','2021-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2724),(18993,'market','dax','germany','Europe','Germany',NULL,'2021','2021-04-05','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2728),(18983,'market','asx','australia','Asia Pacific','Australia',NULL,'2021','2021-06-14','Queen\'s Birthday',NULL,NULL,'QUEENS-BIRTHDAY-QLD','/queens-birthday/','/queens-birthday/',0,'','RH','Y','queens-birthday.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2717),(18979,'market','asx','australia','Asia Pacific','Australia',NULL,'2021','2021-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2718),(18978,'market','asx','australia','Asia Pacific','Australia',NULL,'2021','2021-12-28','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','NH','Y','boxing-day.jpg',NULL,NULL,'2020-09-30',NULL,'Y',2719),(28452,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-08-01','Civic Holiday',NULL,'','CIVIC-HOLIDAY','/provincial-day/','/provincial-day/',0,'','NH','Y','provincial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2768),(28451,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-09-05','Labour Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','labour-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2769),(28450,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-12-26','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2771),(28449,'market','tsx','canada','Americas','Canada',NULL,'2022','2022-10-10','Thanksgiving',NULL,NULL,'THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2770),(28448,'market','nyse','us','Americas','United States',NULL,'2022','2022-12-26','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2760),(28447,'market','nyse','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2758),(28446,'market','nyse','us','Americas','United States',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','National','Y','memorial-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2756),(28445,'market','nyse','us','Americas','United States',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2757),(28444,'market','nyse','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2759),(28438,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-05-03','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2475),(28437,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-04-10','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2474),(28436,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2473),(28435,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-11-08','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2472),(28434,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-10-24','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','Y','diwali.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2469),(28433,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-10-05','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2467),(28431,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2476),(28429,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2466),(28427,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-08-31','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2464),(28426,'market','nse','india','Asia Pacific','India',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2458),(28424,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-12-26','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','Religious','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2751),(28423,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','Religious','Y','thanksgiving-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2750),(28422,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','National','Y','us-labor-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2749),(28421,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-07-05','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2748),(28420,'market','nasdaq','us','Americas','United States',NULL,'2022','2022-04-15','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','Religious','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2746),(28411,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-05-03','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2517),(28410,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2516),(28409,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-11-08','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'RH','M',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2513),(28407,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-10-24','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','NH','M','diwali.jpg',NULL,'','2021-06-02',NULL,'Y',2511),(28405,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2509),(28404,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-08-31','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','M',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2507),(28403,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-07-10','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','NH','M',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2506),(28402,'market','mcx','india','Asia Pacific','India',NULL,'2022','2022-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','M',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2504),(28395,'market','lse','uk','Europe','United Kingdom',NULL,'2022','2022-04-18','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','Religious','Y','easter.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2737),(28376,'market','dax','germany','Europe','Germany',NULL,'2022','2022-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2732),(28366,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-10-05','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'NH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2489),(28365,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','NH','Y','mahatma-gandhi.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2488),(28364,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-08-31','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2486),(28362,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2484),(28361,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2482),(28360,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2481),(28359,'market','bse','india','Asia Pacific','India',NULL,'2022','2022-04-14','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','RH','Y',NULL,NULL,NULL,'2021-06-02',NULL,'Y',2480),(28358,'market','asx','australia','Asia Pacific','Australia',NULL,'2022','2022-12-27','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','NH','Y','boxing-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2719),(28357,'market','asx','australia','Asia Pacific','Australia',NULL,'2022','2022-12-26','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2718),(28356,'market','asx','australia','Asia Pacific','Australia',NULL,'2022','2022-04-15','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2714),(28355,'market','asx','australia','Asia Pacific','Australia',NULL,'2022','2022-04-18','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','NH','Y','easter.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2715),(28352,'market','asx','australia','Asia Pacific','Australia',NULL,'2022','2022-01-26','Australia Day OBS',NULL,'','AUSTRALIA-DAY','/australia-day/','/australia-day/',0,'Y','ND','Y','australia-flag.gif',NULL,NULL,'2021-06-02',NULL,'Y',2713),(14510,'post','usps','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2020-01-06',NULL,'Y',6237),(19899,'post','usps','us','Americas','United States',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','PH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-05',NULL,'Y',6237),(24069,'post','usps','us','Americas','United States',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','PH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-20',NULL,'Y',6237),(9616,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-10-26','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RH',NULL,'diwali.jpg',NULL,NULL,'2018-09-23',NULL,'Y',493),(9617,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-11-12','Guru Nanak Birthday',NULL,NULL,'GURU-NANAK-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',494),(9618,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-11-24','Martyrdom of Guru Tegh Bahadur Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','/martyrdom-of-guru-tegh-bahadur-sahib/','/martyrdom-of-guru-tegh-bahadur-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',495),(9619,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-03-20','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',660),(9620,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-04-18','Birthday of Guru Angad Dev',NULL,NULL,'BIRTHDAY-OF-GURU-ANGAD-DEV','/birthday-of-guru-angad-dev/','/birthday-of-guru-angad-dev/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',661),(9621,'religious','sikh','sikh',NULL,NULL,'sikh','2019','2019-10-20','Birth of the Guru Granth',NULL,NULL,'BIRTH-OF-THE-GURU-GRANTH','/birth-of-the-guru-granth/','/birth-of-the-guru-granth/',0,'Y','RH',NULL,NULL,NULL,NULL,'2018-09-23',NULL,'Y',662),(13921,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-11-30','Guru Nanak Birthday',NULL,NULL,'GURU-NANAK-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',494),(13922,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-11-24','Martyrdom of Guru Tegh Bahadur Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','/martyrdom-of-guru-tegh-bahadur-sahib/','/martyrdom-of-guru-tegh-bahadur-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',495),(13923,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-03-10','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',660),(13924,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-04-18','Birthday of Guru Angad Dev',NULL,NULL,'BIRTHDAY-OF-GURU-ANGAD-DEV','/birthday-of-guru-angad-dev/','/birthday-of-guru-angad-dev/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',661),(13925,'religious','sikh','sikh',NULL,NULL,NULL,'2020','2020-10-20','Birth of the Guru Granth',NULL,NULL,'BIRTH-OF-THE-GURU-GRANTH','/birth-of-the-guru-granth/','/birth-of-the-guru-granth/',0,'Y','RH',NULL,NULL,NULL,NULL,'2019-12-02',NULL,'Y',662),(18814,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-11-19','Guru Nanak Birthday',NULL,NULL,'GURU-NANAK-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',494),(18815,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-11-24','Martyrdom of Guru Tegh Bahadur Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','/martyrdom-of-guru-tegh-bahadur-sahib/','/martyrdom-of-guru-tegh-bahadur-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',495),(18816,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-03-29','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',660),(18817,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-04-18','Birthday of Guru Angad Dev',NULL,NULL,'BIRTHDAY-OF-GURU-ANGAD-DEV','/birthday-of-guru-angad-dev/','/birthday-of-guru-angad-dev/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',661),(18818,'religious','sikh','sikh',NULL,NULL,NULL,'2021','2021-10-20','Birth of the Guru Granth',NULL,NULL,'BIRTH-OF-THE-GURU-GRANTH','/birth-of-the-guru-granth/','/birth-of-the-guru-granth/',0,'Y','RH',NULL,NULL,NULL,NULL,'2020-09-22',NULL,'Y',662),(24204,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-11-08','Guru Nanak Birthday',NULL,NULL,'GURU-NANAK-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',494),(24205,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-11-24','Martyrdom of Guru Tegh Bahadur Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','/martyrdom-of-guru-tegh-bahadur-sahib/','/martyrdom-of-guru-tegh-bahadur-sahib/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',495),(24206,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-03-18','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',660),(24207,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-04-18','Birthday of Guru Angad Dev',NULL,NULL,'BIRTHDAY-OF-GURU-ANGAD-DEV','/birthday-of-guru-angad-dev/','/birthday-of-guru-angad-dev/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',661),(24208,'religious','sikh','sikh',NULL,NULL,NULL,'2022','2022-10-20','Birth of the Guru Granth',NULL,NULL,'BIRTH-OF-THE-GURU-GRANTH','/birth-of-the-guru-granth/','/birth-of-the-guru-granth/',0,'Y','RH',NULL,NULL,NULL,NULL,'2021-04-20',NULL,'Y',662),(15283,'state','alaska','us','Americas','Alaska',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4552),(15284,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4541),(15285,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-12-01','Mrs. Rosa L. Parks Day (Commemoration Only)',NULL,'','ROSA-PARKS-DAY','/rosa-parks-day/','/rosa-parks-day/',0,'','OB','N','',NULL,NULL,'2020-03-15',NULL,'Y',4540),(15286,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-11-26','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4539),(15287,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4538),(15288,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-10-12','Columbus Day / Fraternal Day / American Indian Heritage Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4537),(15289,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-09-07','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4536),(15290,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-07-03','Fourth day of July (observed)',NULL,'','FOURTH-DAY-OF-JULY','/independence-day/','/independence-day/',0,'Y','OB',NULL,'us-flag.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4535),(15291,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-06-01','Jefferson Davis\' Birthday',NULL,'','JEFFERSON-DAVIS-BIRTHDAY',NULL,'/jefferson-birthday/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',4534),(15292,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-05-25','National Memorial Day',NULL,'','NATIONAL-MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4533),(15293,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-04-27','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',4532),(15294,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-02-25','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH',NULL,'',NULL,NULL,'2020-03-15',NULL,'Y',4531),(15295,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-02-17','George Washington/Thomas Jefferson\'s Birthday',NULL,'','GEORGE-WASHINGTON','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4530),(15296,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-01-20','Martin Luther King, Jr./Robert E. Lee Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4529),(15297,'state','alabama','us','Americas','Alabama',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-03-15',NULL,'Y',4528),(19611,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5024),(19612,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-01-18','Martin Luther King Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5025),(19613,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5026),(19614,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5027),(19615,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5028),(19616,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-11-25','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5029),(19617,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5030),(19618,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5031),(19619,'state','wisconsin','us','Americas','Wisconsin',NULL,'2021','2021-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5032),(19620,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5043),(19621,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5044),(19622,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5045),(19623,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5046),(19624,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5047),(19625,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5048),(19626,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5049),(19627,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5050),(19628,'state','wyoming','us','Americas','Wyoming',NULL,'2021','2021-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2020-10-03',NULL,'Y',5051),(24881,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-11-24','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5029),(24882,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-09-05','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5028),(24883,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5027),(24884,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-05-30','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5026),(24885,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-01-17','Martin Luther King Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5025),(24886,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5024),(24887,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5032),(24888,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-10-11','Columbus Day',NULL,NULL,'COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,NULL,'RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12362),(24889,'state','wisconsin','us','Americas','Wisconsin',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,NULL,'VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',12363),(24890,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH',NULL,'new-years-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5043),(24891,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-01-18','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5044),(24892,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-02-15','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH',NULL,'presidents-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5045),(24893,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-05-31','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH',NULL,'memorial-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5046),(24894,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH',NULL,'us-flag.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5047),(24895,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-09-06','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5048),(24896,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH',NULL,'veterans-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5049),(24897,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-11-25','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5050),(24898,'state','wyoming','us','Americas','Wyoming',NULL,'2022','2022-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH',NULL,'christmas.jpg',NULL,NULL,'2021-04-22',NULL,'Y',5051),(28491,'bank-org','citibank','us','Americas','United States',NULL,'2022','2022-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2863),(28487,'bank-org','chase-bank','us','Americas','United States',NULL,'2022','2022-02-21','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2021-06-02',NULL,'Y',2845),(13788,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2865),(13768,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2020','2020-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2897),(13746,'bank-org','chase-bank','us','Americas','United States',NULL,'2020','2020-01-21','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2019-11-27',NULL,'Y',2844),(11395,'bank-org','citibank','us','Americas','United States',NULL,'2019','2019-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-12-14',NULL,'Y',2856),(11304,'country','us','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',2,'X','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',327),(11305,'country','us','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-11-26',NULL,'Y',328),(11306,'country','us','us','Americas','United States',NULL,'2023','2023-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','OB',NULL,'valentines-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',329),(11307,'country','us','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',330),(11308,'country','us','us','Americas','United States',NULL,'2023','2023-04-07','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OB',NULL,'good-friday.jpg',NULL,NULL,'2018-11-26',NULL,'Y',331),(11309,'country','us','us','Americas','United States',NULL,'2023','2023-04-09','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','OB',NULL,'easter.jpg',NULL,NULL,'2018-11-26',NULL,'Y',332),(11310,'country','us','us','Americas','United States',NULL,'2023','2023-05-14','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','OB',NULL,'mothers-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',333),(11311,'country','us','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',334),(11312,'country','us','us','Americas','United States',NULL,'2023','2023-06-18','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','OB',NULL,'fathers-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',335),(11313,'country','us','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-11-26',NULL,'Y',336),(11314,'country','us','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',1,'X','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',337),(11315,'country','us','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',338),(11316,'country','us','us','Americas','United States',NULL,'2023','2023-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','NH',NULL,'halloween.jpg',NULL,NULL,'2018-11-26',NULL,'Y',339),(11317,'country','us','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',340),(11318,'country','us','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving Day',2,'X','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',341),(11319,'country','us','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-11-26',NULL,'Y',342),(11320,'country','us','us','Americas','United States',NULL,'2023','2023-06-02','National Donut Day',1,'X','NATIONAL-DONUT-DAY','/national-donut-day/','/national-donut-day/',0,'','OB','N','national-donut-day.jpg',NULL,'Celebrated every year on the first Friday of June','2018-11-26',NULL,'Y',2453),(11321,'country','us','us','Americas','United States',NULL,'2023','2023-01-02','New Year\'s Day Holiday',NULL,'','NEW-YEARS-DAY-HOLIDAY',NULL,'',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',327),(38245,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-01-07','Mahayana New Year',NULL,NULL,'MAHAYANA-NEW-YEAR','/mahayana-new-year/','/mahayana-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-11','223.178.212.241','Y',473),(38246,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-01-22','Chinese New Year',NULL,NULL,'CHINESE-NEW-YEAR','/chinese-new-year/','/chinese-new-year/',0,'','RE','Y','chinese-new-year.jpg',NULL,NULL,'2022-04-11','223.178.212.241','Y',658),(38247,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-02-15','Nirvana Day',NULL,NULL,'NIRVANA-DAY','/nirvana-day/','/nirvana-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-11','223.178.212.241','Y',475),(38248,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-03-06','Magha Puja Day',NULL,NULL,'MAGHA-PUJA-DAY','/magha-puja-day/','/magha-puja-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-11','223.178.212.241','Y',476),(38249,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-04-06','Theravada New Year',NULL,NULL,'THERAVADA-NEW-YEAR','/theravada-new-year/','/theravada-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-11','223.178.212.241','Y',477),(38250,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-05-19','Vesak - Buddha Day',NULL,NULL,'VESAK-BUDDHA-DAY','/vesak-day/','/vesak-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-11','223.178.212.241','Y',478),(38251,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-07-03','Asala - Dharma Day',NULL,NULL,'ASALA-DHARMA-DAY','/asala-dharma-day/','/asala-dharma-day/',0,'','RE','Y','asala-dharma-day.jpg',NULL,NULL,'2022-04-11','223.178.212.241','Y',479),(38252,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-08-13','Obon',NULL,NULL,'OBON','/obon/','/obon/',0,'','RE','Y','obon.jpg','flickr.com/14360805@N05',NULL,'2022-04-11','223.178.212.241','Y',659),(38253,'religious','buddhist','buddhist',NULL,NULL,NULL,'2023','2023-12-08','Bodhi Day',NULL,NULL,'BODHI-DAY','/bodhi-day/','/bodhi-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-11','223.178.212.241','Y',480),(33535,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-10-31','All Hallows Eve',NULL,NULL,'ALL-HALLOWS-EVE','/halloween/','/halloween/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',392),(33536,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-09-29','Michael and All Angels',NULL,NULL,'MICHAEL-AND-ALL-ANGELS','/michael-and-all-angels/','/michael-and-all-angels/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',391),(33537,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-09-14','Holy Cross Day',NULL,NULL,'HOLY-CROSS-DAY','/holy-cross-day/','/holy-cross-day/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',390),(33538,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-08-15','The Assumption of Mary',NULL,NULL,'THE-ASSUMPTION-OF-MARY','/the-assumption-of-mary/','/the-assumption-of-mary/',0,'Y','RE',NULL,'the-assumption-of-mary.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',389),(33539,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-08-01','Lammas',NULL,NULL,'LAMMAS','/lammas/','/lammas/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',388),(33540,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-07-25','St. James the Great Day',NULL,NULL,'ST-JAMES-THE-GREAT-DAY','/st-james-the-great-day-/','/st-james-the-great-day-/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',381),(33541,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-07-15','Saint Vladimir',NULL,NULL,'SAINT-VLADIMIR','/saint-vladimir/','/saint-vladimir/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',387),(33542,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-06-29','Saints Peter and Paul',NULL,NULL,'SAINTS-PETER-AND-PAUL','/saints-peter-and-paul/','/saints-peter-and-paul/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',386),(33543,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-06-08','Corpus Christi',NULL,NULL,'CORPUS-CHRISTI','/corpus-christi/','/corpus-christi/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',385),(33544,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-06-04','Trinity Sunday',NULL,NULL,'TRINITY-SUNDAY','/trinity-sunday/','/trinity-sunday/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',384),(33545,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-05-28','Pentecost',NULL,NULL,'PENTECOST','/pentecost/','/pentecost/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',383),(33546,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-05-18','Ascension of Jesus',NULL,NULL,'ASCENSION-OF-JESUS','/ascension-day/','/ascension-day/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',382),(33547,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-04-23','St. George\'s Day',NULL,NULL,'ST-GEORGES-DAY','/st-georges-day/','/st-georges-day/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',378),(33548,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-04-10','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','RE',NULL,'easter.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',380),(33549,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-04-09','Easter',NULL,NULL,'EASTER','/easter/','/easter/',0,'','RE',NULL,'easter.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',379),(33550,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-04-07','Good Friday ',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RE',NULL,'good-friday.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',377),(33551,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-04-06','Maundy (Holy) Thursday',NULL,NULL,'MAUNDY-HOLY-THURSDAY','/maundy-thursday/','/maundy-thursday/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',376),(33552,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-04-02','Palm Sunday',NULL,NULL,'PALM-SUNDAY','/palm-sunday/','/palm-sunday/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',375),(33553,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-03-19','St. Joseph\'s Day',NULL,NULL,'ST-JOSEPHS-DAY','/st-josephs-day-/','/st-josephs-day-/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',374),(33554,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-03-17','St. Patrick\'s Day',NULL,NULL,'ST-PATRICK\'S-DAY','/st-patricks-day/','/st-patricks-day/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',373),(33555,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-02-22','Ash Wednesday',NULL,NULL,'ASH-WEDNESDAY','/ash-wednesday/','/ash-wednesday/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',657),(33556,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-02-14','St. Valentine\'s Day',0,'','ST-VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',372),(33557,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-02-02','Candlemas',NULL,NULL,'CANDLEMAS','/candlemas/','/candlemas/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',371),(33558,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-01-08','The Baptism of Jesus',1,'X','BAPTISM-OF-THE-JESUS','/baptism-of-the-lord/','/baptism-of-the-lord/',0,'','RE','Y','baptism-of-the-lord.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',370),(33559,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-01-06','Epiphany',NULL,NULL,'EPIPHANY','/epiphany/','/epiphany/',0,'Y','RE','Y','epiphany.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',369),(33560,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-11-01','All Saints\' Day',NULL,NULL,'ALL-SAINTS-DAY','/all-saints-day/','/all-saints-day/',0,'Y','RE',NULL,'all-saints-day.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',393),(33561,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-11-02','All Souls\' Day',NULL,NULL,'ALL-SOULS-DAY','/all-souls-day/','/all-souls-day/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',395),(33562,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-11-23','Thanksgiving (USA)',NULL,NULL,'THANKSGIVING-USA','/thanksgiving-day/','/thanksgiving-day/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',396),(33563,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-11-26','Christ the King',NULL,NULL,'CHRIST-THE-KING','/christ-the-king/','/christ-the-king/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',656),(33564,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-11-30','St. Andrew\'s Day',NULL,NULL,'ST-ANDREWS-DAY','/st-andrews-day/','/st-andrews-day/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',398),(33565,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-12-03','Advent - first Sunday',NULL,NULL,'ADVENT-FIRST-SUNDAY','/advent-first-sunday/','/advent-first-sunday/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',397),(33566,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-12-06','St. Nicholas Day',NULL,NULL,'ST-NICHOLAS-DAY','/st-nicholas-day/','/st-nicholas-day/',0,'Y','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',399),(33567,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RE',NULL,'christmas.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',400),(33568,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','RE',NULL,'christmas.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',401),(33569,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-12-28','Holy Innocents',NULL,NULL,'HOLY-INNOCENTS','/holy-innocents/','/holy-innocents/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',402),(33570,'religious','christian','christian',NULL,NULL,NULL,'2023','2023-12-31','Watch Night',NULL,NULL,'WATCH-NIGHT','/watch-night/','/watch-night/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',403),(33571,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-12-22','Geeta Jayanti',NULL,NULL,'GEETA-JAYANTI','/geeta-jayanti/','/geeta-jayanti/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',687),(33572,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-12-16','Dhanu Sankranti',NULL,NULL,'DHANU-SANKRANTI','/dhanu-sankranti/','/dhanu-sankranti/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',688),(33573,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-11-27','Kartik Poornima',NULL,NULL,'KARTIK-POORNIMA','/kartik-purnima/','/kartik-purnima/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',435),(33574,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-11-19','Chhath Puja',NULL,NULL,'CHHATH-PUJA','/chhath-puja/','/chhath-puja/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',655),(33575,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-11-14','Bhai Dooj',NULL,NULL,'BHAI-DOOJ','/bhai-dooj/','/bhai-dooj/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',654),(33576,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-11-12','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RE','Y','diwali.jpg',NULL,NULL,'2022-03-15','223.178.212.150','Y',434),(33577,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-11-10','Dhan Teras',NULL,NULL,'DHAN-TERAS','/dhanteras/','/dhanteras/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',433),(33578,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-11-01','Karwa Chauth',NULL,NULL,'KARWA-CHAUTH','/karva-chauth/','/karva-chauth/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',432),(33579,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-10-28','Sharad Purnima',NULL,NULL,'SHARAD-PURNIMA','/sharad-purnima/','/sharad-purnima/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',431),(33580,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-10-24','Dusshera ',NULL,NULL,'DUSSHERA-','/dussehra/','/dussehra/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',430),(33581,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-10-23','Navaratri ends / Maha Navami',NULL,NULL,'NAVARATRI-ENDS-MAHA-NAVAMI','/navaratri/','/navaratri/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',429),(33582,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-10-15','Navaratri begins',NULL,NULL,'NAVARATRI-BEGINS','/navaratri/','/navaratri/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',427),(33583,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-10-13','Mahalaya Amavasya',NULL,NULL,'MAHALAYA-AMAVASYA','/mahalaya-amavasya/','/mahalaya-amavasya/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',425),(33584,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-09-19','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',423),(33585,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-09-17','Vishwakarma Puja',NULL,NULL,'VISHWAKARMA-PUJA','/vishwakarma-puja/','/vishwakarma-puja/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',686),(33586,'religious','hindu','hindu',NULL,'',NULL,'2023','2023-09-06','Krishna Janmashtami',0,'N','KRISHNA-JANMASHTAMI','/janmashtami/','/janmashtami/',0,'','RE','Y','',NULL,'','2022-03-15','223.178.212.150','Y',422),(33587,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-08-30','Raksha Bandhan',NULL,NULL,'RAKSHA-BANDHAN','/raksha-bandhan/','/raksha-bandhan/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',421),(33588,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-08-29','Onam',NULL,NULL,'ONAM','/onam/','/onam/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',424),(33589,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-08-25','Varalakshmi Vrat',NULL,NULL,'VARALAKSHMI-VRAT','/varalakshmi-vrat/','/varalakshmi-vrat/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',685),(33590,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-08-21','Nag Panchami',NULL,NULL,'NAG-PANCHAMI','/nag-panchami/','/nag-panchami/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',420),(33591,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-07-03','Guru Purnima',NULL,NULL,'GURU-PURNIMA','/guru-purnima/','/guru-purnima/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',419),(33592,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-06-20','Puri Rath Yatra',NULL,NULL,'PURI-RATH-YATRA','/rath-yatra/','/rath-yatra/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',418),(33593,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-05-19','Savitri Pooja',NULL,NULL,'SAVITRI-POOJA','/savitri-pooja/','/savitri-pooja/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',417),(33594,'religious','hindu','hindu',NULL,'',NULL,'2023','2023-04-22','Akshaya Tritiya',0,'N','AKSHAYA-TRITIYA','/akshaya-tritiya/','/akshaya-tritiya/',0,'','RE','R','',NULL,'','2022-03-15','223.178.212.150','Y',415),(33595,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-04-15','Bengali New Year / Bihu',NULL,NULL,'BENGALI-NEW-YEAR-BIHU','/bihu-bengali-new-year/','/bihu-bengali-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',413),(33596,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-04-14','Tamil New Year',NULL,NULL,'TAMIL-NEW-YEAR','/tamil-new-year/','/tamil-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',405),(33597,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-04-14','Vaisakhi / Baisakhi / Vishu ',NULL,NULL,'VAISAKHI-BAISAKHI-VISHU','/vishu/','/vishu/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',416),(33598,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-04-06','Hanuman Jayanti',NULL,NULL,'HANUMAN-JAYANTI','/hanuman-jayanti/','/hanuman-jayanti/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',414),(33599,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-03-30','Ramanavami',NULL,NULL,'RAMANAVAMI','/ramanavami/','/ramanavami/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',411),(33600,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-03-22','Hindi New Year',NULL,NULL,'HINDI-NEW-YEAR','/hindi-new-year/','/hindi-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',409),(33601,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-03-22','Ugadi / Gudi Padwa / Telugu New Year',NULL,NULL,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','/ugadi-telugu-new-year/','/ugadi-telugu-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',410),(33602,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-03-08','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',408),(33603,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-03-07','Holika Dahan',NULL,NULL,'HOLIKA-DAHAN','/holi/','/holi/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',684),(33604,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-02-18','Maha Shivaratri',NULL,NULL,'MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',407),(33605,'religious','hindu','hindu',NULL,'',NULL,'2023','2023-02-05','Thaipusam',0,'Y','THAIPUSAM','/thaipusam/','/thaipusam/',0,'','RE','R','',NULL,'','2022-03-15','223.178.212.150','Y',754),(33606,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-01-26','Vasant Panchami',0,NULL,'VASANT-PANCHAMI','/vasant-panchami/','/vasant-panchami/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',406),(33607,'religious','hindu','hindu',NULL,NULL,NULL,'2023','2023-01-15','Makarsankranti / Pongal',0,NULL,'MAKARSANKRANTI-PONGAL','/pongal/','/pongal/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',404),(38254,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-10-09','Milad un Nabi',NULL,NULL,'MILAD-UN-NABI','/milad-un-nabi/','/milad-un-nabi/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-12','223.178.212.241','Y',462),(38255,'religious','islam','islam',NULL,'',NULL,'2023','2023-06-28','Waqf al Arafa - Hajj',0,'Y','WAQF-AL-ARAFA-HAJJ','/waqf-al-arafa-hajj/','/waqf-al-arafa-hajj/',0,'','RE','','',NULL,'','2022-04-12','223.178.212.241','Y',469),(38256,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-07-28','Day of Ashura / Muharram',NULL,NULL,'DAY-OF-ASHURA-MUHARRAM','/muharram/','/muharram/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-12','223.178.212.241','Y',472),(38257,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-07-19','Hijra - Islamic New Year',NULL,NULL,'HIJRA-ISLAMIC-NEW-YEAR','/muharram/','/muharram/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-12','223.178.212.241','Y',471),(38258,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-06-29','Eid-al-Adha',NULL,NULL,'EID-AL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','RE',NULL,'eid-al-adha.jpg',NULL,NULL,'2022-04-12','223.178.212.241','Y',470),(38259,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-04-22','Eid-al-Fitr (End of Ramadan)',NULL,NULL,'EID-AL-FITR-END-OF-RAMADAN','/ramadan-end/','/ramadan-end/',0,'','RE',NULL,'hari-raya-puasa.jpg',NULL,NULL,'2022-04-12','223.178.212.241','Y',468),(38260,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-04-18','Laylat al Qadr',NULL,NULL,'LAYLAT-AL-KADR','/laylat-al-kadr/','/laylat-al-kadr/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-12','223.178.212.241','Y',467),(38261,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-03-23','Ramadan (start)',NULL,NULL,'RAMADAN-START','/ramadan-start/','/ramadan-start/',0,'','RE',NULL,'ramadan.jpg',NULL,NULL,'2022-04-12','223.178.212.241','Y',466),(38262,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-03-19','Lailat al Bara\'ah',NULL,NULL,'LAILAT-AL-BARAAH','/lailat-al-baraah/','/lailat-al-baraah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-12','223.178.212.241','Y',465),(38263,'religious','islam','islam',NULL,NULL,NULL,'2023','2023-02-18','Lailat al Miraj',NULL,NULL,'LAILAT-AL-MIRAJ','/lailat-al-miraj/','/lailat-al-miraj/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-12','223.178.212.241','Y',464),(33628,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-12-15','Hanukkah Ends',NULL,NULL,'HANUKKAH-ENDS','/hanukkah/','/hanukkah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',461),(33629,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-12-07','Hanukkah Starts',0,'Y','HANUKKAH-STARTS','/hanukkah/','/hanukkah/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',460),(33630,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-10-07','Shmini Atzeret',NULL,NULL,'SHEMINI-ATZERET','/shemini-atzeret/','/shemini-atzeret/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',458),(33631,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-10-07','Simchat Torah',NULL,NULL,'SIMHAT-TORAH','/simhat-torah/','/simhat-torah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',459),(33632,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-10-06','Sukkot Ends',NULL,NULL,'SUKKOT-ENDS','/sukkot/','/sukkot/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',456),(33633,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-09-29','Sukkot Starts',0,'Y','SUKKOT-STARTS','/sukkot/','/sukkot/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',455),(33634,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-09-25','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',454),(33635,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-09-18','Fast of Gedaliah',NULL,NULL,'FAST-OF-GEDALIAH','/fast-of-gedaliah/','/fast-of-gedaliah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',453),(33636,'religious','jewish','jewish','','',NULL,'2023','2023-09-17','Rosh HaShana Ends',NULL,NULL,'ROSH-HASHANAH-ENDS','/rosh-hashanah/','/rosh-hashanah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',452),(33637,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-09-15','Rosh HaShana Starts',0,'Y','ROSH-HASHANAH-STARTS','/rosh-hashanah/','/rosh-hashanah/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',451),(33638,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-07-26','Tish\'a B\'Av',0,'Y','TISHA-BAV','/tisha-bav/','/tisha-bav/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',450),(33639,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-05-26','Shavuot',NULL,NULL,'SHAVUOT','/shavuot/','/shavuot/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',448),(33640,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-05-25','Shavuot (1st day)',NULL,NULL,'SHAVUOT-1ST-DAY','/shavuot/','/shavuot/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',447),(33641,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-05-19','Yom Yerushalayim',NULL,NULL,'YOM-YERUSHALAYIM','/yom-yerushalayim/','/yom-yerushalayim/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',446),(33642,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-05-09','Lag BaOmer',NULL,NULL,'LAG-BAOMER','/lag-bomer/','/lag-bomer/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',445),(33643,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-05-05','Second Passover',0,'Y','SECOND-PASSOVER','/passover/','/passover/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',440),(33644,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-04-26','Yom HaAtzma\'ut',NULL,NULL,'YOM-HAATZMAUT','/yom-haatzmaut/','/yom-haatzmaut/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',444),(33645,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-04-25','Yom HaZikaron',NULL,NULL,'YOM-HAZIKARON','/yom-hazikaron/','/yom-hazikaron/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',443),(33646,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-04-18','Yom Hashoah',NULL,NULL,'YOM-HASHOAH','/yom-hashoah/','/yom-hashoah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',442),(33647,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-04-13','Passover - Final Day',0,'Y','PASSOVER-FINAL-DAY','/passover/','/passover/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',441),(33648,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-04-05','Passover - First Day',0,'Y','PASSOVER-FIRST-DAY','/passover/','/passover/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',439),(33649,'religious','jewish','jewish',NULL,'',NULL,'2023','2023-03-06','Purim',0,'Y','PURIM','/purim/','/purim/',0,'','RE','','',NULL,'','2022-03-15','223.178.212.150','Y',437),(33650,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-03-08','Shushan Purim',NULL,NULL,'SHUSHAN-PURIM','/purim/','/purim/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',438),(33651,'religious','jewish','jewish',NULL,NULL,NULL,'2023','2023-02-05','Tu Bishvat',NULL,NULL,'TU-BISHVAT','/tu-bishvat/','/tu-bishvat/',0,'','RE',NULL,NULL,NULL,NULL,'2022-03-15','223.178.212.150','Y',436),(33652,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-11-27','Guru Nanak Birthday',NULL,NULL,'GURU-NANAK-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',494),(33653,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-11-24','Martyrdom of Guru Tegh Bahadur Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','/martyrdom-of-guru-tegh-bahadur-sahib/','/martyrdom-of-guru-tegh-bahadur-sahib/',0,'Y','RE','N',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',495),(33654,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-11-09','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RE','Y','diwali.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',493),(33655,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-10-20','Birth of the Guru Granth',NULL,NULL,'BIRTH-OF-THE-GURU-GRANTH','/birth-of-the-guru-granth/','/birth-of-the-guru-granth/',0,'Y','RE','N',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',662),(33656,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-06-16','Martyrdom of Guru Arjan Dev Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','/martyrdom-of-guru-arjan-dev-sahib/','/martyrdom-of-guru-arjan-dev-sahib/',0,'Y','RE','N',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',486),(33657,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-04-18','Birthday of Guru Angad Dev',NULL,NULL,'BIRTHDAY-OF-GURU-ANGAD-DEV','/birthday-of-guru-angad-dev/','/birthday-of-guru-angad-dev/',0,'Y','RE','N',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',661),(33658,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-03-08','Hola Mohalla',NULL,NULL,'HOLA-MOHALLA','/hola-mohalla/','/hola-mohalla/',0,'','RE','N',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',484),(33659,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-04-14','Vaisakhi',NULL,NULL,'VAISAKHI','/vaisakhi/','/vaisakhi/',0,'','RE','N',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',485),(33660,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-03-07','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RE','Y',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',660),(33661,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-01-13','Maghi - Lohri',NULL,NULL,'MAGHI-LOHRI','/maghi-lohri/','/maghi-lohri/',0,'','RE','N',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',482),(33662,'religious','sikh','sikh',NULL,NULL,NULL,'2023','2023-01-05','Guru Gobind Singh Birthday',NULL,NULL,'GURU-GOBIND-SINGH-BIRTHDAY','/guru-gobind-singh-birthday/','/guru-gobind-singh-birthday/',0,'','RE','R',NULL,NULL,NULL,'2022-03-15','27.255.182.201','Y',481),(37513,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4541),(37514,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4539),(37515,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4538),(37516,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-10-09','Columbus Day / Fraternal Day / American Indian Heritage Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4537),(37517,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4536),(37518,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-07-04','Fourth day of July (observed)',NULL,'','FOURTH-DAY-OF-JULY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4535),(37519,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-06-05','Jefferson Davis\' Birthday',NULL,'','JEFFERSON-DAVIS-BIRTHDAY',NULL,'/jefferson-birthday/',0,'','RH','Y','',NULL,NULL,'2022-03-22','49.156.98.118','Y',4534),(37520,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-05-29','National Memorial Day',NULL,'','NATIONAL-MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4533),(37521,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-04-24','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','49.156.98.118','Y',4532),(37522,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-02-21','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH','Y','',NULL,NULL,'2022-03-22','49.156.98.118','Y',4531),(37523,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-02-20','George Washington/Thomas Jefferson\'s Birthday',NULL,'','GEORGE-WASHINGTON','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4530),(37524,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-02-04','Mrs. Rosa L. Parks Day (Commemoration Only)',NULL,'','ROSA-PARKS-DAY','/rosa-parks-day/','/rosa-parks-day/',0,'','OB','N','',NULL,NULL,'2022-03-22','49.156.98.118','Y',4540),(37525,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-01-16','Martin Luther King, Jr./Robert E. Lee Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4529),(37526,'state','alabama','us','Americas','Alabama',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4528),(37527,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4552),(37528,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4551),(37529,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4550),(37530,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4548),(37531,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-10-18','Alaska Day',NULL,'','ALASKA-DAY','/alaska-day/','/alaska-day/',0,'y','RH','Y','',NULL,NULL,'2022-03-22','49.156.98.118','Y',4549),(37532,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-07-04','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4547),(37533,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-03-27','Seward\'s Day',NULL,'','SEWARDS-DAY','/sewards-day/','/sewards-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','49.156.98.118','Y',4545),(37534,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4546),(37535,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4544),(37536,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-01-16','MLK Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4543),(37537,'state','alaska','us','Americas','Alaska',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4542),(37538,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4562),(37539,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4561),(37540,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4560),(37541,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4559),(37542,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4558),(37543,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4557),(37544,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4556),(37545,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-02-20','Lincoln/Washington Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4555),(37546,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-01-16','Martin Luther King, Jr./Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4554),(37547,'state','arizona','us','Americas','Arizona',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4553),(37548,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-12-26','Christmas Day Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','OB','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13880),(37549,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6214),(37550,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6215),(37551,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6213),(37552,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6212),(37553,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13881),(37554,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6211),(37555,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6210),(37556,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6208),(37557,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-02-20','George Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6207),(37558,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6206),(37559,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13882),(37560,'state','arkansas','us','Americas','Arkansas',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6205),(37561,'state','california','us','Americas','California',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6156),(37562,'state','california','us','Americas','California',NULL,'2023','2023-11-24','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','OB','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6155),(37563,'state','california','us','Americas','California',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6154),(37564,'state','california','us','Americas','California',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6153),(37565,'state','california','us','Americas','California',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13884),(37566,'state','california','us','Americas','California',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6152),(37567,'state','california','us','Americas','California',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6151),(37568,'state','california','us','Americas','California',NULL,'2023','2023-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','RH','Y','',NULL,NULL,'2022-03-22','49.156.98.118','Y',6150),(37569,'state','california','us','Americas','California',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6149),(37570,'state','california','us','Americas','California',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6148),(37571,'state','california','us','Americas','California',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13883),(37572,'state','california','us','Americas','California',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6147),(37573,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6204),(37574,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13885),(37575,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6201),(37576,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6203),(37577,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-10-02','Cabrini Day',NULL,'','CABRINI-DAY',NULL,'/cabrini-day/',0,'','RH','Y','',NULL,'The first Monday of October','2022-03-22','49.156.98.118','Y',6200),(37578,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6199),(37579,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6198),(37580,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6196),(37581,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6195),(37582,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13886),(37583,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6193),(37584,'state','colorado','us','Americas','Colorado',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6194),(37585,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4690),(37586,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4689),(37587,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4688),(37588,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13888),(37589,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4687),(37590,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4686),(37591,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4685),(37592,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4684),(37593,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4683),(37594,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-02-20','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4682),(37595,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-03-22','49.156.98.118','Y',4681),(37596,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-01-16','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4680),(37597,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13887),(37598,'state','connecticut','us','Americas','Connecticut',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4679),(37599,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4702),(37600,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-11-24','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4701),(37601,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4700),(37602,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4699),(37603,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6546),(37604,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4696),(37605,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13889),(37606,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4694),(37607,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4693),(37608,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-01-16','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4692),(37609,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13890),(37610,'state','delaware','us','Americas','Delaware',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',4691),(37611,'state','florida','us','Americas','Florida',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6165),(37612,'state','florida','us','Americas','Florida',NULL,'2023','2023-11-24','Fridayay After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6164),(37613,'state','florida','us','Americas','Florida',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6163),(37614,'state','florida','us','Americas','Florida',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6162),(37615,'state','florida','us','Americas','Florida',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13891),(37616,'state','florida','us','Americas','Florida',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6161),(37617,'state','florida','us','Americas','Florida',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6547),(37618,'state','florida','us','Americas','Florida',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6159),(37619,'state','florida','us','Americas','Florida',NULL,'2023','2023-01-16','Birthday of Dr. Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6158),(37620,'state','florida','us','Americas','Florida',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',13892),(37621,'state','florida','us','Americas','Florida',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','49.156.98.118','Y',6157),(37656,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-12-26','Washington Birthday Holiday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','OB','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4705),(37657,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4714),(37658,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4712),(37659,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4711),(37660,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13894),(37661,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4710),(37662,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6548),(37663,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4709),(37664,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4707),(37665,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-04-24','State Holiday',NULL,'','STATE-HOLIDAY','/state-holiday-georgia/','/state-holiday-georgia/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4713),(37666,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-01-16','Martin Luther King Jr\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4704),(37667,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13893),(37668,'state','georgia','us','Americas','Georgia',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4703),(37669,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,'The twenty-fifth day in December','2022-03-22','27.255.165.75','Y',4728),(37670,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'The fourth Thursday in November','2022-03-22','27.255.165.75','Y',4727),(37671,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,'The eleventh day in November','2022-03-22','27.255.165.75','Y',4726),(37672,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,'The eleventh day in November','2022-03-22','27.255.165.75','Y',13896),(37673,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,'The first Monday in September','2022-03-22','27.255.165.75','Y',4724),(37674,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-08-18','Statehood Day',NULL,'','STATEHOOD-DAY','/statehood-day-hawaii/','/statehood-day-hawaii/',0,'Y','RH','Y','',NULL,'The third Friday in August','2022-03-22','27.255.165.75','Y',4723),(37675,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,'The fourth day in July','2022-03-22','27.255.165.75','Y',6549),(37676,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-06-12','King Kamehameha I Day Holiday',NULL,NULL,'KING-KAMEHAMEHA-DAY-HOLIDAY',NULL,'',0,'Y','OB','Y',NULL,NULL,'The eleventh day in June','2022-03-22','27.255.165.75','Y',13897),(37677,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-06-11','King Kamehameha I Day',NULL,'','KING-KAMEHAMEHA-DAY','/kamehameha-day/','/kamehameha-day/',0,'Y','RH','Y','',NULL,'The eleventh day in June','2022-03-22','27.255.165.75','Y',4721),(37678,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,'The Friday preceding Easter Sunday','2022-03-22','27.255.165.75','Y',4719),(37679,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,'The last Monday in May','2022-03-22','27.255.165.75','Y',4720),(37680,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-03-27','Prince Kuhio Day',NULL,'','KUHIO-KALANIANAOLE-DAY','/kuhio-day/','/kuhio-day/',0,'Y','RH','Y','',NULL,'The twenty-sixth day in March','2022-03-22','27.255.165.75','Y',4718),(37681,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-02-20','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,'The third Monday in February','2022-03-22','27.255.165.75','Y',4717),(37682,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-01-16','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,'The third Monday in January','2022-03-22','27.255.165.75','Y',4716),(37683,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,'The first day in January','2022-03-22','27.255.165.75','Y',13895),(37684,'state','hawaii','us','Americas','Hawaii',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,'The first day in January','2022-03-22','27.255.165.75','Y',4715),(37685,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4738),(37686,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4737),(37687,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4736),(37688,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13899),(37689,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4735),(37690,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4732),(37691,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6550),(37692,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4734),(37693,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4731),(37694,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-01-16','M L King Jr./Idaho Human Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4730),(37695,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13898),(37696,'state','idaho','us','Americas','Idaho',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,'','2022-03-22','27.255.165.75','Y',4729),(37697,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4751),(37698,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-11-24','Thanksgiving Holiday',NULL,'','THANKSGIVING-DAY-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','OB','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4750),(37699,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4749),(37700,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4748),(37701,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13901),(37702,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4745),(37703,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4746),(37704,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4744),(37705,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4743),(37706,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-02-20','Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4742),(37707,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-DAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4741),(37708,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-01-16','Martin Luther King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4740),(37709,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13900),(37710,'state','illinois','us','Americas','Illinois',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4739),(37711,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-12-26','Washington\'s Birthday',0,'N','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','RH','Y','',NULL,'','2022-03-22','27.255.165.75','Y',4765),(37712,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4766),(37713,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-11-24','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4764),(37714,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4763),(37715,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4762),(37716,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4760),(37717,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13903),(37718,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4759),(37719,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4758),(37720,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4756),(37721,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4754),(37722,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4753),(37723,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13902),(37724,'state','indiana','us','Americas','Indiana',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4752),(37725,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4775),(37726,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4773),(37727,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4772),(37728,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13905),(37729,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4771),(37730,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6552),(37731,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4769),(37732,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4768),(37733,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-01-02','New Year  Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13904),(37734,'state','iowa','us','Americas','Iowa',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4767),(37735,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4785),(37736,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4784),(37737,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-11-24','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4783),(37738,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4782),(37739,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4781),(37740,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13907),(37741,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4780),(37742,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4778),(37743,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6553),(37744,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4777),(37745,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13906),(37746,'state','kansas','us','Americas','Kansas',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4776),(37747,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6146),(37748,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6144),(37749,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6145),(37750,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-11-24','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6143),(37751,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6142),(37752,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6141),(37753,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13909),(37754,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6139),(37755,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6138),(37756,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6137),(37757,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6136),(37758,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-01-16','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6135),(37759,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13908),(37760,'state','kentucky','us','Americas','Kentucky',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6134),(37761,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4795),(37762,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4794),(37763,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4793),(37764,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13911),(37765,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4792),(37766,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4791),(37767,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4790),(37768,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-02-21','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH','Y','',NULL,'Tuesday before Ash Wednesday','2022-03-22','27.255.165.75','Y',4788),(37769,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4789),(37770,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-01-16','Birthday of Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4787),(37771,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13910),(37772,'state','louisiana','us','Americas','Louisiana',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4786),(37773,'state','maine','us','Americas','Maine',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4807),(37774,'state','maine','us','Americas','Maine',NULL,'2023','2023-11-24','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4806),(37775,'state','maine','us','Americas','Maine',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4805),(37776,'state','maine','us','Americas','Maine',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4804),(37777,'state','maine','us','Americas','Maine',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13913),(37778,'state','maine','us','Americas','Maine',NULL,'2023','2023-10-09','Indigenous Peoples Day',NULL,'','INDIGENOUS-PEOPLES-DAY','/indigenous-peoples-day/','/indigenous-peoples-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4803),(37779,'state','maine','us','Americas','Maine',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4802),(37780,'state','maine','us','Americas','Maine',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6556),(37781,'state','maine','us','Americas','Maine',NULL,'2023','2023-04-17','Patriot\'s Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4799),(37782,'state','maine','us','Americas','Maine',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4800),(37783,'state','maine','us','Americas','Maine',NULL,'2023','2023-02-20','Washington\'s Birthday',NULL,'','WASHINGTONS-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4798),(37784,'state','maine','us','Americas','Maine',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4797),(37785,'state','maine','us','Americas','Maine',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13912),(37786,'state','maine','us','Americas','Maine',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4796),(37787,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4819),(37788,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4817),(37789,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4816),(37790,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4814),(37791,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13915),(37792,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4813),(37793,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4812),(37794,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4811),(37795,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-02-20','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4810),(37796,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-01-16','Dr. Martin Luther King, Jr., Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4809),(37797,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13914),(37798,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4808),(37799,'state','maryland','us','Americas','Maryland',NULL,'2023','2023-11-24','American Indian Heritage Day',NULL,'','AMERICAN-INDIAN-HERITAGE-DAY','/american-indian-heritage-day/','/american-indian-heritage-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4818),(37800,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4830),(37801,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4829),(37802,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,'Restrictions until 1pm','2022-03-22','27.255.165.75','Y',4828),(37803,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,'Restrictions until 12 noon','2022-03-22','27.255.165.75','Y',4827),(37804,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4826),(37805,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4825),(37806,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4824),(37807,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-04-17','Patriots\' Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH','Y','',NULL,'Third Monday in April','2022-03-22','27.255.165.75','Y',4823),(37808,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-02-20','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4822),(37809,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4821),(37810,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13916),(37811,'state','massachusetts','us','Americas','Massachusetts',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4820),(37812,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4843),(37813,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4842),(37814,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4841),(37815,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-11-24','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4840),(37816,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4839),(37817,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4838),(37818,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13918),(37819,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4835),(37820,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4836),(37821,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4834),(37822,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4833),(37823,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4832),(37824,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13917),(37825,'state','michigan','us','Americas','Michigan',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4831),(37826,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4855),(37827,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-11-24','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4854),(37828,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4853),(37829,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4852),(37830,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13920),(37831,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4851),(37832,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4850),(37833,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4849),(37834,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4848),(37835,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4846),(37836,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4845),(37837,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13919),(37838,'state','minnesota','us','Americas','Minnesota',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4844),(37839,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6191),(37840,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6192),(37841,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6190),(37842,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13922),(37843,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6189),(37844,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6188),(37845,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6186),(37846,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-04-24','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH','Y','',NULL,'The last Monday of April','2022-03-22','27.255.165.75','Y',6185),(37847,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-02-20','Washington\'s Birthday',NULL,'','WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6184),(37848,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-01-16','Robert E. Lee\'s Birthday',NULL,'','ROBERT-E-LEES-BIRTHDAY',NULL,'/robert-e-lee-birthday/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',6561),(37849,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6183),(37850,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13921),(37851,'state','mississippi','us','Americas','Mississippi',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6182),(37852,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4867),(37853,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4866),(37854,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4865),(37855,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13924),(37856,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4864),(37857,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4863),(37858,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4861),(37859,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4862),(37860,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-05-08','Truman Day',NULL,'','TRUMAN-DAY','/truman-day/','/truman-day/',0,'Y','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4860),(37861,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-02-20','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4859),(37862,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-02-12','Lincoln Day',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4858),(37863,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4857),(37864,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13923),(37865,'state','missouri','us','Americas','Missouri',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4856),(37866,'state','montana','us','Americas','Montana',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4879),(37867,'state','montana','us','Americas','Montana',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4878),(37868,'state','montana','us','Americas','Montana',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4877),(37869,'state','montana','us','Americas','Montana',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13926),(37870,'state','montana','us','Americas','Montana',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4875),(37871,'state','montana','us','Americas','Montana',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4874),(37872,'state','montana','us','Americas','Montana',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4873),(37873,'state','montana','us','Americas','Montana',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4872),(37874,'state','montana','us','Americas','Montana',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4871),(37875,'state','montana','us','Americas','Montana',NULL,'2023','2023-01-16','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4870),(37876,'state','montana','us','Americas','Montana',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13925),(37877,'state','montana','us','Americas','Montana',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4869),(37878,'state','montana','us','Americas','Montana',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4879),(37879,'state','montana','us','Americas','Montana',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4878),(37880,'state','montana','us','Americas','Montana',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4877),(37881,'state','montana','us','Americas','Montana',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13926),(37882,'state','montana','us','Americas','Montana',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4875),(37883,'state','montana','us','Americas','Montana',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4874),(37884,'state','montana','us','Americas','Montana',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4873),(37885,'state','montana','us','Americas','Montana',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4872),(37886,'state','montana','us','Americas','Montana',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4871),(37887,'state','montana','us','Americas','Montana',NULL,'2023','2023-01-16','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4870),(37888,'state','montana','us','Americas','Montana',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13925),(37889,'state','montana','us','Americas','Montana',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4869),(37890,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4891),(37891,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-11-24','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4890),(37892,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4889),(37893,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4888),(37894,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4887),(37895,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4886),(37896,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4885),(37897,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-04-28','Arbor Day',NULL,'','ARBOR-DAY','/arbor-day/','/arbor-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4883),(37898,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4884),(37899,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4882),(37900,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4881),(37901,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13927),(37902,'state','nebraska','us','Americas','Nebraska',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4880),(37903,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4902),(37904,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-11-24','Family Day',NULL,'','FAMILY-DAY','/family-day/','/family-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'Friday following the Fourth Thursday in November.','2022-03-22','27.255.165.75','Y',4901),(37905,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4900),(37906,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4899),(37907,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-11-10','Veteran Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13929),(37908,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-10-27','Nevada Day',NULL,'','NEVADA-DAY','/nevada-day/','/nevada-day/',0,'','RH','Y','',NULL,'Last Friday in October','2022-03-22','27.255.165.75','Y',4898),(37909,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4896),(37910,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4897),(37911,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4895),(37912,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4894),(37913,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4893),(37914,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13928),(37915,'state','nevada','us','Americas','Nevada',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4892),(37916,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4912),(37917,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-11-24','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4911),(37918,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4910),(37919,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4909),(37920,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4908),(37921,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4907),(37922,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4906),(37923,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4905),(37924,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-01-16','Martin Luther King Jr./ Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4904),(37925,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13930),(37926,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4903),(37927,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6180),(37928,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6176),(37929,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6177),(37930,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13931),(37931,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6174),(37932,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6173),(37933,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6568),(37934,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6171),(37935,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6170),(37936,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-02-20','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6169),(37937,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-01-16','Martin Luther King, Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6167),(37938,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13932),(37939,'state','new-jersey','us','Americas','New Jersey',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6166),(37940,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6225),(37941,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6223),(37942,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-11-11','Veterans\' Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6222),(37943,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-11-10','Veterans\' Holiday',NULL,NULL,'VETERANS-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13934),(37944,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-10-09','Indigenous Peoples\' Day',NULL,'','INDIGENOUS-PEOPLE-DAY',NULL,'/indigenous-peoples-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6221),(37945,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6220),(37946,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6218),(37947,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6219),(37948,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6570),(37949,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6217),(37950,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13933),(37951,'state','new-mexico','us','Americas','New Mexico',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6216),(37952,'state','new-york','us','Americas','New York',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4924),(37953,'state','new-york','us','Americas','New York',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4922),(37954,'state','new-york','us','Americas','New York',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4923),(37955,'state','new-york','us','Americas','New York',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13936),(37956,'state','new-york','us','Americas','New York',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4920),(37957,'state','new-york','us','Americas','New York',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4919),(37958,'state','new-york','us','Americas','New York',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4918),(37959,'state','new-york','us','Americas','New York',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4917),(37960,'state','new-york','us','Americas','New York',NULL,'2023','2023-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4915),(37961,'state','new-york','us','Americas','New York',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4914),(37962,'state','new-york','us','Americas','New York',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13935),(37963,'state','new-york','us','Americas','New York',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4913),(37964,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-12-27','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,NULL,'OB','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12346),(37965,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-12-26','Christmas Holiday',NULL,'','CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'','OB','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6572),(37966,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6112),(37967,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6111),(37968,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-11-24','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6110),(37969,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6109),(37970,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6108),(37971,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6107),(37972,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6104),(37973,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6105),(37974,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6571),(37975,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-01-16','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6103),(37976,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13937),(37977,'state','north-carolina','us','Americas','North Carolina',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6102),(37978,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4946),(37979,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,'Office will close at noon','2022-03-22','27.255.165.75','Y',4945),(37980,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4944),(37981,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4943),(37982,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13939),(37983,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4942),(37984,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4941),(37985,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4940),(37986,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4939),(37987,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-01-16','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4937),(37988,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4938),(37989,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13938),(37990,'state','north-dakota','us','Americas','North Dakota',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4936),(37991,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13940),(37992,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6113),(37993,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6114),(37994,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6115),(37995,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6116),(37996,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6574),(37997,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6118),(37998,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6119),(37999,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13941),(38000,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6120),(38001,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6121),(38002,'state','ohio','us','Americas','Ohio',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6122),(38003,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4947),(38004,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13942),(38005,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-01-16','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4948),(38006,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4949),(38007,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4950),(38008,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4951),(38009,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4952),(38010,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4953),(38011,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4954),(38012,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-11-24','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4955),(38013,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-12-23','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4956),(38014,'state','oklahoma','us','Americas','Oklahoma',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4957),(38015,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4958),(38016,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13943),(38017,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-01-16','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4959),(38018,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6575),(38019,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4960),(38020,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4961),(38021,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4962),(38022,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13944),(38023,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4963),(38024,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4964),(38025,'state','oregon','us','Americas','Oregon',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4966),(38026,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6123),(38027,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13945),(38028,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-01-16','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6124),(38029,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6125),(38030,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6126),(38031,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6127),(38032,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6128),(38033,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6129),(38034,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13946),(38035,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6130),(38036,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6131),(38037,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-11-24','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6132),(38038,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6133),(38039,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-12-26','Christmas Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12352),(38040,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4967),(38041,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13947),(38042,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-01-16','Dr.Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4968),(38043,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4969),(38044,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4970),(38045,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-08-14','Victory Day',NULL,'','VICTORY-DAY','/victory-day/','/victory-day/',0,'','RH','Y','',NULL,'Second Monday in August','2022-03-22','27.255.165.75','Y',4971),(38046,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4972),(38047,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4973),(38048,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13948),(38049,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4975),(38050,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4976),(38051,'state','rhode-island','us','Americas','Rhode Island',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4977),(38052,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6226),(38053,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13949),(38054,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-01-16','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6227),(38055,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-02-20','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6578),(38056,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-05-10','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'Y','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',6229),(38057,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-05-29','National Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6579),(38058,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6231),(38059,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13950),(38060,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6232),(38061,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6233),(38062,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-11-24','Day after Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6234),(38063,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6236),(38064,'state','south-carolina','us','Americas','South Carolina',NULL,'2023','2023-12-26','Day after Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6235),(38065,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4978),(38066,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13951),(38067,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4979),(38068,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4980),(38069,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4981),(38070,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4982),(38071,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4983),(38072,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-10-09','Native Americans Day',NULL,'','NATIVE-AMERICANS-DAY','/native-americans-day/','/native-americans-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',4984),(38073,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13952),(38074,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4985),(38075,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4986),(38076,'state','south-dakota','us','Americas','South Dakota',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4987),(38077,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',4999),(38078,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-01-02','New Year\'s Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13953),(38079,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-01-16','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5000),(38080,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5001),(38081,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5002),(38082,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5003),(38083,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12354),(38084,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5005),(38085,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13954),(38086,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5006),(38087,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5007),(38088,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5009),(38089,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5010),(38090,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5011),(38091,'state','tennessee','us','Americas','Tennessee',NULL,'2023','2023-11-24','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5008),(38092,'state','texas','us','Americas','Texas',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5091),(38093,'state','texas','us','Americas','Texas',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13955),(38094,'state','texas','us','Americas','Texas',NULL,'2023','2023-01-16','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5092),(38095,'state','texas','us','Americas','Texas',NULL,'2023','2023-01-19','Confederate Heroes\' Day',NULL,'','CONFEDERATE-HEROES-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'Y','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',6581),(38096,'state','texas','us','Americas','Texas',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5093),(38097,'state','texas','us','Americas','Texas',NULL,'2023','2023-03-02','Texas Independence Day',NULL,'','TEXAS-INDEPENDENCE-DAY',NULL,'/texas-independence-day/',0,'Y','RH','Y','',NULL,'Skeleton Crew Required','2022-03-22','27.255.165.75','Y',6584),(38098,'state','texas','us','Americas','Texas',NULL,'2023','2023-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','OH','Y','',NULL,'Optional Holiday','2022-03-22','27.255.165.75','Y',6582),(38099,'state','texas','us','Americas','Texas',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OH','Y','good-friday.jpg',NULL,'Optional Holiday','2022-03-22','27.255.165.75','Y',6583),(38100,'state','texas','us','Americas','Texas',NULL,'2023','2023-04-21','San Jacinto Day',NULL,'','SAN-JACINTO-DAY',NULL,'/san-jacinto-day/',0,'','RH','Y','',NULL,'Skeleton Crew Required','2022-03-22','27.255.165.75','Y',6585),(38101,'state','texas','us','Americas','Texas',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5094),(38102,'state','texas','us','Americas','Texas',NULL,'2023','2023-06-19','Emancipation Day',NULL,'','EMANCIPATION-DAY','/emancipation-day/','/emancipation-day/',0,'','RH','Y','',NULL,'Skeleton Crew Required','2022-03-22','27.255.165.75','Y',6586),(38103,'state','texas','us','Americas','Texas',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5095),(38104,'state','texas','us','Americas','Texas',NULL,'2023','2023-08-27','LBJ\'s Birthday',NULL,'','LBJS-BIRTHDAY',NULL,'/lyndon-b-johnson-day/',0,'','RH','Y','',NULL,'Skeleton Crew Required','2022-03-22','27.255.165.75','Y',6587),(38105,'state','texas','us','Americas','Texas',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5096),(38106,'state','texas','us','Americas','Texas',NULL,'2023','2023-09-16','Rosh Hashanah',NULL,NULL,'ROSH-HASHANAH',NULL,'',0,'','OH','Y',NULL,NULL,'Optional Holiday','2022-03-22','27.255.165.75','Y',6589),(38107,'state','texas','us','Americas','Texas',NULL,'2023','2023-09-25','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','OH','Y',NULL,NULL,'Optional Holiday','2022-03-22','27.255.165.75','Y',6588),(38108,'state','texas','us','Americas','Texas',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13956),(38109,'state','texas','us','Americas','Texas',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5097),(38110,'state','texas','us','Americas','Texas',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5098),(38111,'state','texas','us','Americas','Texas',NULL,'2023','2023-11-24','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5099),(38112,'state','texas','us','Americas','Texas',NULL,'2023','2023-12-24','Christmas Eve Day',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6100),(38113,'state','texas','us','Americas','Texas',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6101),(38114,'state','texas','us','Americas','Texas',NULL,'2023','2023-12-26','Day After Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6590),(38115,'state','utah','us','Americas','Utah',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5012),(38116,'state','utah','us','Americas','Utah',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13957),(38117,'state','utah','us','Americas','Utah',NULL,'2023','2023-01-16','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5013),(38118,'state','utah','us','Americas','Utah',NULL,'2023','2023-02-20','Washington & Lincoln Day',NULL,'','WASHINGTON-LINCOLN-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5014),(38119,'state','utah','us','Americas','Utah',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5015),(38120,'state','utah','us','Americas','Utah',NULL,'2023','2023-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12355),(38121,'state','utah','us','Americas','Utah',NULL,'2023','2023-07-24','Pioneer Day',NULL,'','PIONEER-DAY','/pioneer-day/','/pioneer-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',5017),(38122,'state','utah','us','Americas','Utah',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5018),(38123,'state','utah','us','Americas','Utah',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6591),(38124,'state','utah','us','Americas','Utah',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13958),(38125,'state','utah','us','Americas','Utah',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5019),(38126,'state','utah','us','Americas','Utah',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5020),(38127,'state','utah','us','Americas','Utah',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5023),(38128,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5080),(38129,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13959),(38130,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5081),(38131,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5082),(38132,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-03-07','Town Meeting Day',NULL,'','TOWN-MEETING-DAY','/town-meeting-day/','/town-meeting-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',5083),(38133,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5084),(38134,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12357),(38135,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-08-16','Bennington Battle Day',NULL,'','BENNINGTON-BATTLE-DAY','/bennington-battle-day/','/bennington-battle-day/',0,'Y','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',5086),(38136,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5087),(38137,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13960),(38138,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5088),(38139,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5089),(38140,'state','vermont','us','Americas','Vermont',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5090),(38141,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5068),(38142,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,NULL,'OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13961),(38143,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-01-13','Lee-Jackson Day',NULL,'','LEE-JACKSON-DAY','/lee-jackson-day/','/lee-jackson-day/',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',5069),(38144,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-01-16','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5070),(38145,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-02-20','George Washington Day',NULL,'','GEORGE-WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5071),(38146,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5072),(38147,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12359),(38148,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5074),(38149,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-10-09','Columbus Day & Yorktown Victory Day',NULL,'','COLUMBUS-DAY-YORKTOWN','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5075),(38150,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13962),(38151,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5076),(38152,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-11-22','Thanksgiving Eve',NULL,'','THANKSGIVING-EVE','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','H','thanksgiving-day.jpg',NULL,'4 hours additional holiday time','2022-03-22','27.255.165.75','Y',5077),(38153,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6592),(38154,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-11-24','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5078),(38155,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,'8 hours additional holiday time','2022-03-22','27.255.165.75','Y',5079),(38156,'state','virginia','us','Americas','Virginia',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',6593),(38157,'state','washington','us','Americas','Washington',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5033),(38158,'state','washington','us','Americas','Washington',NULL,'2023','2023-01-02','New Year\'s Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13963),(38159,'state','washington','us','Americas','Washington',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5034),(38160,'state','washington','us','Americas','Washington',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5035),(38161,'state','washington','us','Americas','Washington',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5036),(38162,'state','washington','us','Americas','Washington',NULL,'2023','2023-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12360),(38163,'state','washington','us','Americas','Washington',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5038),(38164,'state','washington','us','Americas','Washington',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13964),(38165,'state','washington','us','Americas','Washington',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5039),(38166,'state','washington','us','Americas','Washington',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5040),(38167,'state','washington','us','Americas','Washington',NULL,'2023','2023-11-24','Native American Heritage Day',NULL,'','AMERICAN-HERITAGE-DAY',NULL,'',0,'','RH','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',5041),(38168,'state','washington','us','Americas','Washington',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5042),(38169,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5052),(38170,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13965),(38171,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5053),(38172,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5054),(38173,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5056),(38174,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-06-20','West Virginia Day (observed)',NULL,'','WEST-VIRGINIA-DAY',NULL,'/west-virginia-day/',0,'','OB','Y','',NULL,NULL,'2022-03-22','27.255.165.75','Y',5057),(38175,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12361),(38176,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5059),(38177,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5060),(38178,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,NULL,'OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13966),(38179,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5062),(38180,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5063),(38181,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-11-24','Day after Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5064),(38182,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','H','christmas.jpg',NULL,'(1/2 day)','2022-03-22','27.255.165.75','Y',5065),(38183,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5066),(38184,'state','west-virginia','us','Americas','West Virginia',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','H','new-years-day.jpg',NULL,'(1/2 day)','2022-03-22','27.255.165.75','Y',5067),(38185,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5024),(38186,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13967),(38187,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-01-16','Martin Luther King Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5025),(38188,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5026),(38189,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5027),(38190,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5028),(38191,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-10-09','Columbus Day',NULL,NULL,'COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,NULL,'RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12362),(38192,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,NULL,'VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',12363),(38193,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5029),(38194,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5030),(38195,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5031),(38196,'state','wisconsin','us','Americas','Wisconsin',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5032),(38197,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5043),(38198,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13969),(38199,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-01-16','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5044),(38200,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-02-20','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5045),(38201,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5046),(38202,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5047),(38203,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5048),(38204,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-11-10','Veteran\'s Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',13968),(38205,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5049),(38206,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-11-23','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5050),(38207,'state','wyoming','us','Americas','Wyoming',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-03-22','27.255.165.75','Y',5051),(33663,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13982),(33664,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2833),(33665,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2834),(33666,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2836),(33667,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2835),(33668,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2842),(33669,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2838),(33670,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2837),(33671,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13981),(33672,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2840),(33673,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2839),(33674,'bank-org','bank-of-america','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2841),(33715,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13984),(33716,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2877),(33717,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2878),(33718,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2879),(33719,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2881),(33720,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2880),(33721,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2882),(33722,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2883),(33723,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day Holday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'Y','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13983),(33724,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2885),(33725,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2884),(33726,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2886),(33727,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2843),(33728,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13985),(33729,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2844),(33730,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2845),(33731,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2846),(33732,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2848),(33733,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2847),(33734,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13986),(33735,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','OB','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2849),(33736,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2850),(33737,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2851),(33738,'bank-org','chase-bank','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2852),(33766,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2853),(33767,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-01-02','New Year Holiday',NULL,'','NEW-YEAR-HOLIDAY',NULL,'',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2876),(33768,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2854),(33769,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2855),(33770,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2857),(33771,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2856),(33772,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2858),(33773,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2859),(33774,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'Y','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13987),(33775,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2860),(33776,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2861),(33777,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2863),(33778,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2864),(33779,'bank-org','citibank','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2862),(33803,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2897),(33804,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13988),(33805,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2899),(33806,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2898),(33807,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2900),(33808,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2901),(33809,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2903),(33810,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2902),(33811,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'Y','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13989),(33812,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2904),(33813,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2905),(33814,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2906),(33938,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2887),(33939,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2888),(33940,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13991),(33941,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2889),(33942,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2891),(33943,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2890),(33944,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2892),(33945,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2893),(33946,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'Y','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13990),(33947,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2894),(33948,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2895),(33949,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2896),(33983,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-01-02','New Year Holiday',NULL,NULL,'NEW-YEAR-HOLIDAY',NULL,'',0,'Y','OB','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13993),(33984,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2865),(33985,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2866),(33986,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2868),(33987,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2867),(33988,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2870),(33989,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2869),(33990,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2871),(33991,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day Holiday',NULL,NULL,'VETERANS-DAY-HOLIDAY',NULL,'',0,'Y','OB','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',13992),(33992,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2872),(33993,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2873),(33994,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',2875),(35260,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-12-26','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','MH','Y','boxing-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2719),(35261,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2718),(35262,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-06-12','Queen\'s Birthday',NULL,NULL,'QUEENS-BIRTHDAY-QLD','/queens-birthday/','/queens-birthday/',0,'','MH','Y','queens-birthday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2717),(35263,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-04-25','Anzac Day',NULL,'','ANZAC-DAY',NULL,'',0,'Y','MH','Y','anzac-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2716),(35264,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-04-10','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2715),(35265,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-04-07','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2714),(35266,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-01-26','Australia Day OBS',NULL,'','AUSTRALIA-DAY','/australia-day/','/australia-day/',0,'Y','MH','Y','australia-flag.gif',NULL,NULL,'2022-03-21','49.156.98.118','Y',2713),(35267,'market','asx','australia','Asia Pacific','Australia',NULL,'2023','2023-01-02','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'Australian Stock Exchange Ltd, Australia ','2022-03-21','49.156.98.118','Y',2712),(35268,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2495),(35269,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-11-27','Guru Nanak Jayanti',0,'N','GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2494),(35270,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-11-14','Diwali-Balipratipada',0,'N','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2491),(35271,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-11-12','Diwali-Laxmi Pujan**',0,'N','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2022-05-14','223.178.209.83','Y',2490),(35272,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-10-24','Dasara',0,'N','DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2489),(35273,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','MH','Y','mahatma-gandhi.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2488),(35274,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-09-19','Ganesh Chaturthi',0,'N','GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2486),(35275,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2022-03-21','49.156.98.118','Y',2483),(35276,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-08-29','Muharram',0,'N','MUHARRAM','/muharram/','/muharram/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2487),(35277,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-06-28','Bakri Id / Eid ul-Adha',0,'N','EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2485),(35278,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','MH','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2482),(35279,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-04-22','Id-ul-Fitr (Ramzan ID)',0,'N','EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2492),(35280,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-04-14','Dr.Baba Saheb Ambedkar Jayanti',0,'N','AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2484),(35281,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-04-07','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2481),(35282,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-04-04','Mahavir Jayanti',0,'N','MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2480),(35283,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-03-30','Ram Navami',0,'N','RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2493),(35284,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-03-18','Maha Shivaratri',0,'N','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','MH','M','maha-shivaratri.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2478),(35285,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-03-08','Holi',0,'N','HOLI','/holi/','/holi/',0,'','MH','M','holi.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2479),(35286,'market','bse','india','Asia Pacific','India',NULL,'2023','2023-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2477),(35287,'market','dax','germany','Europe','Germany',NULL,'2023','2023-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2732),(35288,'market','dax','germany','Europe','Germany',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2734),(35289,'market','dax','germany','Europe','Germany',NULL,'2023','2023-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2731),(35290,'market','dax','germany','Europe','Germany',NULL,'2023','2023-05-29','Whit Monday',0,'N','WHIT-MONDAY','/pentecost-monday/','/pentecost-monday/',0,'','MH','Y','',NULL,'','2022-03-21','49.156.98.118','Y',2730),(35291,'market','dax','germany','Europe','Germany',NULL,'2023','2023-05-01','Labor Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'Y','MH','Y','may-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2729),(35292,'market','dax','germany','Europe','Germany',NULL,'2023','2023-04-10','Easter Monday',0,'N','EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,'','2022-03-21','49.156.98.118','Y',2728),(35293,'market','dax','germany','Europe','Germany',NULL,'2023','2023-04-02','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2727),(35294,'market','dax','germany','Europe','Germany',NULL,'2023','2023-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'Frankfurt Stock Exchange Germany','2022-03-21','49.156.98.118','Y',2726),(35295,'market','euronext','france','Europe','France',NULL,'2023','2023-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2724),(35296,'market','euronext','france','Europe','France',NULL,'2023','2023-05-01','Labor day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'Y','MH','Y','labour-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2723),(35297,'market','euronext','france','Europe','France',NULL,'2023','2023-04-10','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2722),(35298,'market','euronext','france','Europe','France',NULL,'2023','2023-04-07','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2721),(35299,'market','euronext','france','Europe','France',NULL,'2023','2023-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2720),(35300,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','MH','E','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2022-03-21','49.156.98.118','Y',2762),(35301,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-12-26','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','MH','Y','boxing-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2742),(35302,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2741),(35303,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','MH','E','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2761),(35304,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-08-28','Summer Bank Holiday',NULL,NULL,'SUMMER-BANK-HOLIDAY','/summer-bank-holiday/','/summer-bank-holiday/',0,'','MH','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2740),(35305,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-05-29','Spring Bank Holiday',NULL,NULL,'SPRING-BANK-HOLIDAY','/may-spring-bank-holiday/','/may-spring-bank-holiday/',0,'','MH','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2739),(35306,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-05-01','Early May Bank Holiday',NULL,NULL,'EARLY-MAY-BANK-HOLIDAY','/early-may-bank-holiday/','/early-may-bank-holiday/',0,'','MH','Y','may-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2738),(35307,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-04-10','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2737),(35308,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-04-07','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2736),(35309,'market','lse','uk','Europe','United Kingdom',NULL,'2023','2023-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2022-03-21','49.156.98.118','Y',2735),(35310,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2514),(35311,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-11-27','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'MH','M',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2513),(35312,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-11-14','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2512),(35313,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-11-12','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'','2022-03-21','49.156.98.118','Y',2511),(35314,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-10-24','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'MH','M',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2510),(35315,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','MH','Y','mahatma-gandhi.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2509),(35316,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-09-19','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','MH','M',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2507),(35317,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2022-03-21','49.156.98.118','Y',2505),(35318,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-07-29','Muharram',NULL,NULL,'MUHARRAM','/muharram/','/muharram/',0,NULL,'MH','M',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2508),(35319,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-06-28','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','MH','M',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2506),(35320,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-04-22','Id-ul-Fitr (Ramzan ID)',0,'N','EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'MH','Y','',NULL,'','2022-03-21','49.156.98.118','Y',2517),(35321,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','MH','M',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2504),(35322,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','MH','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2516),(35323,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-04-04','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','MH','M',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2502),(35324,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-04-07','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2503),(35325,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-03-30','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'MH','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2515),(35326,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-03-08','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','MH','M','holi.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2501),(35327,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-02-18','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','MH','M','maha-shivaratri.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2500),(35328,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2499),(35329,'market','mcx','india','Asia Pacific','India',NULL,'2023','2023-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','E','new-years-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2498),(35330,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2751),(35331,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','MH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2750),(35332,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','MH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2749),(35333,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2748),(35334,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','MH','Y','memorial-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2747),(35335,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2746),(35336,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','MH','Y','presidents-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2745),(35337,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','MH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2744),(35338,'market','nasdaq','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'NASDAQ Stock Exchange, United States','2022-03-21','49.156.98.118','Y',2743),(35339,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-11-27','Guru Nanak Jayanti',0,'N','GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2472),(35340,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2473),(35341,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-11-14','Diwali-Balipratipada',0,'N','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2469),(35342,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-11-12','Diwali-Laxmi Pujan**',0,'N','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2022-05-14','223.178.209.83','Y',2468),(35343,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-10-24','Dasara',0,'N','DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2467),(35344,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','MH','Y','mahatma-gandhi.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2466),(35345,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-09-19','Ganesh Chaturthi',0,'N','GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2464),(35346,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-07-29','Muharram',0,'N','MUHARRAM','/muharram/','/muharram/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2465),(35347,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2022-03-21','49.156.98.118','Y',2461),(35348,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-06-28','Bakri Id / Eid ul-Adha',0,'N','EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2463),(35349,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-04-21','Id-ul-Fitr (Ramzan ID)',0,'N','EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2475),(35350,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','MH','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2460),(35351,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-04-14','Dr.Baba Saheb Ambedkar Jayanti',0,'N','AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2476),(35352,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-04-07','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2458),(35353,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-04-04','Mahavir Jayanti',0,'N','MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2457),(35354,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-03-30','Ram Navami',0,'N','RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2474),(35355,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-03-08','Holi',0,'N','HOLI','/holi/','/holi/',0,'','MH','M','holi.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2456),(35356,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-02-18','Maha Shivaratri',0,'N','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','MH','M','maha-shivaratri.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2455),(35357,'market','nse','india','Asia Pacific','India',NULL,'2023','2023-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2454),(35358,'market','nyse','us','Americas','United States',NULL,'2023','2023-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'New York Stock Exchange, United States','2022-03-21','49.156.98.118','Y',2752),(35359,'market','nyse','us','Americas','United States',NULL,'2023','2023-01-16','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','MH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2753),(35360,'market','nyse','us','Americas','United States',NULL,'2023','2023-02-20','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','MH','Y','presidents-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2754),(35361,'market','nyse','us','Americas','United States',NULL,'2023','2023-04-07','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2755),(35362,'market','nyse','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','MH','Y','memorial-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2756),(35363,'market','nyse','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2757),(35364,'market','nyse','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','MH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2758),(35365,'market','nyse','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','MH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2759),(35366,'market','nyse','us','Americas','United States',NULL,'2023','2023-12-25','Christmas',0,'N','CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,'','2022-03-21','49.156.98.118','Y',2760),(35367,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'Toronto Stock Exchange, Canada','2022-03-21','49.156.98.118','Y',2763),(35368,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-02-20','Family Day',NULL,NULL,'FAMILY-DAY','/family-day/','/family-day/',0,'','MH','Y','family-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2764),(35369,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-04-07','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2765),(35370,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-05-22','Victoria/Patriots\' Day',NULL,'','VICTORIA-DAY','/victoria-day/','/victoria-day/',0,'','MH','Y','victoria-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2766),(35371,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-07-03','Canada Day',NULL,'','CANADA-DAY','/canada-day/','/canada-day/',0,'Y','ND','Y','canada-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2767),(35372,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-08-07','Civic Holiday',NULL,'','CIVIC-HOLIDAY','/provincial-day/','/provincial-day/',0,'','MH','Y','provincial-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2768),(35373,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-09-04','Labour Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','MH','Y','labour-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2769),(35374,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-10-09','Thanksgiving',NULL,NULL,'THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','MH','Y',NULL,NULL,NULL,'2022-03-21','49.156.98.118','Y',2770),(35375,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2771),(35376,'market','tsx','canada','Americas','Canada',NULL,'2023','2023-12-26','Boxing Day',NULL,'','BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','MH','Y','boxing-day.jpg',NULL,NULL,'2022-03-21','49.156.98.118','Y',2772),(34007,'post','usps','us','Americas','United States',NULL,'2023','2023-11-23','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','PH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6245),(34008,'post','usps','us','Americas','United States',NULL,'2023','2023-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','PH','Y','christmas.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6246),(34009,'post','usps','us','Americas','United States',NULL,'2023','2023-11-10','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','PH','Y','veterans-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6244),(34010,'post','usps','us','Americas','United States',NULL,'2023','2023-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','PH','Y','us-columbus-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6243),(34011,'post','usps','us','Americas','United States',NULL,'2023','2023-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','PH','Y','us-labor-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6242),(34012,'post','usps','us','Americas','United States',NULL,'2023','2023-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','PH','Y','us-flag.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6241),(34013,'post','usps','us','Americas','United States',NULL,'2023','2023-05-29','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','PH','Y','memorial-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6240),(34014,'post','usps','us','Americas','United States',NULL,'2023','2023-02-20','Washington\'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','PH','Y','presidents-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6239),(34015,'post','usps','us','Americas','United States',NULL,'2023','2023-01-16','Martin Luther King Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','PH','Y','martin-luther-king.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6238),(34016,'post','usps','us','Americas','United States',NULL,'2023','2023-01-02','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','PH','Y','new-years-day.jpg',NULL,NULL,'2022-03-15','27.255.182.201','Y',6237),(11322,'country','us','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',2,'X','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH',NULL,'new-years-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',327),(11323,'country','us','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH',NULL,'martin-luther-king.jpg',NULL,NULL,'2018-11-26',NULL,'Y',328),(11324,'country','us','us','Americas','United States',NULL,'2024','2024-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','OB',NULL,'valentines-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',329),(11325,'country','us','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH',NULL,'presidents-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',330),(11326,'country','us','us','Americas','United States',NULL,'2024','2024-03-29','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OB',NULL,'good-friday.jpg',NULL,NULL,'2018-11-26',NULL,'Y',331),(11327,'country','us','us','Americas','United States',NULL,'2024','2024-03-31','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','OB',NULL,'easter.jpg',NULL,NULL,'2018-11-26',NULL,'Y',332),(11328,'country','us','us','Americas','United States',NULL,'2024','2024-05-12','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','OB',NULL,'mothers-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',333),(11329,'country','us','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH',NULL,'memorial-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',334),(11330,'country','us','us','Americas','United States',NULL,'2024','2024-06-16','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','OB',NULL,'fathers-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',335),(11331,'country','us','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND',NULL,'us-flag.jpg',NULL,NULL,'2018-11-26',NULL,'Y',336),(11332,'country','us','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',1,'X','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH',NULL,'us-labor-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',337),(11333,'country','us','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',338),(11334,'country','us','us','Americas','United States',NULL,'2024','2024-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','NH',NULL,'halloween.jpg',NULL,NULL,'2018-11-26',NULL,'Y',339),(11335,'country','us','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH',NULL,'veterans-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',340),(11336,'country','us','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving Day',2,'X','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH',NULL,'thanksgiving-day.jpg',NULL,NULL,'2018-11-26',NULL,'Y',341),(11337,'country','us','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH',NULL,'christmas.jpg',NULL,NULL,'2018-11-26',NULL,'Y',342),(11338,'country','us','us','Americas','United States',NULL,'2024','2024-06-07','National Donut Day',1,'X','NATIONAL-DONUT-DAY','/national-donut-day/','/national-donut-day/',0,'','OB','N','national-donut-day.jpg',NULL,'Celebrated every year on the first Friday of June','2018-11-26',NULL,'Y',2453),(40925,'religious','buddhist','buddhist',NULL,NULL,NULL,'2024','2024-01-25','Mahayana New Year',NULL,NULL,'MAHAYANA-NEW-YEAR','/mahayana-new-year/','/mahayana-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',473),(40926,'religious','buddhist','buddhist',NULL,'',NULL,'2024','2024-02-10','Chinese New Year',0,'N','CHINESE-NEW-YEAR','/chinese-new-year/','/chinese-new-year/',0,'','RE','Y','chinese-new-year.jpg',NULL,'','2022-04-28','223.178.213.248','Y',658),(40927,'religious','buddhist','buddhist',NULL,NULL,NULL,'2024','2024-02-15','Nirvana Day',NULL,NULL,'NIRVANA-DAY','/nirvana-day/','/nirvana-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',475),(40928,'religious','buddhist','buddhist',NULL,'',NULL,'2024','2024-02-24','Magha Puja Day',0,'Y','MAGHA-PUJA-DAY','/magha-puja-day/','/magha-puja-day/',0,'','RE','Y','',NULL,'','2022-04-28','223.178.213.248','Y',476),(40929,'religious','buddhist','buddhist',NULL,'',NULL,'2024','2024-04-13','Theravada New Year',0,'Y','THERAVADA-NEW-YEAR','/theravada-new-year/','/theravada-new-year/',0,'','RE','Y','',NULL,'','2022-04-28','223.178.213.248','Y',477),(40930,'religious','buddhist','buddhist',NULL,NULL,NULL,'2024','2024-05-23','Vesak - Buddha Day',NULL,NULL,'VESAK-BUDDHA-DAY','/vesak-day/','/vesak-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',478),(40931,'religious','buddhist','buddhist',NULL,NULL,NULL,'2024','2024-07-21','Asala - Dharma Day',NULL,NULL,'ASALA-DHARMA-DAY','/asala-dharma-day/','/asala-dharma-day/',0,'','RE','Y','asala-dharma-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',479),(40932,'religious','buddhist','buddhist',NULL,NULL,NULL,'2024','2024-08-13','Obon',NULL,NULL,'OBON','/obon/','/obon/',0,'','RE','Y','obon.jpg','flickr.com/14360805@N05',NULL,'2022-04-28','223.178.213.248','Y',659),(40933,'religious','buddhist','buddhist',NULL,NULL,NULL,'2024','2024-12-08','Bodhi Day',NULL,NULL,'BODHI-DAY','/bodhi-day/','/bodhi-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',480),(40934,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-01-06','Epiphany',NULL,NULL,'EPIPHANY','/epiphany/','/epiphany/',0,'Y','RE','Y','epiphany.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',369),(40935,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-01-07','The Baptism of Jesus',1,'X','BAPTISM-OF-THE-JESUS','/baptism-of-the-lord/','/baptism-of-the-lord/',0,'','RE','Y','baptism-of-the-lord.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',370),(40936,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-02-02','Candlemas',NULL,NULL,'CANDLEMAS','/candlemas/','/candlemas/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',371),(40937,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-02-14','St. Valentine\'s Day',0,'','ST-VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',372),(40938,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-02-14','Ash Wednesday',NULL,NULL,'ASH-WEDNESDAY','/ash-wednesday/','/ash-wednesday/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',657),(40939,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-03-17','St. Patrick\'s Day',NULL,NULL,'ST-PATRICK\'S-DAY','/st-patricks-day/','/st-patricks-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',373),(40940,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-03-19','St. Joseph\'s Day',NULL,NULL,'ST-JOSEPHS-DAY','/st-josephs-day-/','/st-josephs-day-/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',374),(40941,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-03-24','Palm Sunday',NULL,NULL,'PALM-SUNDAY','/palm-sunday/','/palm-sunday/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',375),(40942,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-03-28','Maundy (Holy) Thursday',NULL,NULL,'MAUNDY-HOLY-THURSDAY','/maundy-thursday/','/maundy-thursday/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',376),(40943,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-03-29','Good Friday ',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RE','Y','good-friday.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',377),(40944,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-03-31','Easter',NULL,NULL,'EASTER','/easter/','/easter/',0,'','RE','Y','easter.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',379),(40945,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-04-01','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','RE','Y','easter.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',380),(40946,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-04-23','St. George\'s Day',NULL,NULL,'ST-GEORGES-DAY','/st-georges-day/','/st-georges-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',378),(40947,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-05-09','Ascension of Jesus',NULL,NULL,'ASCENSION-OF-JESUS','/ascension-day/','/ascension-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',382),(40948,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-05-19','Pentecost',NULL,NULL,'PENTECOST','/pentecost/','/pentecost/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',383),(40949,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-05-26','Trinity Sunday',NULL,NULL,'TRINITY-SUNDAY','/trinity-sunday/','/trinity-sunday/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',384),(40950,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-05-30','Corpus Christi',NULL,NULL,'CORPUS-CHRISTI','/corpus-christi/','/corpus-christi/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',385),(40951,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-06-29','Saints Peter and Paul',NULL,NULL,'SAINTS-PETER-AND-PAUL','/saints-peter-and-paul/','/saints-peter-and-paul/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',386),(40952,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-07-15','Saint Vladimir',NULL,NULL,'SAINT-VLADIMIR','/saint-vladimir/','/saint-vladimir/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',387),(40953,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-07-25','St. James the Great Day',NULL,NULL,'ST-JAMES-THE-GREAT-DAY','/st-james-the-great-day-/','/st-james-the-great-day-/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',381),(40954,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-08-01','Lammas',NULL,NULL,'LAMMAS','/lammas/','/lammas/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',388),(40955,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-08-15','The Assumption of Mary',NULL,NULL,'THE-ASSUMPTION-OF-MARY','/the-assumption-of-mary/','/the-assumption-of-mary/',0,'Y','RE','Y','the-assumption-of-mary.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',389),(40956,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-09-14','Holy Cross Day',NULL,NULL,'HOLY-CROSS-DAY','/holy-cross-day/','/holy-cross-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',390),(40957,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-09-29','Michael and All Angels',NULL,NULL,'MICHAEL-AND-ALL-ANGELS','/michael-and-all-angels/','/michael-and-all-angels/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',391),(40958,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-10-31','All Hallows Eve',NULL,NULL,'ALL-HALLOWS-EVE','/halloween/','/halloween/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',392),(40959,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-11-01','All Saints\' Day',NULL,NULL,'ALL-SAINTS-DAY','/all-saints-day/','/all-saints-day/',0,'Y','RE','Y','all-saints-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',393),(40960,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-11-02','All Souls\' Day',NULL,NULL,'ALL-SOULS-DAY','/all-souls-day/','/all-souls-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',395),(40961,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-11-28','Thanksgiving (USA)',NULL,NULL,'THANKSGIVING-USA','/thanksgiving-day/','/thanksgiving-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',396),(40962,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-11-24','Christ the King',NULL,NULL,'CHRIST-THE-KING','/christ-the-king/','/christ-the-king/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',656),(40963,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-11-30','St. Andrew\'s Day',NULL,NULL,'ST-ANDREWS-DAY','/st-andrews-day/','/st-andrews-day/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',398),(40964,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-12-03','Advent - first Sunday',NULL,NULL,'ADVENT-FIRST-SUNDAY','/advent-first-sunday/','/advent-first-sunday/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',397),(40965,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-12-06','St. Nicholas Day',NULL,NULL,'ST-NICHOLAS-DAY','/st-nicholas-day/','/st-nicholas-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',399),(40966,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RE','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',400),(40967,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','RE','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',401),(40968,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-12-28','Holy Innocents',NULL,NULL,'HOLY-INNOCENTS','/holy-innocents/','/holy-innocents/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',402),(40969,'religious','christian','christian',NULL,NULL,NULL,'2024','2024-12-31','Watch Night',NULL,NULL,'WATCH-NIGHT','/watch-night/','/watch-night/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',403),(40970,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-01-15','Makarsankranti / Pongal',0,NULL,'MAKARSANKRANTI-PONGAL','/pongal/','/pongal/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',404),(40971,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-02-14','Vasant Panchami',0,NULL,'VASANT-PANCHAMI','/vasant-panchami/','/vasant-panchami/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',406),(40972,'religious','hindu','hindu',NULL,'',NULL,'2024','2024-01-26','Thaipusam',0,'Y','THAIPUSAM','/thaipusam/','/thaipusam/',0,'','RE','R','',NULL,'','2022-04-28','223.178.213.248','Y',754),(40973,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-03-08','Maha Shivaratri',NULL,NULL,'MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',407),(40974,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-03-24','Holika Dahan',NULL,NULL,'HOLIKA-DAHAN','/holi/','/holi/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',684),(40975,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-03-25','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',408),(40976,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-04-09','Ugadi / Gudi Padwa / Telugu New Year',NULL,NULL,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','/ugadi-telugu-new-year/','/ugadi-telugu-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',410),(40977,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-03-20','Hindi New Year',NULL,NULL,'HINDI-NEW-YEAR','/hindi-new-year/','/hindi-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',409),(40978,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-04-17','Ramanavami',NULL,NULL,'RAMANAVAMI','/ramanavami/','/ramanavami/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',411),(40979,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-04-23','Hanuman Jayanti',NULL,NULL,'HANUMAN-JAYANTI','/hanuman-jayanti/','/hanuman-jayanti/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',414),(40980,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-04-13','Vaisakhi / Baisakhi / Vishu ',NULL,NULL,'VAISAKHI-BAISAKHI-VISHU','/vishu/','/vishu/',0,'Y','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',416),(40981,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-04-14','Tamil New Year',NULL,NULL,'TAMIL-NEW-YEAR','/tamil-new-year/','/tamil-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',405),(40982,'religious','hindu','hindu',NULL,'',NULL,'2024','2024-04-15','Bengali New Year / Bihu',0,'Y','BENGALI-NEW-YEAR-BIHU','/bihu-bengali-new-year/','/bihu-bengali-new-year/',0,'','RE','Y','',NULL,'','2022-04-28','223.178.213.248','Y',413),(40983,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-05-10','Akshaya Tritiya',0,NULL,'AKSHAYA-TRITIYA','/akshaya-tritiya/','/akshaya-tritiya/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',415),(40984,'religious','hindu','hindu',NULL,'',NULL,'2024','2024-06-06','Savitri Pooja',0,'Y','SAVITRI-POOJA','/savitri-pooja/','/savitri-pooja/',0,'','RE','R','',NULL,'','2022-04-28','223.178.213.248','Y',417),(40985,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-07-07','Puri Rath Yatra',NULL,NULL,'PURI-RATH-YATRA','/rath-yatra/','/rath-yatra/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',418),(40986,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-07-21','Guru Purnima',NULL,NULL,'GURU-PURNIMA','/guru-purnima/','/guru-purnima/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',419),(40987,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-08-09','Nag Panchami',NULL,NULL,'NAG-PANCHAMI','/nag-panchami/','/nag-panchami/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',420),(40988,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-08-16','Varalakshmi Vrat',NULL,NULL,'VARALAKSHMI-VRAT','/varalakshmi-vrat/','/varalakshmi-vrat/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',685),(40989,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-09-17','Onam',NULL,NULL,'ONAM','/onam/','/onam/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',424),(40990,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-08-19','Raksha Bandhan',NULL,NULL,'RAKSHA-BANDHAN','/raksha-bandhan/','/raksha-bandhan/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',421),(40991,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-08-26','Krishna Janmashtami',NULL,NULL,'KRISHNA-JANMASHTAMI','/janmashtami/','/janmashtami/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',422),(40992,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-09-16','Vishwakarma Puja',NULL,NULL,'VISHWAKARMA-PUJA','/vishwakarma-puja/','/vishwakarma-puja/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',686),(40993,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-09-07','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',423),(40994,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-10-02','Mahalaya Amavasya',NULL,NULL,'MAHALAYA-AMAVASYA','/mahalaya-amavasya/','/mahalaya-amavasya/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',425),(40995,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-10-03','Navaratri begins',NULL,NULL,'NAVARATRI-BEGINS','/navaratri/','/navaratri/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',427),(40996,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-10-11','Navaratri ends / Maha Navami',NULL,NULL,'NAVARATRI-ENDS-MAHA-NAVAMI','/navaratri/','/navaratri/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',429),(40997,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-10-12','Dusshera ',NULL,NULL,'DUSSHERA-','/dussehra/','/dussehra/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',430),(40998,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-10-16','Sharad Purnima',NULL,NULL,'SHARAD-PURNIMA','/sharad-purnima/','/sharad-purnima/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',431),(40999,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-10-20','Karwa Chauth',NULL,NULL,'KARWA-CHAUTH','/karva-chauth/','/karva-chauth/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',432),(41000,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-10-29','Dhan Teras',NULL,NULL,'DHAN-TERAS','/dhanteras/','/dhanteras/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',433),(41001,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-11-01','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RE','Y','diwali.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',434),(41002,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-11-03','Bhai Dooj',NULL,NULL,'BHAI-DOOJ','/bhai-dooj/','/bhai-dooj/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',654),(41003,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-11-07','Chhath Puja',NULL,NULL,'CHHATH-PUJA','/chhath-puja/','/chhath-puja/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',655),(41004,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-11-15','Kartik Poornima',NULL,NULL,'KARTIK-POORNIMA',NULL,'/kartik-poornima/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',435),(41005,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-12-15','Dhanu Sankranti',NULL,NULL,'DHANU-SANKRANTI','/dhanu-sankranti/','/dhanu-sankranti/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',688),(41006,'religious','hindu','hindu',NULL,NULL,NULL,'2024','2024-12-11','Geeta Jayanti',NULL,NULL,'GEETA-JAYANTI','/geeta-jayanti/','/geeta-jayanti/',0,'','RE','R',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',687),(41007,'religious','islam','islam',NULL,NULL,NULL,'2024','2024-02-07','Lailat al Miraj',NULL,NULL,'LAILAT-AL-MIRAJ','/lailat-al-miraj/','/lailat-al-miraj/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',464),(41008,'religious','islam','islam',NULL,'',NULL,'2024','2024-02-25','Lailat al Bara\'ah',0,'Y','LAILAT-AL-BARAAH','/lailat-al-baraah/','/lailat-al-baraah/',0,'','RE','Y','',NULL,'','2022-04-28','223.178.213.248','Y',465),(41009,'religious','islam','islam',NULL,'',NULL,'2024','2024-03-11','Ramadan (start)',0,'Y','RAMADAN-START','/ramadan-start/','/ramadan-start/',0,'','RE','Y','ramadan.jpg',NULL,'','2022-04-28','223.178.213.248','Y',466),(41010,'religious','islam','islam',NULL,NULL,NULL,'2024','2024-04-06','Laylat al Qadr',NULL,NULL,'LAYLAT-AL-KADR','/laylat-al-kadr/','/laylat-al-kadr/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',467),(41011,'religious','islam','islam',NULL,NULL,NULL,'2024','2024-04-10','Eid-al-Fitr (End of Ramadan)',NULL,NULL,'EID-AL-FITR-END-OF-RAMADAN','/ramadan-end/','/ramadan-end/',0,'','RE','Y','hari-raya-puasa.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',468),(41012,'religious','islam','islam',NULL,NULL,NULL,'2024','2024-06-16','Eid-al-Adha',NULL,NULL,'EID-AL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','RE','Y','eid-al-adha.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',470),(41013,'religious','islam','islam',NULL,NULL,NULL,'2024','2024-07-07','Hijra - Islamic New Year',NULL,NULL,'HIJRA-ISLAMIC-NEW-YEAR','/muharram/','/muharram/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',471),(41014,'religious','islam','islam',NULL,NULL,NULL,'2024','2024-07-17','Day of Ashura / Muharram',NULL,NULL,'DAY-OF-ASHURA-MUHARRAM','/muharram/','/muharram/',0,'','RE','Y',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',472),(41015,'religious','islam','islam',NULL,'',NULL,'2024','2024-06-15','Waqf al Arafa - Hajj',0,'Y','WAQF-AL-ARAFA-HAJJ','/waqf-al-arafa-hajj/','/waqf-al-arafa-hajj/',0,'','RE','Y','',NULL,'','2022-04-28','223.178.213.248','Y',469),(41016,'religious','islam','islam',NULL,'',NULL,'2024','2024-09-15','Milad un Nabi',0,'N','MILAD-UN-NABI','/milad-un-nabi/','/milad-un-nabi/',0,'','RE','Y','',NULL,'','2022-04-28','223.178.213.248','Y',462),(41017,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-07-23','The 17th of Tammuz',NULL,NULL,'THE-17TH-OF-TAMMUZ',NULL,'/the-17th-of-tammuz/',0,'','RE','',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',449),(41018,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-01-25','Tu Bishvat',NULL,NULL,'TU-BISHVAT','/tu-bishvat/','/tu-bishvat/',0,'','RE','',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',436),(41019,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-03-24','Purim',0,NULL,'PURIM','/purim/','/purim/',0,'','RE','',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',437),(41020,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-03-25','Shushan Purim',NULL,NULL,'SHUSHAN-PURIM','/purim/','/purim/',0,'','RE','',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',438),(41021,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-04-22','Passover - First Day',0,NULL,'PASSOVER-FIRST-DAY','/passover/','/passover/',0,'','RE','',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',439),(41022,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-04-30','Passover - Final Day',NULL,NULL,'PASSOVER-FINAL-DAY','/passover/','/passover/',0,'','RE','',NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',441),(41023,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-04-18','Yom Hashoah',NULL,NULL,'YOM-HASHOAH','/yom-hashoah/','/yom-hashoah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',442),(41024,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-04-25','Yom HaZikaron',NULL,NULL,'YOM-HAZIKARON','/yom-hazikaron/','/yom-hazikaron/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',443),(41025,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-04-26','Yom HaAtzma\'ut',NULL,NULL,'YOM-HAATZMAUT','/yom-haatzmaut/','/yom-haatzmaut/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',444),(41026,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-05-22','Second Passover',NULL,NULL,'SECOND-PASSOVER','/passover/','/passover/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',440),(41027,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-05-26','Lag BaOmer',NULL,NULL,'LAG-BAOMER','/lag-bomer/','/lag-bomer/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',445),(41028,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-05-19','Yom Yerushalayim',NULL,NULL,'YOM-YERUSHALAYIM','/yom-yerushalayim/','/yom-yerushalayim/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',446),(41029,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-06-11','Shavuot (1st day)',NULL,NULL,'SHAVUOT-1ST-DAY','/shavuot/','/shavuot/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',447),(41030,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-06-13','Shavuot',NULL,NULL,'SHAVUOT','/shavuot/','/shavuot/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',448),(41031,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-08-13','Tish\'a B\'Av',NULL,NULL,'TISHA-BAV','/tisha-bav/','/tisha-bav/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',450),(41032,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-10-02','Rosh HaShana Starts',NULL,NULL,'ROSH-HASHANAH-STARTS','/rosh-hashanah/','/rosh-hashanah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',451),(41033,'religious','jewish','jewish','','',NULL,'2024','2024-10-04','Rosh HaShana Ends',NULL,NULL,'ROSH-HASHANAH-ENDS','/rosh-hashanah/','/rosh-hashanah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',452),(41034,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-10-06','Fast of Gedaliah',NULL,NULL,'FAST-OF-GEDALIAH','/fast-of-gedaliah/','/fast-of-gedaliah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',453),(41035,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-10-12','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',454),(41036,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-10-16','Sukkot Starts',NULL,NULL,'SUKKOT-STARTS','/sukkot/','/sukkot/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',455),(41037,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-10-23','Sukkot Ends',NULL,NULL,'SUKKOT-ENDS','/sukkot/','/sukkot/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',456),(41038,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-10-25','Simchat Torah',NULL,NULL,'SIMHAT-TORAH','/simhat-torah/','/simhat-torah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',459),(41039,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-10-24','Shmini Atzeret',NULL,NULL,'SHEMINI-ATZERET','/shemini-atzeret/','/shemini-atzeret/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',458),(41040,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-12-25','Hanukkah Starts',NULL,NULL,'HANUKKAH-STARTS','/hanukkah/','/hanukkah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',460),(41041,'religious','jewish','jewish',NULL,NULL,NULL,'2024','2024-01-02','Hanukkah Ends',NULL,NULL,'HANUKKAH-ENDS','/hanukkah/','/hanukkah/',0,'','RE',NULL,NULL,NULL,NULL,'2022-04-28','223.178.213.248','Y',461),(41519,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-01-17','Guru Gobind Singh Birthday',NULL,NULL,'GURU-GOBIND-SINGH-BIRTHDAY','/guru-gobind-singh-birthday/','/guru-gobind-singh-birthday/',0,'','RE','R',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',481),(41520,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-01-13','Maghi - Lohri',NULL,NULL,'MAGHI-LOHRI','/maghi-lohri/','/maghi-lohri/',0,'','RE','N',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',482),(41521,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-03-25','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RE','Y',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',660),(41522,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-03-27','Hola Mohalla',NULL,NULL,'HOLA-MOHALLA','/hola-mohalla/','/hola-mohalla/',0,'','RE','N',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',484),(41523,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-04-13','Vaisakhi',NULL,NULL,'VAISAKHI','/vaisakhi/','/vaisakhi/',0,'','RE','N',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',485),(41524,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-04-18','Birthday of Guru Angad Dev',NULL,NULL,'BIRTHDAY-OF-GURU-ANGAD-DEV','/birthday-of-guru-angad-dev/','/birthday-of-guru-angad-dev/',0,'Y','RE','N',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',661),(41525,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-06-16','Martyrdom of Guru Arjan Dev Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','/martyrdom-of-guru-arjan-dev-sahib/','/martyrdom-of-guru-arjan-dev-sahib/',0,'Y','RE','N',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',486),(41526,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-10-20','Birth of the Guru Granth',NULL,NULL,'BIRTH-OF-THE-GURU-GRANTH','/birth-of-the-guru-granth/','/birth-of-the-guru-granth/',0,'Y','RE','N',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',662),(41527,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-11-01','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RE','Y','diwali.jpg',NULL,NULL,'2022-05-01','223.178.210.251','Y',493),(41528,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-11-24','Martyrdom of Guru Tegh Bahadur Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','/martyrdom-of-guru-tegh-bahadur-sahib/','/martyrdom-of-guru-tegh-bahadur-sahib/',0,'Y','RE','N',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',495),(41529,'religious','sikh','sikh',NULL,NULL,NULL,'2024','2024-11-15','Guru Nanak Birthday',NULL,NULL,'GURU-NANAK-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,'','RE','R',NULL,NULL,NULL,'2022-05-01','223.178.210.251','Y',494),(40287,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4528),(40288,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-01-15','Martin Luther King, Jr./Robert E. Lee Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4529),(40289,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-02-13','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4531),(40290,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-02-15','Mrs. Rosa L. Parks Day (Commemoration Only)',NULL,'','ROSA-PARKS-DAY','/rosa-parks-day/','/rosa-parks-day/',0,'','OB','N','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4540),(40291,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-02-19','George Washington/Thomas Jefferson\'s Birthday',NULL,'','GEORGE-WASHINGTON','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4530),(40292,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-04-22','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4532),(40293,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-05-27','National Memorial Day',NULL,'','NATIONAL-MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4533),(40294,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-06-03','Jefferson Davis\' Birthday',NULL,'','JEFFERSON-DAVIS-BIRTHDAY',NULL,'/jefferson-birthday/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4534),(40295,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-07-04','Fourth day of July (observed)',NULL,'','FOURTH-DAY-OF-JULY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4535),(40296,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4536),(40297,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-10-14','Columbus Day / Fraternal Day / American Indian Heritage Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4537),(40298,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4538),(40299,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4539),(40300,'state','alabama','us','Americas','Alabama',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4541),(40301,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-10-18','Alaska Day',NULL,'','ALASKA-DAY','/alaska-day/','/alaska-day/',0,'y','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4549),(40302,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4542),(40303,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-01-15','MLK Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4543),(40304,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4544),(40305,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-03-25','Seward\'s Day',NULL,'','SEWARDS-DAY','/sewards-day/','/sewards-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4545),(40306,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4546),(40307,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-07-04','Independence Day (observed)',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4547),(40308,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4548),(40309,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4550),(40310,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4551),(40311,'state','alaska','us','Americas','Alaska',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4552),(40312,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4553),(40313,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-01-15','Martin Luther King, Jr./Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4554),(40314,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-02-19','Lincoln/Washington Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4555),(40315,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4556),(40316,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4557),(40317,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4558),(40318,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4559),(40319,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4560),(40320,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4561),(40321,'state','arizona','us','Americas','Arizona',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4562),(40322,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6205),(40323,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6206),(40324,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-02-19','George Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6207),(40325,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6208),(40326,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6210),(40327,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6211),(40328,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6212),(40329,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6213),(40330,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6214),(40331,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6215),(40332,'state','arkansas','us','Americas','Arkansas',NULL,'2024','2024-12-26','Christmas Day Holiday',NULL,NULL,'CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'Y','OB','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',13880),(40333,'state','california','us','Americas','California',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6147),(40334,'state','california','us','Americas','California',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6148),(40335,'state','california','us','Americas','California',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6149),(40336,'state','california','us','Americas','California',NULL,'2024','2024-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',6150),(40337,'state','california','us','Americas','California',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6151),(40338,'state','california','us','Americas','California',NULL,'2024','2024-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',14017),(40339,'state','california','us','Americas','California',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6152),(40340,'state','california','us','Americas','California',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6153),(40341,'state','california','us','Americas','California',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6154),(40342,'state','california','us','Americas','California',NULL,'2024','2024-11-29','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','OB','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6155),(40343,'state','california','us','Americas','California',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6156),(40364,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4691),(40365,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-01-15','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4692),(40366,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4693),(40367,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4694),(40368,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6546),(40369,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4696),(40370,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-11-05','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4697),(40371,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4699),(40372,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4700),(40373,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-11-29','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4701),(40374,'state','delaware','us','Americas','Delaware',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4702),(40375,'state','florida','us','Americas','Florida',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6157),(40376,'state','florida','us','Americas','Florida',NULL,'2024','2024-01-15','Birthday of Dr. Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6158),(40377,'state','florida','us','Americas','Florida',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6159),(40378,'state','florida','us','Americas','Florida',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6547),(40379,'state','florida','us','Americas','Florida',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6161),(40380,'state','florida','us','Americas','Florida',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6162),(40381,'state','florida','us','Americas','Florida',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6163),(40382,'state','florida','us','Americas','Florida',NULL,'2024','2024-11-29','Fridayay After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6164),(40383,'state','florida','us','Americas','Florida',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6165),(40401,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,'The first day in January','2022-04-27','223.178.212.115','Y',4715),(40402,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-01-15','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,'The third Monday in January','2022-04-27','223.178.212.115','Y',4716),(40403,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-02-19','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,'The third Monday in February','2022-04-27','223.178.212.115','Y',4717),(40404,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-03-26','Prince Kuhio Day',NULL,'','KUHIO-KALANIANAOLE-DAY','/kuhio-day/','/kuhio-day/',0,'Y','RH','Y','',NULL,'The twenty-sixth day in March','2022-04-27','223.178.212.115','Y',4718),(40405,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,'The Friday preceding Easter Sunday','2022-04-27','223.178.212.115','Y',4719),(40406,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,'The last Monday in May','2022-04-27','223.178.212.115','Y',4720),(40407,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-06-11','King Kamehameha I Day',NULL,'','KING-KAMEHAMEHA-DAY','/kamehameha-day/','/kamehameha-day/',0,'Y','RH','Y','',NULL,'The eleventh day in June','2022-04-27','223.178.212.115','Y',4721),(40408,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,'The fourth day in July','2022-04-27','223.178.212.115','Y',6549),(40409,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-08-16','Statehood Day',0,'Y','STATEHOOD-DAY','/statehood-day-hawaii/','/statehood-day-hawaii/',0,'Y','RH','Y','',NULL,'The third Friday in August','2022-04-27','223.178.213.248','Y',4723),(40410,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,'The first Monday in September','2022-04-27','223.178.212.115','Y',4724),(40411,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,'The eleventh day in November','2022-04-27','223.178.212.115','Y',4726),(40412,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'The fourth Thursday in November','2022-04-27','223.178.212.115','Y',4727),(40413,'state','hawaii','us','Americas','Hawaii',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,'The twenty-fifth day in December','2022-04-27','223.178.212.115','Y',4728),(40414,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6193),(40415,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6194),(40416,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6195),(40417,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6196),(40418,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6198),(40419,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6199),(40420,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-10-07','Cabrini Day',NULL,'','CABRINI-DAY',NULL,'/cabrini-day/',0,'','RH','Y','',NULL,'The first Monday of October','2022-04-27','223.178.212.115','Y',6200),(40421,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6201),(40422,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6203),(40423,'state','colorado','us','Americas','Colorado',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6204),(40424,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-11-10','Veterans Day Holiday',0,'Y','VETERANS-DAY-HOLIDAY','/veterans-day/','/veterans-day/',0,'','OB','Y','veterans-day.jpg',NULL,'','2022-04-27','223.178.212.115','N',13888),(40425,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4679),(40426,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-01-15','Martin Luther King Jr Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4680),(40427,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.212.115','Y',4681),(40428,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-02-19','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4682),(40429,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4683),(40430,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4684),(40431,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4685),(40432,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4686),(40433,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4687),(40434,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4688),(40435,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4689),(40436,'state','connecticut','us','Americas','Connecticut',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',4690),(40481,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-11-01','Veterans Day Holiday',0,'Y','VETERANS-DAY-HOLIDAY','/veterans-day/','/veterans-day/',0,'','OB','Y','veterans-day.jpg',NULL,'','2022-04-27','223.178.213.248','N',13899),(40482,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',4729),(40483,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-01-15','M L King Jr./Idaho Human Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4730),(40484,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4731),(40485,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4732),(40486,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6550),(40487,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4734),(40488,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4735),(40489,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4736),(40490,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4737),(40491,'state','idaho','us','Americas','Idaho',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4738),(40492,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4739),(40493,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-01-15','Martin Luther King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4740),(40494,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-DAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4741),(40495,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-02-19','Washington\'s Birthday',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4742),(40496,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4743),(40497,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4744),(40498,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4745),(40499,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4746),(40500,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4748),(40501,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4749),(40502,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-11-29','Thanksgiving Holiday',NULL,'','THANKSGIVING-DAY-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','OB','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4750),(40503,'state','illinois','us','Americas','Illinois',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4751),(40504,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4752),(40505,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4753),(40506,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4754),(40507,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4756),(40508,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4758),(40509,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4759),(40510,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4760),(40511,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4762),(40512,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-11-29','Lincoln\'s Birthday',0,'N','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,'','2022-04-27','223.178.213.248','Y',4764),(40513,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4763),(40514,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-12-24','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/washingtons-birthday/','/washingtons-birthday/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4765),(40515,'state','indiana','us','Americas','Indiana',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4766),(40516,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4767),(40517,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4768),(40518,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4769),(40519,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6552),(40520,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4771),(40521,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4772),(40522,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4773),(40523,'state','iowa','us','Americas','Iowa',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4775),(40524,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4776),(40525,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4777),(40526,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4778),(40527,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6553),(40528,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4780),(40529,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4781),(40530,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-11-29','Thanksgiving Holiday',0,'N','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',4783),(40531,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4782),(40532,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4784),(40533,'state','kansas','us','Americas','Kansas',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4785),(40534,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6134),(40535,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-01-15','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6135),(40536,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6136),(40537,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6137),(40538,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6138),(40539,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6139),(40540,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6141),(40541,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6142),(40542,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-11-29','Thanksgiving Friday',0,'N','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',6143),(40543,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6144),(40544,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6145),(40545,'state','kentucky','us','Americas','Kentucky',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6146),(40546,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4786),(40547,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-01-15','Birthday of Martin Luther King, Jr.',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4787),(40548,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-02-13','Mardi Gras',NULL,'','MARDI-GRAS','/mardi-gras/','/mardi-gras/',0,'','RH','Y','',NULL,'Tuesday before Ash Wednesday','2022-04-27','223.178.213.248','Y',4788),(40549,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4789),(40550,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4790),(40551,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4791),(40552,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4792),(40553,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-11-05','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',6555),(40554,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4793),(40555,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4794),(40556,'state','louisiana','us','Americas','Louisiana',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4795),(40557,'state','maine','us','Americas','Maine',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4796),(40558,'state','maine','us','Americas','Maine',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4797),(40559,'state','maine','us','Americas','Maine',NULL,'2024','2024-02-19','Washington\'s Birthday',NULL,'','WASHINGTONS-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4798),(40560,'state','maine','us','Americas','Maine',NULL,'2024','2024-04-15','Patriot\'s Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4799),(40561,'state','maine','us','Americas','Maine',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4800),(40562,'state','maine','us','Americas','Maine',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6556),(40563,'state','maine','us','Americas','Maine',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4802),(40564,'state','maine','us','Americas','Maine',NULL,'2024','2024-10-14','Indigenous Peoples Day',0,'N','INDIGENOUS-PEOPLES-DAY','/indigenous-peoples-day/','/indigenous-peoples-day/',0,'','RH','Y','',NULL,'','2022-04-27','223.178.213.248','Y',4803),(40565,'state','maine','us','Americas','Maine',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4804),(40566,'state','maine','us','Americas','Maine',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4805),(40567,'state','maine','us','Americas','Maine',NULL,'2024','2024-11-29','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4806),(40568,'state','maine','us','Americas','Maine',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4807),(40569,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4808),(40570,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-01-15','Dr. Martin Luther King, Jr., Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4809),(40571,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-02-19','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4810),(40572,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4811);
INSERT INTO `holidays` VALUES (40573,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4812),(40574,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4813),(40575,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4814),(40576,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-11-05','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4815),(40577,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4816),(40578,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4817),(40579,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-11-29','American Indian Heritage Day',NULL,'','AMERICAN-INDIAN-HERITAGE-DAY','/american-indian-heritage-day/','/american-indian-heritage-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4818),(40580,'state','maryland','us','Americas','Maryland',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4819),(40581,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4820),(40582,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4821),(40583,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-02-19','Washington\'s Birthday',NULL,'','WASHINGTON-BIRTHDAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4822),(40584,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-04-15','Patriots\' Day',NULL,'','PATRIOTS-DAY','/patriots-day/','/patriots-day/',0,'','RH','Y','',NULL,'Third Monday in April','2022-04-27','223.178.213.248','Y',4823),(40585,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4824),(40586,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4825),(40587,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4826),(40588,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,'Restrictions until 12 noon','2022-04-27','223.178.213.248','Y',4827),(40589,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,'Restrictions until 1pm','2022-04-27','223.178.213.248','Y',4828),(40590,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4829),(40591,'state','massachusetts','us','Americas','Massachusetts',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4830),(40592,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4831),(40593,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4832),(40594,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4833),(40595,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4834),(40596,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4835),(40597,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4836),(40598,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-11-05','General Election Day',NULL,'','GENERAL-ELECTION-DAY','/election-day/','/election-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4837),(40599,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4838),(40600,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4839),(40601,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-11-29','Day After Thanksgiving',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4840),(40602,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4841),(40603,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4842),(40604,'state','michigan','us','Americas','Michigan',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4843),(40605,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4844),(40606,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4845),(40607,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4846),(40608,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4848),(40609,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4849),(40610,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4850),(40611,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4851),(40612,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4852),(40613,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4853),(40614,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-11-29','Thanksgiving Friday',0,'N','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',4854),(40615,'state','minnesota','us','Americas','Minnesota',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4855),(40616,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6182),(40617,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6183),(40618,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-01-15','Robert E. Lee\'s Birthday',NULL,'','ROBERT-E-LEES-BIRTHDAY',NULL,'/robert-e-lee-birthday/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',6561),(40619,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-02-19','Washington\'s Birthday',NULL,'','WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6184),(40620,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-04-29','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'','RH','Y','',NULL,'The last Monday of April','2022-04-27','223.178.213.248','Y',6185),(40621,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6186),(40622,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6188),(40623,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6189),(40624,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6190),(40625,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6191),(40626,'state','mississippi','us','Americas','Mississippi',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6192),(40627,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4856),(40628,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4857),(40629,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-02-12','Lincoln Day',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4858),(40630,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-02-19','Washington \'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4859),(40631,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-05-08','Truman Day',NULL,'','TRUMAN-DAY','/truman-day/','/truman-day/',0,'Y','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4860),(40632,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4861),(40633,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4862),(40634,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4863),(40635,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4864),(40636,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4865),(40637,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4866),(40638,'state','missouri','us','Americas','Missouri',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4867),(40639,'state','montana','us','Americas','Montana',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4869),(40640,'state','montana','us','Americas','Montana',NULL,'2024','2024-01-15','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4870),(40641,'state','montana','us','Americas','Montana',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4871),(40642,'state','montana','us','Americas','Montana',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4872),(40643,'state','montana','us','Americas','Montana',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4873),(40644,'state','montana','us','Americas','Montana',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4874),(40645,'state','montana','us','Americas','Montana',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4875),(40646,'state','montana','us','Americas','Montana',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4877),(40647,'state','montana','us','Americas','Montana',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4878),(40648,'state','montana','us','Americas','Montana',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4879),(40649,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4880),(40650,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4881),(40651,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4882),(40652,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-04-26','Arbor Day',NULL,'','ARBOR-DAY','/arbor-day/','/arbor-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4883),(40653,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4884),(40654,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4885),(40655,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4886),(40656,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4887),(40657,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4888),(40658,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4889),(40659,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-11-29','Day After Thanksgiving',0,'N','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',4890),(40660,'state','nebraska','us','Americas','Nebraska',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4891),(40661,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4892),(40662,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4893),(40663,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4894),(40664,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4895),(40665,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4896),(40666,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4897),(40667,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-10-25','Nevada Day',NULL,'','NEVADA-DAY','/nevada-day/','/nevada-day/',0,'','RH','Y','',NULL,'Last Friday in October','2022-04-27','223.178.213.248','Y',4898),(40668,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4899),(40669,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4900),(40670,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-11-29','Family Day',NULL,'','FAMILY-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'Friday following the Fourth Thursday in November.','2022-04-27','223.178.213.248','Y',4901),(40671,'state','nevada','us','Americas','Nevada',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4902),(40672,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4903),(40673,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-01-15','Martin Luther King Jr./ Civil Rights Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4904),(40674,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4905),(40675,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4906),(40676,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4907),(40677,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4908),(40678,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4909),(40679,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4910),(40680,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-11-29','Day After Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4911),(40681,'state','new-hampshire','us','Americas','New Hampshire',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4912),(40682,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-11-10','Veterans Day Holiday',0,'Y','VETERANS-DAY-HOLIDAY','/veterans-day/','/veterans-day/',0,'','OB','Y','veterans-day.jpg',NULL,'','2022-04-27','223.178.213.248','N',13931),(40683,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6166),(40684,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-01-15','Martin Luther King, Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6167),(40685,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-02-19','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6169),(40686,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6170),(40687,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6171),(40688,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6568),(40689,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6173),(40690,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6174),(40691,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-11-05','Election Day',NULL,'','ELECTION-DAY','/election-day/','/election-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',6175),(40692,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6176),(40693,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6177),(40694,'state','new-jersey','us','Americas','New Jersey',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6180),(40695,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6216),(40696,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6217),(40697,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6570),(40698,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6218),(40699,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6219),(40700,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6220),(40701,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-10-14','Indigenous Peoples\' Day',NULL,'','INDIGENOUS-PEOPLE-DAY',NULL,'/indigenous-peoples-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6221),(40702,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-11-11','Veterans\' Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6222),(40703,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6223),(40704,'state','new-mexico','us','Americas','New Mexico',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6225),(40705,'state','new-york','us','Americas','New York',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4913),(40706,'state','new-york','us','Americas','New York',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH',NULL,'martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4914),(40707,'state','new-york','us','Americas','New York',NULL,'2024','2024-02-12','Lincoln\'s Birthday',NULL,'','LINCOLNS-BIRTHDAY','/lincolns-birthday/','/lincolns-birthday/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4915),(40708,'state','new-york','us','Americas','New York',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4917),(40709,'state','new-york','us','Americas','New York',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4918),(40710,'state','new-york','us','Americas','New York',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH',NULL,'us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4919),(40711,'state','new-york','us','Americas','New York',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH',NULL,'us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4920),(40712,'state','new-york','us','Americas','New York',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4922),(40713,'state','new-york','us','Americas','New York',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4923),(40714,'state','new-york','us','Americas','New York',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4924),(40715,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6102),(40716,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-01-15','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6103),(40717,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6104),(40718,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6105),(40719,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6571),(40720,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6107),(40721,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6108),(40722,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6109),(40723,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-11-29','Thanksgiving Friday',NULL,'','THANKSGIVING-FRIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6110),(40724,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6111),(40725,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6112),(40726,'state','north-carolina','us','Americas','North Carolina',NULL,'2024','2024-12-26','Christmas Holiday',NULL,'','CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'','OB','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6572),(40727,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4936),(40728,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-01-15','Martin Luther King Jr Day',0,'N','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,'','2022-04-27','223.178.213.248','Y',4937),(40729,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4938),(40730,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4939),(40731,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4940),(40732,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4941),(40733,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4942),(40734,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4943),(40735,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4944),(40736,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,'Office will close at noon','2022-04-27','223.178.213.248','Y',4945),(40737,'state','north-dakota','us','Americas','North Dakota',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4946),(40738,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6113),(40739,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6114),(40740,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6115),(40741,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6116),(40742,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6574),(40743,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6118),(40744,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6119),(40745,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6120),(40746,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-11-28','Thanksgiving',0,'N','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',6121),(40747,'state','ohio','us','Americas','Ohio',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6122),(40748,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4947),(40749,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-01-15','Martin Luther King Jr.Day',0,'N','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,'','2022-04-27','223.178.213.248','Y',4948),(40750,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4949),(40751,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4950),(40752,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4951),(40753,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4952),(40754,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4953),(40755,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4954),(40756,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-11-29','Thanksgiving Holiday',NULL,'','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4955),(40757,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-12-24','Christmas Eve',0,'N','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,'','2022-04-27','223.178.213.248','Y',4956),(40758,'state','oklahoma','us','Americas','Oklahoma',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4957),(40759,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4958),(40760,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-01-15','Martin Luther King Jr.Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4959),(40761,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6575),(40762,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4960),(40763,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4961),(40764,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4962),(40765,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4963),(40766,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4964),(40767,'state','oregon','us','Americas','Oregon',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4966),(40768,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6123),(40769,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-01-15','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6124),(40770,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6125),(40771,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6126),(40772,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6127),(40773,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6128),(40774,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6129),(40775,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6130),(40776,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6131),(40777,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-11-29','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6132),(40778,'state','pennsylvania','us','Americas','Pennsylvania',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6133),(40779,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-12-26','Christmas Holiday',0,'Y','CHRISTMAS-HOLIDAY','/christmas/','/christmas/',0,'','RH','Y','christmas.jpg',NULL,'','2022-04-27','223.178.213.248','N',12352),(40780,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4967),(40781,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-01-15','Dr.Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4968),(40782,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4969),(40783,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4970),(40784,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-08-12','Victory Day',NULL,'','VICTORY-DAY','/victory-day/','/victory-day/',0,'','RH','Y','',NULL,'Second Monday in August','2022-04-27','223.178.213.248','Y',4971),(40785,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4972),(40786,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4973),(40787,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4975),(40788,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4976),(40789,'state','rhode-island','us','Americas','Rhode Island',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4977),(40790,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6226),(40791,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-01-15','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6227),(40792,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-02-19','Presidents Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6578),(40793,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-05-10','Confederate Memorial Day',NULL,'','CONFEDERATE-MEMORIAL-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'Y','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',6229),(40794,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-05-27','National Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6579),(40795,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6231),(40796,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6232),(40797,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6233),(40798,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-11-29','Day after Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6234),(40799,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6236),(40800,'state','south-carolina','us','Americas','South Carolina',NULL,'2024','2024-12-26','Day after Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6235),(40801,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4978),(40802,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4979),(40803,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4980),(40804,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4981),(40805,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4982),(40806,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4983),(40807,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-10-14','Native Americans Day',NULL,'','NATIVE-AMERICANS-DAY','/native-americans-day/','/native-americans-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',4984),(40808,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4985),(40809,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4986),(40810,'state','south-dakota','us','Americas','South Dakota',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4987),(40811,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',4999),(40812,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-01-15','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5000),(40813,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5001),(40814,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RH','Y','good-friday.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5002),(40815,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5003),(40816,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12354),(40817,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5005),(40818,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5006),(40819,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-11-29','Thanksgiving Holiday',0,'N','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',5008),(40820,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5007),(40821,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5009),(40822,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5010),(40823,'state','tennessee','us','Americas','Tennessee',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5011),(40824,'state','texas','us','Americas','Texas',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5091),(40825,'state','texas','us','Americas','Texas',NULL,'2024','2024-01-15','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5092),(40826,'state','texas','us','Americas','Texas',NULL,'2024','2024-01-19','Confederate Heroes\' Day',NULL,'','CONFEDERATE-HEROES-DAY','/confederate-memorial-day/','/confederate-memorial-day/',0,'Y','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',6581),(40827,'state','texas','us','Americas','Texas',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5093),(40828,'state','texas','us','Americas','Texas',NULL,'2024','2024-03-02','Texas Independence Day',NULL,'','TEXAS-INDEPENDENCE-DAY',NULL,'/texas-independence-day/',0,'Y','RH','Y','',NULL,'Skeleton Crew Required','2022-04-27','223.178.213.248','Y',6584),(40829,'state','texas','us','Americas','Texas',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','OH','Y','good-friday.jpg',NULL,'Optional Holiday','2022-04-27','223.178.213.248','Y',6583),(40830,'state','texas','us','Americas','Texas',NULL,'2024','2024-03-31','Cesar Chavez Day',NULL,'','CESAR-CHAVEZ-DAY','/cesar-chavez-day/','/cesar-chavez-day/',0,'Y','OH','Y','',NULL,'Optional Holiday','2022-04-27','223.178.213.248','Y',6582),(40831,'state','texas','us','Americas','Texas',NULL,'2024','2024-04-21','San Jacinto Day',NULL,'','SAN-JACINTO-DAY',NULL,'/san-jacinto-day/',0,'','RH','Y','',NULL,'Skeleton Crew Required','2022-04-27','223.178.213.248','Y',6585),(40832,'state','texas','us','Americas','Texas',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5094),(40833,'state','texas','us','Americas','Texas',NULL,'2024','2024-06-19','Emancipation Day',NULL,'','EMANCIPATION-DAY','/emancipation-day/','/emancipation-day/',0,'','RH','Y','',NULL,'Skeleton Crew Required','2022-04-27','223.178.213.248','Y',6586),(40834,'state','texas','us','Americas','Texas',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5095),(40835,'state','texas','us','Americas','Texas',NULL,'2024','2024-08-27','LBJ\'s Birthday',NULL,'','LBJS-BIRTHDAY',NULL,'/lyndon-b-johnson-day/',0,'','RH','Y','',NULL,'Skeleton Crew Required','2022-04-27','223.178.213.248','Y',6587),(40836,'state','texas','us','Americas','Texas',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5096),(40837,'state','texas','us','Americas','Texas',NULL,'2024','2024-10-04','Rosh Hashanah',NULL,NULL,'ROSH-HASHANAH','/rosh-hashanah/','/rosh-hashanah/',0,'','OH','Y',NULL,NULL,'Optional Holiday','2022-04-27','223.178.213.248','Y',6589),(40838,'state','texas','us','Americas','Texas',NULL,'2024','2024-10-12','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','OH','Y',NULL,NULL,'Optional Holiday','2022-04-27','223.178.213.248','Y',6588),(40839,'state','texas','us','Americas','Texas',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5097),(40840,'state','texas','us','Americas','Texas',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5098),(40841,'state','texas','us','Americas','Texas',NULL,'2024','2024-11-29','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5099),(40842,'state','texas','us','Americas','Texas',NULL,'2024','2024-12-24','Christmas Eve Day',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6100),(40843,'state','texas','us','Americas','Texas',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6101),(40844,'state','texas','us','Americas','Texas',NULL,'2024','2024-12-26','Day After Christmas',NULL,'','DAY-AFTER-CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6590),(40845,'state','utah','us','Americas','Utah',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5012),(40846,'state','utah','us','Americas','Utah',NULL,'2024','2024-01-15','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5013),(40847,'state','utah','us','Americas','Utah',NULL,'2024','2024-02-19','Washington & Lincoln Day',NULL,'','WASHINGTON-LINCOLN-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5014),(40848,'state','utah','us','Americas','Utah',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5015),(40849,'state','utah','us','Americas','Utah',NULL,'2024','2024-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12355),(40850,'state','utah','us','Americas','Utah',NULL,'2024','2024-07-24','Pioneer Day',NULL,'','PIONEER-DAY','/pioneer-day/','/pioneer-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',5017),(40851,'state','utah','us','Americas','Utah',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5018),(40852,'state','utah','us','Americas','Utah',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6591),(40853,'state','utah','us','Americas','Utah',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5019),(40854,'state','utah','us','Americas','Utah',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5020),(40855,'state','utah','us','Americas','Utah',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5023),(40856,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5080),(40857,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5081),(40858,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5082),(40859,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-03-05','Town Meeting Day',NULL,'','TOWN-MEETING-DAY','/town-meeting-day/','/town-meeting-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',5083),(40860,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5084),(40861,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12357),(40862,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-08-16','Bennington Battle Day',NULL,'','BENNINGTON-BATTLE-DAY','/bennington-battle-day/','/bennington-battle-day/',0,'Y','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',5086),(40863,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5087),(40864,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5088),(40865,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5089),(40866,'state','vermont','us','Americas','Vermont',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5090),(40867,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5068),(40868,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-01-12','Lee-Jackson Day',NULL,'','LEE-JACKSON-DAY','/lee-jackson-day/','/lee-jackson-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',5069),(40869,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-01-15','Martin Luther King, Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5070),(40870,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-02-19','George Washington Day',NULL,'','GEORGE-WASHINGTON-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5071),(40871,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5072),(40872,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12359),(40873,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5074),(40874,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-10-14','Columbus Day & Yorktown Victory Day',NULL,'','COLUMBUS-DAY-YORKTOWN','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5075),(40875,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5076),(40876,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-11-27','Thanksgiving Eve',NULL,'','THANKSGIVING-EVE','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','H','thanksgiving-day.jpg',NULL,'4 hours additional holiday time','2022-04-27','223.178.213.248','Y',5077),(40877,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6592),(40878,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-11-29','Day After Thanksgiving',NULL,'','DAY-AFTER-THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5078),(40879,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,'8 hours additional holiday time','2022-04-27','223.178.213.248','Y',5079),(40880,'state','virginia','us','Americas','Virginia',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',6593),(40881,'state','washington','us','Americas','Washington',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5033),(40882,'state','washington','us','Americas','Washington',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5034),(40883,'state','washington','us','Americas','Washington',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5035),(40884,'state','washington','us','Americas','Washington',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5036),(40885,'state','washington','us','Americas','Washington',NULL,'2024','2024-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12360),(40886,'state','washington','us','Americas','Washington',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5038),(40887,'state','washington','us','Americas','Washington',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5039),(40888,'state','washington','us','Americas','Washington',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5040),(40889,'state','washington','us','Americas','Washington',NULL,'2024','2024-11-29','Native American Heritage Day',NULL,'','AMERICAN-HERITAGE-DAY',NULL,'/native-americans-heritage-day/',0,'','RH','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',5041),(40890,'state','washington','us','Americas','Washington',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5042),(40891,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5052),(40892,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5053),(40893,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5054),(40894,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5056),(40895,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-06-20','West Virginia Day (observed)',NULL,'','WEST-VIRGINIA-DAY',NULL,'/west-virginia-day/',0,'','OB','Y','',NULL,NULL,'2022-04-27','223.178.213.248','Y',5057),(40896,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-07-04','Independence Day',NULL,NULL,'INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','OB','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12361),(40897,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5059),(40898,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5060),(40899,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5062),(40900,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5063),(40901,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-11-29','Day after Thanksgiving',0,'N','THANKSGIVING-HOLIDAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,'','2022-04-27','223.178.213.248','Y',5064),(40902,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','H','christmas.jpg',NULL,'(1/2 day)','2022-04-27','223.178.213.248','Y',5065),(40903,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5066),(40904,'state','west-virginia','us','Americas','West Virginia',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','H','new-years-day.jpg',NULL,'(1/2 day)','2022-04-27','223.178.213.248','Y',5067),(40905,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5024),(40906,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-01-15','Martin Luther King Jr.\'s Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5025),(40907,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5026),(40908,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5027),(40909,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5028),(40910,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-10-14','Columbus Day',NULL,NULL,'COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,NULL,'RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12362),(40911,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,NULL,'VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',12363),(40912,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5029),(40913,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5030),(40914,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5031),(40915,'state','wisconsin','us','Americas','Wisconsin',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5032),(40916,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5043),(40917,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-01-15','Martin Luther King, Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5044),(40918,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5045),(40919,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5046),(40920,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5047),(40921,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5048),(40922,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5049),(40923,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5050),(40924,'state','wyoming','us','Americas','Wyoming',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-04-27','223.178.213.248','Y',5051),(41075,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2833),(41076,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2834),(41077,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2835),(41078,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2836),(41079,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2842),(41080,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2837),(41081,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2838),(41082,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2839),(41083,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2840),(41084,'bank-org','bank-of-america','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2841),(41124,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2877),(41125,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2878),(41126,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2879),(41127,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2880),(41128,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2881),(41129,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2882),(41130,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2883),(41131,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2884),(41132,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2885),(41133,'bank-org','capital-one-bank','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2886),(41134,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2843),(41135,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2844),(41136,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2845),(41137,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2846),(41138,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2847),(41139,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-09-04','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2848),(41140,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','OB','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2849),(41141,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2850),(41142,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2851),(41143,'bank-org','chase-bank','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2852),(41157,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2853),(41158,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2854),(41159,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2855),(41160,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2856),(41161,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2857),(41162,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2858),(41163,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2859),(41164,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2860),(41165,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2861),(41166,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-12-24','Christmas Eve',NULL,'','CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2864),(41167,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2862),(41168,'bank-org','citibank','us','Americas','United States',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,'','NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2863),(41192,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2897),(41193,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2898),(41194,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2899),(41195,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2900),(41196,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2901),(41197,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2902),(41198,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-10-09','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2903),(41199,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2904),(41200,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2905),(41201,'bank-org','hsbc-bank','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2906),(41325,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2887),(41326,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2888),(41327,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2889),(41328,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2890),(41329,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2891),(41330,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2892),(41331,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2893),(41332,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2894),(41333,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2895),(41334,'bank-org','suntrust-bank','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2896),(41368,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2865),(41369,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2866),(41370,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2867),(41371,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2868),(41372,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2869),(41373,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2870),(41374,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2871),(41375,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2872),(41376,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2873),(41377,'bank-org','wells-fargo-bank','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-04-28','223.178.213.248','Y',2875),(40043,'post','usps','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','PH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6242),(40044,'post','usps','us','Americas','United States',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','PH','Y','us-columbus-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6243),(40042,'post','usps','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','PH','Y','us-flag.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6241),(40041,'post','usps','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','PH','Y','memorial-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6240),(40040,'post','usps','us','Americas','United States',NULL,'2024','2024-02-19','Washington\'s Birthday',NULL,'','WASHINGTONS-DAY','/presidents-day/','/presidents-day/',0,'','PH','Y','presidents-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6239),(40039,'post','usps','us','Americas','United States',NULL,'2024','2024-01-15','Martin Luther King Jr. Birthday',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','PH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6238),(40038,'post','usps','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','PH','Y','new-years-day.jpg',NULL,NULL,'2022-04-27','223.178.212.115','Y',6237),(40037,'post','usps','us','Americas','United States',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','PH','Y','christmas.jpg',NULL,NULL,'2022-04-26','223.178.212.115','Y',6246),(40036,'post','usps','us','Americas','United States',NULL,'2024','2024-11-29','Thanksgiving',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','PH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-26','223.178.212.115','Y',6245),(40035,'post','usps','us','Americas','United States',NULL,'2024','2024-11-11','Veterans Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','PH','Y','veterans-day.jpg',NULL,NULL,'2022-04-26','223.178.212.115','Y',6244),(41402,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'Australian Stock Exchange Ltd, Australia ','2022-04-30','223.178.213.248','Y',2712),(41403,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-01-26','Australia Day OBS',NULL,'','AUSTRALIA-DAY','/australia-day/','/australia-day/',0,'Y','MH','Y','australia-flag.gif',NULL,NULL,'2022-04-30','223.178.213.248','Y',2713),(41404,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2714),(41405,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-04-01','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2715),(41406,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-04-25','Anzac Day',NULL,'','ANZAC-DAY',NULL,'/anzac-day/',0,'Y','MH','Y','anzac-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2716),(41407,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-06-10','King\'s Birthday',0,'','KINGS-BIRTHDAY',NULL,'/kings-birthday/',0,'','MH','Y','kings-birthday.jpg',NULL,'','2022-04-30','223.178.213.248','Y',2717),(41408,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2718),(41409,'market','asx','australia','Asia Pacific','Australia',NULL,'2024','2024-12-26','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','MH','Y','boxing-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2719),(41410,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2477),(41411,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-03-25','Holi',0,'N','HOLI','/holi/','/holi/',0,'','MH','M','holi.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2479),(41412,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-03-08','Maha Shivaratri',0,'N','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','MH','M','maha-shivaratri.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2478),(41413,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-04-17','Ram Navami',0,'N','RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2493),(41414,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-04-21','Mahavir Jayanti',0,'N','MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2480),(41415,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2481),(41416,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-04-14','Dr.Baba Saheb Ambedkar Jayanti',0,'N','AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2484),(41417,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-04-10','Id-ul-Fitr (Ramzan ID)',0,'N','EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2492),(41418,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2482),(41419,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-06-17','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2485),(41420,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2022-04-30','223.178.213.248','Y',2483),(41421,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-07-17','Muharram',0,'N','MUHARRAM','/muharram/','/muharram/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2487),(41422,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-09-07','Ganesh Chaturthi',0,'N','GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2486),(41423,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','MH','Y','mahatma-gandhi.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2488),(41424,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-10-13','Dasara',0,'N','DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2489),(41425,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-11-01','Diwali-Laxmi Pujan**',0,'N','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2022-05-14','223.178.209.83','Y',2490),(41426,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-11-02','Diwali-Balipratipada',0,'N','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2491),(41427,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-11-15','Guru Nanak Jayanti',0,'N','GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2494),(41428,'market','bse','india','Asia Pacific','India',NULL,'2024','2024-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2495),(41429,'market','dax','germany','Europe','Germany',NULL,'2024','2024-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'Frankfurt Stock Exchange Germany','2022-04-30','223.178.213.248','Y',2726),(41430,'market','dax','germany','Europe','Germany',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2727),(41431,'market','dax','germany','Europe','Germany',NULL,'2024','2024-04-01','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2728),(41432,'market','dax','germany','Europe','Germany',NULL,'2024','2024-05-01','Labor Day',NULL,NULL,'LABOR-DAY','/may-day/','/may-day/',0,'Y','MH','Y','may-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2729),(41433,'market','dax','germany','Europe','Germany',NULL,'2024','2024-05-20','Whit Monday',NULL,NULL,'WHIT-MONDAY','/pentecost-monday/','/pentecost-monday/',0,'','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2730),(41434,'market','dax','germany','Europe','Germany',NULL,'2024','2024-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2731),(41435,'market','dax','germany','Europe','Germany',NULL,'2024','2024-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2732),(41436,'market','dax','germany','Europe','Germany',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2734),(41437,'market','euronext','france','Europe','France',NULL,'2024','2024-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2720),(41438,'market','euronext','france','Europe','France',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2721),(41439,'market','euronext','france','Europe','France',NULL,'2024','2024-04-01','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2722),(41440,'market','euronext','france','Europe','France',NULL,'2024','2024-05-01','Labor day',NULL,NULL,'LABOR-DAY','/may-day/','/may-day/',0,'Y','MH','Y','labour-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2723),(41441,'market','euronext','france','Europe','France',NULL,'2024','2024-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2724),(41442,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2022-04-30','223.178.213.248','Y',2735),(41443,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2736),(41444,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-04-01','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','MH','Y','easter.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2737),(41445,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-05-06','Early May Bank Holiday',NULL,NULL,'EARLY-MAY-BANK-HOLIDAY','/early-may-bank-holiday/','/early-may-bank-holiday/',0,'','MH','Y','may-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2738),(41446,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-05-27','Spring Bank Holiday',NULL,NULL,'SPRING-BANK-HOLIDAY','/may-spring-bank-holiday/','/may-spring-bank-holiday/',0,'','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2739),(41447,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-08-26','Summer Bank Holiday',NULL,NULL,'SUMMER-BANK-HOLIDAY','/summer-bank-holiday/','/summer-bank-holiday/',0,'','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2740),(41448,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','MH','E','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2761),(41449,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-12-25','Christmas Day',NULL,NULL,'CHRISTMAS-DAY','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2741),(41450,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-12-26','Boxing Day',NULL,NULL,'BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','MH','Y','boxing-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2742),(41451,'market','lse','uk','Europe','United Kingdom',NULL,'2024','2024-12-31','New Year\'s Eve',NULL,NULL,'NEW-YEARS-EVE','/new-years-day/','/new-years-day/',0,'Y','MH','E','new-years-day.jpg',NULL,'London Stock Exchange, United Kingdom','2022-04-30','223.178.213.248','Y',2762),(41452,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','E','new-years-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2498),(41453,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2499),(41454,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-03-08','Maha Shivaratri',NULL,'','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','MH','M','maha-shivaratri.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2500),(41455,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-03-25','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','MH','M','holi.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2501),(41456,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-04-17','Ram Navami',NULL,NULL,'RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2515),(41457,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-04-21','Mahavir Jayanti',NULL,NULL,'MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','MH','M',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2502),(41458,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2503),(41459,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-04-14','Dr.Baba Saheb Ambedkar Jayanti',NULL,NULL,'AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2516),(41460,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','MH','M',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2504),(41461,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-04-10','Id-ul-Fitr (Ramzan ID)',NULL,NULL,'EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2517),(41462,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-06-17','Bakri Id / Eid ul-Adha',NULL,NULL,'EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','MH','M',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2506),(41463,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-07-17','Muharram',NULL,NULL,'MUHARRAM','/muharram/','/muharram/',0,NULL,'MH','M',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2508),(41464,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2022-04-30','223.178.213.248','Y',2505),(41465,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-09-07','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','MH','M',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2507),(41466,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','MH','Y','mahatma-gandhi.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2509),(41467,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-10-13','Dasara',NULL,NULL,'DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'MH','M',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2510),(41468,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-11-01','Diwali-Laxmi Pujan**',NULL,'','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'','2022-04-30','223.178.213.248','Y',2511),(41469,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-11-02','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2512),(41470,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-11-15','Guru Nanak Jayanti',NULL,NULL,'GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'MH','M',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2513),(41471,'market','mcx','india','Asia Pacific','India',NULL,'2024','2024-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2514),(41472,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'NASDAQ Stock Exchange, United States','2022-04-30','223.178.213.248','Y',2743),(41473,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','MH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2744),(41474,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','MH','Y','presidents-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2745),(41475,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2746),(41476,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','MH','Y','memorial-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2747),(41477,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2748),(41478,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','MH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2749),(41479,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','MH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2750),(41480,'market','nasdaq','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2751),(41481,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-01-26','Republic Day',NULL,NULL,'REPUBLIC-DAY','/republic-day/','/republic-day/',0,'Y','ND','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2454),(41482,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-03-08','Maha Shivaratri',0,'N','MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','MH','M','maha-shivaratri.jpg',NULL,'','2022-05-14','223.178.209.83','Y',2455),(41483,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-03-25','Holi',NULL,'','HOLI','/holi/','/holi/',0,'','MH','Y','holi.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2456),(41484,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-04-17','Ram Navami',0,'N','RAM-NAVAMI','/ram-navami/','/ram-navami/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2474),(41485,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-04-21','Mahavir Jayanti',0,'N','MAHAVIR-JAYANTI','/mahavir-jayanti/','/mahavir-jayanti/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2457),(41486,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2458),(41487,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-04-14','Dr.Baba Saheb Ambedkar Jayanti',0,'N','AMBEDKAR-JAYANTI','/ambedkar-jayanti/','/ambedkar-jayanti/',0,'Y','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2476),(41488,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-05-01','Maharashtra Day',NULL,NULL,'MAHARASHTRA-DIN','/maharashtra-din/','/maharashtra-din/',0,'Y','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2460),(41489,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-04-10','Id-ul-Fitr (Ramzan ID)',0,'N','EID-AL-FITR','/hari-raya-puasa/','/hari-raya-puasa/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2475),(41490,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-06-17','Bakri Id / Eid ul-Adha',0,'N','EID-UL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2463),(41491,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-07-17','Muharram',0,'N','MUHARRAM','/muharram/','/muharram/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2465),(41492,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-08-15','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','india-flag.gif',NULL,NULL,'2022-04-30','223.178.213.248','Y',2461),(41493,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-09-07','Ganesh Chaturthi',0,'N','GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2464),(41494,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-10-02','Mathatma Gandhi Jayanti',NULL,'','GANDHI-JAYANTI','/gandhi-jayanti/','/gandhi-jayanti/',0,'Y','MH','Y','mahatma-gandhi.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2466),(41495,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-10-13','Dasara',0,'N','DUSSEHRA','/dussehra/','/dussehra/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2467),(41496,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-11-01','Diwali-Laxmi Pujan**',0,'N','DIWALI','/diwali/','/diwali/',0,'','MH','M','diwali.jpg',NULL,'**Muhurat Trading will be conducted on Sunday, October 27, 2018. Timings of Muhurat Trading shall be notified subsequently.','2022-05-14','223.178.209.83','Y',2468),(41497,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-11-02','Diwali-Balipratipada',NULL,'','DIWALI','/diwali/','/diwali/',0,'','MH','Y','diwali.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2469),(41498,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-11-15','Guru Nanak Jayanti',0,'N','GURU-NANAKS-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,NULL,'MH','M','',NULL,'','2022-05-14','223.178.209.83','Y',2472),(41499,'market','nse','india','Asia Pacific','India',NULL,'2024','2024-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2473),(41500,'market','nyse','us','Americas','United States',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'New York Stock Exchange, United States','2022-04-30','223.178.213.248','Y',2752),(41501,'market','nyse','us','Americas','United States',NULL,'2024','2024-01-15','M L King Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','MH','Y','martin-luther-king.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2753),(41502,'market','nyse','us','Americas','United States',NULL,'2024','2024-02-19','Presidents\' Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','MH','Y','presidents-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2754),(41503,'market','nyse','us','Americas','United States',NULL,'2024','2024-03-29','Good Friday',NULL,'','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2755),(41504,'market','nyse','us','Americas','United States',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','MH','Y','memorial-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2756),(41505,'market','nyse','us','Americas','United States',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2757),(41506,'market','nyse','us','Americas','United States',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','MH','Y','us-labor-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2758),(41507,'market','nyse','us','Americas','United States',NULL,'2024','2024-11-28','Thanksgiving',NULL,'','THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','MH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2759),(41508,'market','nyse','us','Americas','United States',NULL,'2024','2024-12-25','Christmas',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2760),(41509,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-01-01','New Year\'s Day',NULL,NULL,'NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','MH','Y','new-years-day.jpg',NULL,'Toronto Stock Exchange, Canada','2022-04-30','223.178.213.248','Y',2763),(41510,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-02-12','Family Day',NULL,NULL,'FAMILY-DAY','/family-day/','/family-day/',0,'','MH','Y','family-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2764),(41511,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-03-29','Good Friday',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','MH','Y','good-friday.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2765),(41512,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-05-20','Victoria/Patriots\' Day',NULL,'','VICTORIA-DAY','/victoria-day/','/victoria-day/',0,'','MH','Y','victoria-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2766),(41513,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-07-01','Canada Day',NULL,'','CANADA-DAY','/canada-day/','/canada-day/',0,'Y','ND','Y','canada-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2767),(41514,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-08-05','Civic Holiday',NULL,'','CIVIC-HOLIDAY','/provincial-day/','/provincial-day/',0,'','MH','Y','provincial-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2768),(41515,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-09-02','Labour Day',NULL,NULL,'LABOR-DAY','/labor-day/','/labor-day/',0,'','MH','Y','labour-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2769),(41516,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-10-14','Thanksgiving',NULL,NULL,'THANKSGIVING','/thanksgiving-day/','/thanksgiving-day/',0,'','MH','Y',NULL,NULL,NULL,'2022-04-30','223.178.213.248','Y',2770),(41517,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','MH','Y','christmas.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2771),(41518,'market','tsx','canada','Americas','Canada',NULL,'2024','2024-12-26','Boxing Day',NULL,'','BOXING-DAY','/boxing-day/','/boxing-day/',0,'Y','MH','Y','boxing-day.jpg',NULL,NULL,'2022-04-30','223.178.213.248','Y',2772),(45624,'state','montana','us','Americas','Montana',NULL,'2024','2024-01-01','New Year\'s Day',NULL,'','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','RH','Y','new-years-day.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4869),(45625,'state','montana','us','Americas','Montana',NULL,'2024','2024-01-15','Martin Luther King Jr. Day',NULL,'','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','RH','Y','martin-luther-king.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4870),(45626,'state','montana','us','Americas','Montana',NULL,'2024','2024-02-19','President\'s Day',NULL,'','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','RH','Y','presidents-day.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4871),(45627,'state','montana','us','Americas','Montana',NULL,'2024','2024-05-27','Memorial Day',NULL,'','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','RH','Y','memorial-day.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4872),(45628,'state','montana','us','Americas','Montana',NULL,'2024','2024-07-04','Independence Day',NULL,'','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','RH','Y','us-flag.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4873),(45629,'state','montana','us','Americas','Montana',NULL,'2024','2024-09-02','Labor Day',NULL,'','LABOR-DAY','/labor-day/','/labor-day/',0,'','RH','Y','us-labor-day.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4874),(45630,'state','montana','us','Americas','Montana',NULL,'2024','2024-10-14','Columbus Day',NULL,'','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','RH','Y','us-columbus-day.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4875),(45631,'state','montana','us','Americas','Montana',NULL,'2024','2024-11-11','Veteran\'s Day',NULL,'','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','RH','Y','veterans-day.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4877),(45632,'state','montana','us','Americas','Montana',NULL,'2024','2024-11-28','Thanksgiving Day',NULL,'','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','RH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4878),(45633,'state','montana','us','Americas','Montana',NULL,'2024','2024-12-25','Christmas Day',NULL,'','CHRISTMAS','/christmas/','/christmas/',0,'Y','RH','Y','christmas.jpg',NULL,NULL,'2022-09-07','49.207.215.61','Y',4879),(46806,'country','us','us','Americas','United States',NULL,'2025','2025-06-19','Juneteenth',1,'','JUNETEENTH',NULL,'/juneteenth/',0,'Y','NH','Y','juneteenth.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14419),(46807,'country','us','us','Americas','United States',NULL,'2025','2025-12-09','National Pastry Day',1,'X','NATIONAL-PASTRY-DAY',NULL,'/national-pastry-day/',0,'Y','CD','N','national-pastry-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14417),(46808,'country','us','us','Americas','United States',NULL,'2025','2025-12-06','Candle Day',1,'X','CANDLE-DAY','/candle-day/','/candle-day/',0,'','CD','N','candle-day.jpg',NULL,'First Saturday of December','2022-12-17','171.76.86.247','Y',14416),(46809,'country','us','us','Americas','United States',NULL,'2025','2025-03-09','Daylight savings',1,'X','DAYLIGHT-SAVINGS',NULL,'/daylight-savings/',0,'','CD','N','daylight-savings.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14413),(46810,'country','us','us','Americas','United States',NULL,'2025','2025-11-28','Black Friday',1,'X','BLACK-FRIDAY','/black-friday/','/black-friday/',0,'','CD','N','black-friday.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14414),(46811,'country','us','us','Americas','United States',NULL,'2025','2025-12-01','Cyber Monday',1,'X','CYBER-MONDAY','/cyber-monday/','/cyber-monday/',0,'','CD','N','cyber-monday.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14415),(46812,'country','us','us','Americas','United States',NULL,'2025','2025-10-09','Leif Erikson Day',1,'X','LEIF-ERIKSON-DAY',NULL,'/leif-erikson-day/',0,'Y','CD','N','leif-erikson-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14410),(46813,'country','us','us','Americas','United States',NULL,'2025','2025-10-29','National Cat Day',1,'X','NATIONAL-CAT-DAY',NULL,'/national-cat-day/',0,'Y','CD','N','national-cat-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14411),(46814,'country','us','us','Americas','United States',NULL,'2025','2025-11-03','National Sandwich Day ',1,'X','NATIONAL-SANDWICH-DAY',NULL,'/national-sandwich-day/',0,'Y','CD','N','national-sandwich-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14412),(46815,'country','us','us','Americas','United States',NULL,'2025','2025-09-18','National Cheeseburger Day',1,'X','NATIONAL-CHEESEBURGER-DAY',NULL,'/national-cheeseburger-day/',0,'Y','CD','N','national-cheeseburger-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14406),(46816,'country','us','us','Americas','United States',NULL,'2025','2025-10-03','National Boyfriends Day',1,'X','NATIONAL-BOYFRIENDS-DAY',NULL,'/national-boyfriends-day/',0,'Y','CD','N','national-boyfriends-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14407),(46817,'country','us','us','Americas','United States',NULL,'2025','2025-10-04','National Vodka Day',1,'X','NATIONAL-VODKA-DAY',NULL,'/national-vodka-day/',0,'Y','CD','N','national-vodka-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14409),(46818,'country','us','us','Americas','United States',NULL,'2025','2025-10-04','National Taco Day',1,'X','NATIONAL-TACO-DAY',NULL,'/national-taco-day/',0,'Y','CD','N','national-taco-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14408),(46819,'country','us','us','Americas','United States',NULL,'2025','2025-08-03','National Sister Day',1,'X','NATIONAL-SISTER-DAY',NULL,'/national-sister-day/',0,'','CD','N','national-sister-day.jpg',NULL,'First Sunday of August','2022-12-17','171.76.86.247','Y',14405),(46820,'country','us','us','Americas','United States',NULL,'2025','2025-07-16','National Hot Dog Day',1,'X','NATIONAL-HOT-DOG-DAY',NULL,'/national-hot-dog-day/',0,'','CD','N','national-hot-dog-day.jpg',NULL,'Third Wednesday of July','2022-12-17','171.76.86.247','Y',14402),(46821,'country','us','us','Americas','United States',NULL,'2025','2025-07-29','National Chicken Wing Day',1,'X','NATIONAL-CHICKEN-WING-DAY',NULL,'/national-chicken-wing-day/',0,'Y','CD','N','national-chicken-wing-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14404),(46822,'country','us','us','Americas','United States',NULL,'2025','2025-07-24','National Tequila Day',1,'X','NATIONAL-TEQUILA-DAY',NULL,'/national-tequila-day/',0,'Y','CD','N','national-tequila-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14403),(46823,'country','us','us','Americas','United States',NULL,'2025','2025-07-14','National Nude Day',1,'X','NATIONAL-NUDE-DAY',NULL,'/national-nude-day/',0,'Y','CD','N','national-nude-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14401),(46824,'country','us','us','Americas','United States',NULL,'2025','2025-07-23','Amazon Prime Day',1,'X','AMAZON-PRIME-DAY',NULL,'/amazon-prime-day/',0,'','CD','N','amazon-prime-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14400),(46825,'country','us','us','Americas','United States',NULL,'2025','2025-07-13','National French Fry Day',1,'X','NATIONAL-FRENCH-FRY-DAY',NULL,'/national-french-fry-day/',0,'Y','CD','N','national-french-fries-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14399),(46826,'country','us','us','Americas','United States',NULL,'2025','2025-06-08','National Best Friends Day',1,'X','NATIONAL-BEST-FRIENDS-DAY',NULL,'/national-best-friends-day/',0,'Y','CD','N','national-best-friends-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14398),(46827,'country','us','us','Americas','United States',NULL,'2025','2025-05-25','National Towel Day',1,'X','NATIONAL-TOWEL-DAY',NULL,'/national-towel-day/',0,'Y','CD','N','national-towel-day.jpg',NULL,'','2022-12-17','171.76.86.247','Y',14397),(46828,'country','us','us','Americas','United States',NULL,'2025','2025-03-20','National Proposal Day',1,'X','NATIONAL-PROPOSAL-DAY',NULL,'/national-proposal-day/',0,'','CD','N','national-proposal-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14394),(46829,'country','us','us','Americas','United States',NULL,'2025','2025-04-02','National Walking Day',1,'X','NATIONAL-WALKING-DAY',NULL,'/national-walking-day/',0,'','CD','N','national-walking-day.jpg',NULL,'Every First Wednesday of March','2022-12-17','171.76.86.247','Y',14396),(46830,'country','us','us','Americas','United States',NULL,'2025','2025-03-30','National Doctor Day',1,'X','NATIONAL-DOCTOR-DAY',NULL,'/national-doctor-day/',0,'Y','CD','N','national-doctor-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14395),(46831,'country','us','us','Americas','United States',NULL,'2025','2025-03-07','National Cereal Day',1,'X','NATIONAL-CEREAL-DAY',NULL,'/national-cereal-day/',0,'Y','CD','N','national-cereal-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14393),(46832,'country','us','us','Americas','United States',NULL,'2025','2025-03-07','National Employee Appreciation Day',1,'X','NATIONAL-EMPLOYEE-APPRECIATION-DAY',NULL,'/national-employee-appreciation-day/',0,'','CD','N','national-employee-appreciation-day.jpg',NULL,'Every First Friday of March','2022-12-17','171.76.86.247','Y',14392),(46833,'country','us','us','Americas','United States',NULL,'2025','2025-02-13','Galentine\'s Day',1,'X','GALENTINES-DAY',NULL,'/galentines-day/',0,'Y','CD','N','galentines-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14390),(46834,'country','us','us','Americas','United States',NULL,'2025','2025-02-05','National Signing Day',1,'X','NATIONAL-SIGNING-DAY',NULL,'/national-signing-day/',0,'','CD','N','national-signing-day.jpg',NULL,'Every First Wednesday of February','2022-12-17','171.76.86.247','Y',14387),(46835,'country','us','us','Americas','United States',NULL,'2025','2025-02-18','National Drink Wine Day',1,'X','NATIONAL-DRINK-WINE-DAY',NULL,'/national-drink-wine-day/',0,'Y','CD','N','national-drink-wine-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14391),(46836,'country','us','us','Americas','United States',NULL,'2025','2025-02-15','National Bagel Day',1,'X','NATIONAL-BAGEL-DAY',NULL,'/national-bagel-day/',0,'Y','CD','N','national-bagel-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14389),(46837,'country','us','us','Americas','United States',NULL,'2025','2025-02-02','Groundhog Day',1,'X','GROUNDHOG-DAY',NULL,'/groundhog-day/',0,'Y','CD','N','groundhog-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14388),(46838,'country','us','us','Americas','United States',NULL,'2025','2025-01-19','National Popcorn Day',1,'X','NATIONAL-POPCORN-DAY',NULL,'/national-popcorn-day/',0,'Y','CD','N','national-popcorn-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14385),(46839,'country','us','us','Americas','United States',NULL,'2025','2025-01-12','National Pharmacists Day',1,'X','NATIONAL-PHARMACISTS-DAY',NULL,'/national-pharmacists-day/',0,'Y','CD','N','national-pharmacists-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14384),(46840,'country','us','us','Americas','United States',NULL,'2025','2025-05-25','National Wine Day',1,'X','NATIONAL-WINE-DAY',NULL,'/national-wine-day/',0,'Y','CD','N','national-wine-day.jpg',NULL,'','2022-12-17','171.76.86.247','Y',14383),(46841,'country','us','us','Americas','United States',NULL,'2025','2025-06-21','National Selfie Day',1,'X','NATIONAL-SELFIE-DAY',NULL,'/national-selfie-day/',0,'Y','CD','N','national-selfie-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14379),(46842,'country','us','us','Americas','United States',NULL,'2025','2025-12-19','National Ugly Sweater day',1,'X','NATIONAL-UGLY-SWEATER-DAY',NULL,'/national-ugly-sweater-day/',0,'','CD','N','national-ugly-sweater-day.jpg',NULL,'Every third Friday of December','2022-12-17','171.76.86.247','Y',14380),(46843,'country','us','us','Americas','United States',NULL,'2025','2025-03-14','National Walkout Day',1,'X','NATIONAL-WALKOUT-DAY',NULL,'/national-walkout-day/',0,'','CD','N','national-walkout-day.jpg',NULL,'','2022-12-17','171.76.86.247','Y',14381),(46844,'country','us','us','Americas','United States',NULL,'2025','2025-02-07','National Wear Red Day',1,'X','NATIONAL-WEAR-RED-DAY',NULL,'/national-wear-red-day/',0,'','CD','N','national-wear-red-day.jpg',NULL,'Every First Friday of February','2022-12-17','171.76.86.247','Y',14382),(46845,'country','us','us','Americas','United States',NULL,'2025','2025-03-23','National Puppy Day',1,'X','NATIONAL-PUPPY-DAY',NULL,'/national-puppy-day/',0,'Y','CD','N','national-puppy-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14378),(46846,'country','us','us','Americas','United States',NULL,'2025','2025-05-01','National Day Of Prayer',1,'X','NATIONAL-DAY-OF-PRAYER',NULL,'/national-day-of-prayer/',0,'','CD','N','national-day-of-prayer.jpg',NULL,'first Thursday in May','2022-12-17','171.76.86.247','Y',14377),(46847,'country','us','us','Americas','United States',NULL,'2025','2025-03-14','National Pi Day',1,'X','NATIONAL-Pi-DAY',NULL,'/national-pi-day/',0,'','CD','N','national-pi-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14375),(46848,'country','us','us','Americas','United States',NULL,'2025','2025-02-09','National Pizza Day\r\n',1,'X','NATIONAL-PIZZA-DAY',NULL,'/national-pizza-day/',0,'Y','CD','N','national-pizza-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14376),(46849,'country','us','us','Americas','United States',NULL,'2025','2025-03-04','National Pancake Day',1,'X','NATIONAL-PANCAKE-DAY',NULL,'/national-pancake-day/',0,'','CD','N','national-pancake-day.jpg',NULL,'falls 47 days prior to Easter Sunday','2022-12-17','171.76.86.247','Y',14373),(46850,'country','us','us','Americas','United States',NULL,'2025','2025-04-11','National Pet Day',1,'X','NATIONAL-PET-DAY',NULL,'/national-pet-day/',0,'Y','CD','N','national-pet-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14374),(46851,'country','us','us','Americas','United States',NULL,'2025','2025-03-10','National Napping Day',1,'Y','NATIONAL-NAPPING-DAY',NULL,'/national-napping-day/',0,'','CD','N','national-napping-day.jpg',NULL,'every second monday in march','2022-12-17','49.207.209.255','Y',14372),(46852,'country','us','us','Americas','United States',NULL,'2025','2025-02-22','National Margarita Day',1,'X','NATIONAL-MARGARITA-DAY',NULL,'/national-margarita-day/',0,'Y','CD','N','national-margarita-day.jpg',NULL,'','2022-12-17','171.76.86.247','Y',14371),(46853,'country','us','us','Americas','United States',NULL,'2025','2025-07-20','National Ice Cream Day',1,'X','NATIONAL-ICE-CREAM-DAY',NULL,'/national-ice-cream-day/',0,'','CD','N','national-ice-cream-day.jpg',NULL,'every third Sunday in July','2022-12-17','171.76.86.247','Y',14369),(46854,'country','us','us','Americas','United States',NULL,'2025','2025-06-22','National Kissing Day',1,'X','NATIONAL-KISSING-DAY',NULL,'/national-kissing-day/',0,'Y','CD','N','national-kissing-day.jpg',NULL,'','2022-12-17','171.76.86.247','Y',14370),(46855,'country','us','us','Americas','United States',NULL,'2025','2025-04-12','National Grilled Cheese Day',1,'X','NATIONAL-GRILLED-CHEESE-DAY',NULL,'/national-grilled-cheese-day/',0,'Y','CD','N','national-grilled-cheese-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14368),(46856,'country','us','us','Americas','United States',NULL,'2025','2025-08-01','National Girlfriends Day',1,'X','NATIONAL-GIRLFRIENDS-DAY',NULL,'/national-girlfriends-day/',0,'Y','CD','N','national-girlfriends-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',14367),(46857,'country','us','us','Americas','United States',NULL,'2025','2025-04-07','National Beer Day',1,'X','NATIONAL-BEER-DAY',NULL,'/national-beer-day/',0,'Y','CD','N','national-beer-day.jpg',NULL,'','2022-12-17','171.76.86.247','Y',2952),(46858,'country','us','us','Americas','United States',NULL,'2025','2025-04-03','National Burrito Day',1,'X','NATIONAL-BURRITO-DAY',NULL,'/national-burrito-day/',0,'','CD','N','national-burrito-day.jpg',NULL,'First Thursday of April','2022-12-17','171.76.86.247','Y',2950),(46859,'country','us','us','Americas','United States',NULL,'2025','2025-10-18','Sweetest Day',1,'X','SWEETEST-DAY',NULL,'/sweetest-day/',0,'','CD','N','sweetest-day.jpg',NULL,'Third Saturday of October','2022-12-17','171.76.86.247','Y',2951),(46860,'country','us','us','Americas','United States',NULL,'2025','2025-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',342),(46861,'country','us','us','Americas','United States',NULL,'2025','2025-06-06','National Donut Day',1,'X','NATIONAL-DONUT-DAY','/national-donut-day/','/national-donut-day/',0,'','CD','N','national-donut-day.jpg',NULL,'Celebrated every year on the first Friday of June','2022-12-17','171.76.86.247','Y',2453),(46862,'country','us','us','Americas','United States',NULL,'2025','2025-11-27','Thanksgiving Day',2,'X','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',341),(46863,'country','us','us','Americas','United States',NULL,'2025','2025-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',340),(46864,'country','us','us','Americas','United States',NULL,'2025','2025-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','CD','N','halloween.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',339),(46865,'country','us','us','Americas','United States',NULL,'2025','2025-10-13','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','NH','Y','us-columbus-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',338),(46866,'country','us','us','Americas','United States',NULL,'2025','2025-06-15','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','CD',NULL,'fathers-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',335),(46867,'country','us','us','Americas','United States',NULL,'2025','2025-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',336),(46868,'country','us','us','Americas','United States',NULL,'2025','2025-09-01','Labor Day',1,'X','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',337),(46869,'country','us','us','Americas','United States',NULL,'2025','2025-05-26','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',334),(46870,'country','us','us','Americas','United States',NULL,'2025','2025-05-11','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','CD','','mothers-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',333),(46871,'country','us','us','Americas','United States',NULL,'2025','2025-04-18','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',331),(46872,'country','us','us','Americas','United States',NULL,'2025','2025-04-20','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','OB','Y','easter.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',332),(46873,'country','us','us','Americas','United States',NULL,'2025','2025-02-17','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',330),(46874,'country','us','us','Americas','United States',NULL,'2025','2025-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','CD','N','valentines-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',329),(46875,'country','us','us','Americas','United States',NULL,'2025','2025-01-20','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',328),(46876,'country','us','us','Americas','United States',NULL,'2025','2025-01-01','New Year\'s Day',2,'X','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2022-12-17','171.76.86.247','Y',327),(48260,'country','us','us','Americas','United States',NULL,'2026','2026-12-09','National Pastry Day',1,'X','NATIONAL-PASTRY-DAY',NULL,'/national-pastry-day/',0,'Y','CD','N','national-pastry-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14417),(48261,'country','us','us','Americas','United States',NULL,'2026','2026-12-05','Candle Day',1,'X','CANDLE-DAY','/candle-day/','/candle-day/',0,'','CD','N','candle-day.jpg',NULL,'First Saturday of December','2023-04-26','171.76.86.75','Y',14416),(48262,'country','us','us','Americas','United States',NULL,'2026','2026-11-30','Cyber Monday',1,'X','CYBER-MONDAY','/cyber-monday/','/cyber-monday/',0,'','CD','N','cyber-monday.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14415),(48263,'country','us','us','Americas','United States',NULL,'2026','2026-11-27','Black Friday',1,'X','BLACK-FRIDAY','/black-friday/','/black-friday/',0,'','CD','N','black-friday.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14414),(48264,'country','us','us','Americas','United States',NULL,'2026','2026-03-08','Daylight savings',1,'X','DAYLIGHT-SAVINGS',NULL,'/daylight-savings/',0,'','CD','N','daylight-savings.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14413),(48265,'country','us','us','Americas','United States',NULL,'2026','2026-11-03','National Sandwich Day ',1,'X','NATIONAL-SANDWICH-DAY',NULL,'/national-sandwich-day/',0,'Y','CD','N','national-sandwich-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14412),(48266,'country','us','us','Americas','United States',NULL,'2026','2026-10-29','National Cat Day',1,'X','NATIONAL-CAT-DAY',NULL,'/national-cat-day/',0,'Y','CD','N','national-cat-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14411),(48267,'country','us','us','Americas','United States',NULL,'2026','2026-10-04','National Taco Day',1,'X','NATIONAL-TACO-DAY',NULL,'/national-taco-day/',0,'Y','CD','N','national-taco-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14408),(48268,'country','us','us','Americas','United States',NULL,'2026','2026-10-04','National Vodka Day',1,'X','NATIONAL-VODKA-DAY',NULL,'/national-vodka-day/',0,'Y','CD','N','national-vodka-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14409),(48269,'country','us','us','Americas','United States',NULL,'2026','2026-10-03','National Boyfriends Day',1,'X','NATIONAL-BOYFRIENDS-DAY',NULL,'/national-boyfriends-day/',0,'Y','CD','N','national-boyfriends-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14407),(48270,'country','us','us','Americas','United States',NULL,'2026','2026-10-09','Leif Erikson Day',1,'X','LEIF-ERIKSON-DAY',NULL,'/leif-erikson-day/',0,'Y','CD','N','leif-erikson-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14410),(48271,'country','us','us','Americas','United States',NULL,'2026','2026-07-29','National Chicken Wing Day',1,'X','NATIONAL-CHICKEN-WING-DAY',NULL,'/national-chicken-wing-day/',0,'Y','CD','N','national-chicken-wing-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14404),(48272,'country','us','us','Americas','United States',NULL,'2026','2026-08-02','National Sister Day',1,'X','NATIONAL-SISTER-DAY',NULL,'/national-sister-day/',0,'','CD','N','national-sister-day.jpg',NULL,'First Sunday of August','2023-04-26','171.76.86.75','Y',14405),(48273,'country','us','us','Americas','United States',NULL,'2026','2026-09-18','National Cheeseburger Day',1,'X','NATIONAL-CHEESEBURGER-DAY',NULL,'/national-cheeseburger-day/',0,'Y','CD','N','national-cheeseburger-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14406),(48274,'country','us','us','Americas','United States',NULL,'2026','2026-07-24','National Tequila Day',1,'X','NATIONAL-TEQUILA-DAY',NULL,'/national-tequila-day/',0,'Y','CD','N','national-tequila-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14403),(48275,'country','us','us','Americas','United States',NULL,'2026','2026-07-15','National Hot Dog Day',1,'X','NATIONAL-HOT-DOG-DAY',NULL,'/national-hot-dog-day/',0,'','CD','N','national-hot-dog-day.jpg',NULL,'Third Wednesday of July','2023-04-26','171.76.86.75','Y',14402),(48276,'country','us','us','Americas','United States',NULL,'2026','2026-07-14','National Nude Day',1,'X','NATIONAL-NUDE-DAY',NULL,'/national-nude-day/',0,'Y','CD','N','national-nude-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14401),(48277,'country','us','us','Americas','United States',NULL,'2026','2026-07-13','National French Fry Day',1,'X','NATIONAL-FRENCH-FRY-DAY',NULL,'/national-french-fry-day/',0,'Y','CD','N','national-french-fries-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14399),(48278,'country','us','us','Americas','United States',NULL,'2026','2026-06-08','National Best Friends Day',1,'X','NATIONAL-BEST-FRIENDS-DAY',NULL,'/national-best-friends-day/',0,'Y','CD','N','national-best-friends-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14398),(48279,'country','us','us','Americas','United States',NULL,'2026','2026-04-01','National Walking Day',1,'X','NATIONAL-WALKING-DAY',NULL,'/national-walking-day/',0,'','CD','N','national-walking-day.jpg',NULL,'Every First Wednesday of March','2023-04-26','171.76.86.75','Y',14396),(48280,'country','us','us','Americas','United States',NULL,'2026','2026-05-25','National Towel Day',1,'X','NATIONAL-TOWEL-DAY',NULL,'/national-towel-day/',0,'Y','CD','N','national-towel-day.jpg',NULL,'','2023-04-26','171.76.86.75','Y',14397),(48281,'country','us','us','Americas','United States',NULL,'2026','2026-03-30','National Doctor Day',1,'X','NATIONAL-DOCTOR-DAY',NULL,'/national-doctor-day/',0,'Y','CD','N','national-doctor-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14395),(48282,'country','us','us','Americas','United States',NULL,'2026','2026-03-20','National Proposal Day',1,'X','NATIONAL-PROPOSAL-DAY',NULL,'/national-proposal-day/',0,'','CD','N','national-proposal-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14394),(48283,'country','us','us','Americas','United States',NULL,'2026','2026-03-07','National Cereal Day',1,'X','NATIONAL-CEREAL-DAY',NULL,'/national-cereal-day/',0,'Y','CD','N','national-cereal-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14393),(48284,'country','us','us','Americas','United States',NULL,'2026','2026-02-15','National Bagel Day',1,'X','NATIONAL-BAGEL-DAY',NULL,'/national-bagel-day/',0,'Y','CD','N','national-bagel-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14389),(48285,'country','us','us','Americas','United States',NULL,'2026','2026-02-13','Galentine\'s Day',1,'X','GALENTINES-DAY',NULL,'/galentines-day/',0,'Y','CD','N','galentines-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14390),(48286,'country','us','us','Americas','United States',NULL,'2026','2026-02-18','National Drink Wine Day',1,'X','NATIONAL-DRINK-WINE-DAY',NULL,'/national-drink-wine-day/',0,'Y','CD','N','national-drink-wine-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14391),(48287,'country','us','us','Americas','United States',NULL,'2026','2026-03-06','National Employee Appreciation Day',1,'X','NATIONAL-EMPLOYEE-APPRECIATION-DAY',NULL,'/national-employee-appreciation-day/',0,'','CD','N','national-employee-appreciation-day.jpg',NULL,'Every First Friday of March','2023-04-26','171.76.86.75','Y',14392),(48288,'country','us','us','Americas','United States',NULL,'2026','2026-02-02','Groundhog Day',1,'X','GROUNDHOG-DAY',NULL,'/groundhog-day/',0,'Y','CD','N','groundhog-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14388),(48289,'country','us','us','Americas','United States',NULL,'2026','2026-02-04','National Signing Day',1,'X','NATIONAL-SIGNING-DAY',NULL,'/national-signing-day/',0,'','CD','N','national-signing-day.jpg',NULL,'Every First Wednesday of February','2023-04-26','171.76.86.75','Y',14387),(48290,'country','us','us','Americas','United States',NULL,'2026','2026-01-19','National Popcorn Day',1,'X','NATIONAL-POPCORN-DAY',NULL,'/national-popcorn-day/',0,'Y','CD','N','national-popcorn-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14385),(48291,'country','us','us','Americas','United States',NULL,'2026','2026-01-12','National Pharmacists Day',1,'X','NATIONAL-PHARMACISTS-DAY',NULL,'/national-pharmacists-day/',0,'Y','CD','N','national-pharmacists-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14384),(48292,'country','us','us','Americas','United States',NULL,'2026','2026-05-25','National Wine Day',1,'X','NATIONAL-WINE-DAY',NULL,'/national-wine-day/',0,'Y','CD','N','national-wine-day.jpg',NULL,'','2023-04-26','171.76.86.75','Y',14383),(48293,'country','us','us','Americas','United States',NULL,'2026','2026-02-06','National Wear Red Day',1,'X','NATIONAL-WEAR-RED-DAY',NULL,'/national-wear-red-day/',0,'','CD','N','national-wear-red-day.jpg',NULL,'Every First Friday of February','2023-04-26','171.76.86.75','Y',14382),(48294,'country','us','us','Americas','United States',NULL,'2026','2026-04-20','National Walkout Day',1,'X','NATIONAL-WALKOUT-DAY',NULL,'/national-walkout-day/',0,'','CD','N','national-walkout-day.jpg',NULL,'','2023-04-26','171.76.86.75','Y',14381),(48295,'country','us','us','Americas','United States',NULL,'2026','2026-12-18','National Ugly Sweater day',1,'X','NATIONAL-UGLY-SWEATER-DAY',NULL,'/national-ugly-sweater-day/',0,'','CD','N','national-ugly-sweater-day.jpg',NULL,'Every third Friday of December','2023-04-26','171.76.86.75','Y',14380),(48296,'country','us','us','Americas','United States',NULL,'2026','2026-06-21','National Selfie Day',1,'X','NATIONAL-SELFIE-DAY',NULL,'/national-selfie-day/',0,'Y','CD','N','national-selfie-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14379),(48297,'country','us','us','Americas','United States',NULL,'2026','2026-03-23','National Puppy Day',1,'X','NATIONAL-PUPPY-DAY',NULL,'/national-puppy-day/',0,'Y','CD','N','national-puppy-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14378),(48298,'country','us','us','Americas','United States',NULL,'2026','2026-05-07','National Day Of Prayer',1,'X','NATIONAL-DAY-OF-PRAYER',NULL,'/national-day-of-prayer/',0,'','CD','N','national-day-of-prayer.jpg',NULL,'first Thursday in May','2023-04-26','171.76.86.75','Y',14377),(48299,'country','us','us','Americas','United States',NULL,'2026','2026-03-14','National Pi Day',1,'X','NATIONAL-Pi-DAY',NULL,'/national-pi-day/',0,'','CD','N','national-pi-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14375),(48300,'country','us','us','Americas','United States',NULL,'2026','2026-02-09','National Pizza Day',1,'X','NATIONAL-PIZZA-DAY',NULL,'/national-pizza-day/',0,'Y','CD','N','national-pizza-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14376),(48301,'country','us','us','Americas','United States',NULL,'2026','2026-02-17','National Pancake Day',1,'X','NATIONAL-PANCAKE-DAY',NULL,'/national-pancake-day/',0,'','CD','N','national-pancake-day.jpg',NULL,'falls 47 days prior to Easter Sunday','2023-04-26','171.76.86.75','Y',14373),(48302,'country','us','us','Americas','United States',NULL,'2026','2026-04-11','National Pet Day',1,'X','NATIONAL-PET-DAY',NULL,'/national-pet-day/',0,'Y','CD','N','national-pet-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14374),(48303,'country','us','us','Americas','United States',NULL,'2026','2026-03-09','National Napping Day',1,'X','NATIONAL-NAPPING-DAY',NULL,'/national-napping-day/',0,'','CD','N','national-napping-day.jpg',NULL,'every second monday in march','2023-04-26','171.76.86.75','Y',14372),(48304,'country','us','us','Americas','United States',NULL,'2026','2026-02-22','National Margarita Day',1,'X','NATIONAL-MARGARITA-DAY',NULL,'/national-margarita-day/',0,'Y','CD','N','national-margarita-day.jpg',NULL,'','2023-04-26','171.76.86.75','Y',14371),(48305,'country','us','us','Americas','United States',NULL,'2026','2026-04-12','National Grilled Cheese Day',1,'X','NATIONAL-GRILLED-CHEESE-DAY',NULL,'/national-grilled-cheese-day/',0,'Y','CD','N','national-grilled-cheese-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14368),(48306,'country','us','us','Americas','United States',NULL,'2026','2026-07-19','National Ice Cream Day',1,'X','NATIONAL-ICE-CREAM-DAY',NULL,'/national-ice-cream-day/',0,'','CD','N','national-ice-cream-day.jpg',NULL,'every third Sunday in July','2023-04-26','171.76.86.75','Y',14369),(48307,'country','us','us','Americas','United States',NULL,'2026','2026-06-22','National Kissing Day',1,'X','NATIONAL-KISSING-DAY',NULL,'/national-kissing-day/',0,'Y','CD','N','national-kissing-day.jpg',NULL,'','2023-04-26','171.76.86.75','Y',14370),(48308,'country','us','us','Americas','United States',NULL,'2026','2026-08-01','National Girlfriends Day',1,'X','NATIONAL-GIRLFRIENDS-DAY',NULL,'/national-girlfriends-day/',0,'Y','CD','N','national-girlfriends-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14367),(48309,'country','us','us','Americas','United States',NULL,'2026','2026-04-07','National Beer Day',1,'X','NATIONAL-BEER-DAY',NULL,'/national-beer-day/',0,'Y','CD','N','national-beer-day.jpg',NULL,'','2023-04-26','171.76.86.75','Y',2952),(48310,'country','us','us','Americas','United States',NULL,'2026','2026-12-25','Christmas',2,'X','CHRISTMAS','/christmas/','/christmas/',0,'Y','NH','Y','christmas.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',342),(48311,'country','us','us','Americas','United States',NULL,'2026','2026-06-05','National Donut Day',1,'X','NATIONAL-DONUT-DAY','/national-donut-day/','/national-donut-day/',0,'','CD','N','national-donut-day.jpg',NULL,'Celebrated every year on the first Friday of June','2023-04-26','171.76.86.75','Y',2453),(48312,'country','us','us','Americas','United States',NULL,'2026','2026-04-02','National Burrito Day',1,'X','NATIONAL-BURRITO-DAY',NULL,'/national-burrito-day/',0,'','CD','N','national-burrito-day.jpg',NULL,'First Thursday of April','2023-04-26','171.76.86.75','Y',2950),(48313,'country','us','us','Americas','United States',NULL,'2026','2026-10-17','Sweetest Day',1,'X','SWEETEST-DAY',NULL,'/sweetest-day/',0,'','CD','N','sweetest-day.jpg',NULL,'Third Saturday of October','2023-04-26','171.76.86.75','Y',2951),(48314,'country','us','us','Americas','United States',NULL,'2026','2026-11-26','Thanksgiving Day',2,'X','THANKSGIVING-DAY','/thanksgiving-day/','/thanksgiving-day/',0,'','NH','Y','thanksgiving-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',341),(48315,'country','us','us','Americas','United States',NULL,'2026','2026-11-11','Veterans Day',1,'X','VETERANS-DAY','/veterans-day/','/veterans-day/',0,'Y','NH','Y','veterans-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',340),(48316,'country','us','us','Americas','United States',NULL,'2026','2026-10-31','Halloween',2,'X','HALLOWEEN','/halloween/','/halloween/',0,'Y','CD','N','halloween.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',339),(48317,'country','us','us','Americas','United States',NULL,'2026','2026-07-04','Independence Day',1,'X','INDEPENDENCE-DAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',336),(48318,'country','us','us','Americas','United States',NULL,'2026','2026-07-03','Independence Day Holiday',1,'X','INDEPENDENCE-DAY-HOLIDAY','/independence-day/','/independence-day/',0,'Y','ND','Y','us-flag.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',15715),(48319,'country','us','us','Americas','United States',NULL,'2026','2026-09-07','Labor Day',1,'X','LABOR-DAY','/labor-day/','/labor-day/',0,'','NH','Y','us-labor-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',337),(48320,'country','us','us','Americas','United States',NULL,'2026','2026-10-12','Columbus Day',2,'X','COLUMBUS-DAY','/columbus-day/','/columbus-day/',0,'','NH','Y','us-columbus-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',338),(48321,'country','us','us','Americas','United States',NULL,'2026','2026-06-21','Father\'s Day',2,'X','FATHERS-DAY','/fathers-day/','/fathers-day/',0,'','CD',NULL,'fathers-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',335),(48322,'country','us','us','Americas','United States',NULL,'2026','2026-05-25','Memorial Day',1,'X','MEMORIAL-DAY','/memorial-day/','/memorial-day/',0,'','NH','Y','memorial-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',334),(48323,'country','us','us','Americas','United States',NULL,'2026','2026-04-03','Good Friday',2,'X','GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','NH','Y','good-friday.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',331),(48324,'country','us','us','Americas','United States',NULL,'2026','2026-04-05','Easter Sunday',2,'X','EASTER-SUNDAY','/easter/','/easter/',0,'','OB','Y','easter.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',332),(48325,'country','us','us','Americas','United States',NULL,'2026','2026-05-10','Mother\'s Day',2,'X','MOTHERS-DAY','/mothers-day/','/mothers-day/',0,'','CD','','mothers-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',333),(48326,'country','us','us','Americas','United States',NULL,'2026','2026-02-16','Presidents\' Day',1,'X','PRESIDENTS-DAY','/presidents-day/','/presidents-day/',0,'','NH','Y','presidents-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',330),(48327,'country','us','us','Americas','United States',NULL,'2026','2026-02-14','Valentine\'s Day',2,'X','VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','CD','N','valentines-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',329),(48328,'country','us','us','Americas','United States',NULL,'2026','2026-01-19','M L King Day',1,'X','M-L-KING-DAY','/martin-luther-king-day/','/martin-luther-king-day/',0,'','NH','Y','martin-luther-king.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',328),(48329,'country','us','us','Americas','United States',NULL,'2026','2026-01-01','New Year\'s Day',2,'X','NEW-YEARS-DAY','/new-years-day/','/new-years-day/',0,'Y','NH','Y','new-years-day.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',327),(48330,'country','us','us','Americas','United States',NULL,'2026','2026-06-19','Juneteenth',1,'','JUNETEENTH',NULL,'/juneteenth/',0,'Y','NH','Y','juneteenth.jpg',NULL,NULL,'2023-04-26','171.76.86.75','Y',14419),(48331,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-01-29','Chinese New Year',NULL,NULL,'CHINESE-NEW-YEAR','/chinese-new-year/','/chinese-new-year/',0,'','RE','Y','chinese-new-year.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',658),(48332,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-01-14','Mahayana New Year',NULL,NULL,'MAHAYANA-NEW-YEAR','/mahayana-new-year/','/mahayana-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',473),(48333,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-02-15','Nirvana Day',NULL,NULL,'NIRVANA-DAY','/nirvana-day/','/nirvana-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',475),(48334,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-02-13','Magha Puja Day',NULL,NULL,'MAGHA-PUJA-DAY','/magha-puja-day/','/magha-puja-day/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',476),(48335,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-04-13','Theravada New Year',NULL,NULL,'THERAVADA-NEW-YEAR','/theravada-new-year/','/theravada-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',477),(48336,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-05-12','Vesak - Buddha Day',NULL,NULL,'VESAK-BUDDHA-DAY','/vesak-day/','/vesak-day/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',478),(48337,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-07-10','Asala - Dharma Day',NULL,NULL,'ASALA-DHARMA-DAY','/asala-dharma-day/','/asala-dharma-day/',0,'','RE','Y','asala-dharma-day.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',479),(48338,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-12-08','Bodhi Day',NULL,NULL,'BODHI-DAY','/bodhi-day/','/bodhi-day/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',480),(48339,'religious','buddhist','buddhist',NULL,NULL,NULL,'2025','2025-08-13','Obon',NULL,NULL,'OBON','/obon/','/obon/',0,'','RE','Y','obon.jpg','flickr.com/14360805@N05',NULL,'2023-06-02','117.254.34.100','Y',659),(48340,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-12-31','Watch Night',NULL,NULL,'WATCH-NIGHT','/watch-night/','/watch-night/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',403),(48341,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-12-28','Holy Innocents',NULL,NULL,'HOLY-INNOCENTS','/holy-innocents/','/holy-innocents/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',402),(48342,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-12-25','Christmas',NULL,NULL,'CHRISTMAS','/christmas/','/christmas/',0,'Y','RE','Y','christmas.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',401),(48343,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-12-24','Christmas Eve',NULL,NULL,'CHRISTMAS-EVE','/christmas/','/christmas/',0,'Y','RE','Y','christmas.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',400),(48344,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-12-06','St. Nicholas Day',NULL,NULL,'ST-NICHOLAS-DAY','/st-nicholas-day/','/st-nicholas-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',399),(48345,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-11-30','St. Andrew\'s Day',NULL,NULL,'ST-ANDREWS-DAY','/st-andrews-day/','/st-andrews-day/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',398),(48346,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-11-30','Advent - first Sunday',NULL,NULL,'ADVENT-FIRST-SUNDAY','/advent-first-sunday/','/advent-first-sunday/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',397),(48347,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-11-27','Thanksgiving (USA)',NULL,NULL,'THANKSGIVING-USA','/thanksgiving-day/','/thanksgiving-day/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',396),(48348,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-11-02','All Souls\' Day',NULL,NULL,'ALL-SOULS-DAY','/all-souls-day/','/all-souls-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',395),(48349,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-11-01','All Saints\' Day',NULL,NULL,'ALL-SAINTS-DAY','/all-saints-day/','/all-saints-day/',0,'Y','RE','Y','all-saints-day.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',393),(48350,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-10-31','All Hallows Eve',NULL,NULL,'ALL-HALLOWS-EVE','/halloween/','/halloween/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',392),(48351,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-09-29','Michael and All Angels',NULL,NULL,'MICHAEL-AND-ALL-ANGELS','/michael-and-all-angels/','/michael-and-all-angels/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',391),(48352,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-09-14','Holy Cross Day',NULL,NULL,'HOLY-CROSS-DAY','/holy-cross-day/','/holy-cross-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',390),(48353,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-08-15','The Assumption of Mary',NULL,NULL,'THE-ASSUMPTION-OF-MARY','/the-assumption-of-mary/','/the-assumption-of-mary/',0,'Y','RE','Y','the-assumption-of-mary.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',389),(48354,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-08-01','Lammas',NULL,NULL,'LAMMAS','/lammas/','/lammas/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',388),(48355,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-07-15','Saint Vladimir',NULL,NULL,'SAINT-VLADIMIR','/saint-vladimir/','/saint-vladimir/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',387),(48356,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-06-29','Saints Peter and Paul',NULL,NULL,'SAINTS-PETER-AND-PAUL','/saints-peter-and-paul/','/saints-peter-and-paul/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',386),(48357,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-06-19','Corpus Christi',NULL,NULL,'CORPUS-CHRISTI','/corpus-christi/','/corpus-christi/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',385),(48358,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-05-15','Trinity Sunday',NULL,NULL,'TRINITY-SUNDAY','/trinity-sunday/','/trinity-sunday/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',384),(48359,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-06-08','Pentecost',NULL,NULL,'PENTECOST','/pentecost/','/pentecost/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',383),(48360,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-05-29','Ascension of Jesus',NULL,NULL,'ASCENSION-OF-JESUS','/ascension-day/','/ascension-day/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',382),(48361,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-07-25','St. James the Great Day',NULL,NULL,'ST-JAMES-THE-GREAT-DAY','/st-james-the-great-day-/','/st-james-the-great-day-/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',381),(48362,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-04-21','Easter Monday',NULL,NULL,'EASTER-MONDAY','/easter-monday/','/easter-monday/',0,'','RE','Y','easter.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',380),(48363,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-04-20','Easter',NULL,NULL,'EASTER','/easter/','/easter/',0,'','RE','Y','easter.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',379),(48364,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-04-23','St. George\'s Day',NULL,NULL,'ST-GEORGES-DAY','/st-georges-day/','/st-georges-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',378),(48365,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-04-18','Good Friday ',NULL,NULL,'GOOD-FRIDAY','/good-friday/','/good-friday/',0,'','RE','Y','good-friday.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',377),(48366,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-04-17','Maundy (Holy) Thursday',NULL,NULL,'MAUNDY-HOLY-THURSDAY','/maundy-thursday/','/maundy-thursday/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',376),(48367,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-04-13','Palm Sunday',NULL,NULL,'PALM-SUNDAY','/palm-sunday/','/palm-sunday/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',375),(48368,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-03-19','St. Joseph\'s Day',NULL,NULL,'ST-JOSEPHS-DAY','/st-josephs-day-/','/st-josephs-day-/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',374),(48369,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-03-17','St. Patrick\'s Day',NULL,NULL,'ST-PATRICK\'S-DAY','/st-patricks-day/','/st-patricks-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',373),(48370,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-02-14','St. Valentine\'s Day',0,'','ST-VALENTINES-DAY','/valentines-day/','/valentines-day/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',372),(48371,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-02-02','Candlemas',NULL,NULL,'CANDLEMAS','/candlemas/','/candlemas/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',371),(48372,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-01-12','The Baptism of Jesus',1,'X','BAPTISM-OF-THE-JESUS','/baptism-of-the-lord/','/baptism-of-the-lord/',0,'','RE','Y','baptism-of-the-lord.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',370),(48373,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-01-06','Epiphany',NULL,NULL,'EPIPHANY','/epiphany/','/epiphany/',0,'Y','RE','Y','epiphany.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',369),(48374,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-11-23','Christ the King',NULL,NULL,'CHRIST-THE-KING','/christ-the-king/','/christ-the-king/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',656),(48375,'religious','christian','christian',NULL,NULL,NULL,'2025','2025-03-05','Ash Wednesday',NULL,NULL,'ASH-WEDNESDAY','/ash-wednesday/','/ash-wednesday/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',657),(48376,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-07-05','Day of Ashura / Muharram',NULL,NULL,'DAY-OF-ASHURA-MUHARRAM','/muharram/','/muharram/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',472),(48377,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-06-26','Hijra - Islamic New Year',NULL,NULL,'HIJRA-ISLAMIC-NEW-YEAR','/muharram/','/muharram/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',471),(48378,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-06-07','Eid-al-Adha',NULL,NULL,'EID-AL-ADHA','/hari-raya-haji/','/hari-raya-haji/',0,'','RE','Y','eid-al-adha.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',470),(48379,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-06-06','Waqf al Arafa - Hajj',NULL,NULL,'WAQF-AL-ARAFA-HAJJ','/waqf-al-arafa-hajj/','/waqf-al-arafa-hajj/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',469),(48380,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-03-31','Eid-al-Fitr (End of Ramadan)',NULL,NULL,'EID-AL-FITR-END-OF-RAMADAN','/ramadan-end/','/ramadan-end/',0,'','RE','Y','hari-raya-puasa.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',468),(48381,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-03-27','Laylat al Qadr',NULL,NULL,'LAYLAT-AL-KADR','/laylat-al-kadr/','/laylat-al-kadr/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',467),(48382,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-02-28','Ramadan (start)',NULL,NULL,'RAMADAN-START','/ramadan-start/','/ramadan-start/',0,'','RE','Y','ramadan.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',466),(48383,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-02-14','Lailat al Bara\'ah',NULL,NULL,'LAILAT-AL-BARAAH','/lailat-al-baraah/','/lailat-al-baraah/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',465),(48384,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-01-27','Lailat al Miraj',NULL,NULL,'LAILAT-AL-MIRAJ','/lailat-al-miraj/','/lailat-al-miraj/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',464),(48385,'religious','islam','islam',NULL,NULL,NULL,'2025','2025-09-05','Milad un Nabi',NULL,NULL,'MILAD-UN-NABI','/milad-un-nabi/','/milad-un-nabi/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',462),(48386,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-12-22','Hanukkah Ends',NULL,NULL,'HANUKKAH-ENDS','/hanukkah/','/hanukkah/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',461),(48387,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-12-14','Hanukkah Starts',NULL,NULL,'HANUKKAH-STARTS','/hanukkah/','/hanukkah/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',460),(48388,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-10-15','Simchat Torah',NULL,NULL,'SIMHAT-TORAH','/simhat-torah/','/simhat-torah/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',459),(48389,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-10-14','Shmini Atzeret',NULL,NULL,'SHEMINI-ATZERET','/shemini-atzeret/','/shemini-atzeret/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',458),(48390,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-10-13','Sukkot Ends',NULL,NULL,'SUKKOT-ENDS','/sukkot/','/sukkot/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',456),(48391,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-10-06','Sukkot Starts',NULL,NULL,'SUKKOT-STARTS','/sukkot/','/sukkot/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',455),(48392,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-10-02','Yom Kippur',NULL,NULL,'YOM-KIPPUR','/yom-kippur/','/yom-kippur/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',454),(48393,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-09-25','Fast of Gedaliah',NULL,NULL,'FAST-OF-GEDALIAH','/fast-of-gedaliah/','/fast-of-gedaliah/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',453),(48394,'religious','jewish','jewish','','',NULL,'2025','2025-09-24','Rosh HaShana Ends',NULL,NULL,'ROSH-HASHANAH-ENDS','/rosh-hashanah/','/rosh-hashanah/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',452),(48395,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-09-22','Rosh HaShana Starts',NULL,NULL,'ROSH-HASHANAH-STARTS','/rosh-hashanah/','/rosh-hashanah/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',451),(48396,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-08-03','Tish\'a B\'Av',NULL,NULL,'TISHA-BAV','/tisha-bav/','/tisha-bav/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',450),(48397,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-07-13','The 17th of Tammuz',NULL,NULL,'THE-17TH-OF-TAMMUZ',NULL,'/the-17th-of-tammuz/',0,'','RE','',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',449),(48398,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-06-03','Shavuot',NULL,NULL,'SHAVUOT','/shavuot/','/shavuot/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',448),(48399,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-06-01','Shavuot (1st day)',NULL,NULL,'SHAVUOT-1ST-DAY','/shavuot/','/shavuot/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',447),(48400,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-05-26','Yom Yerushalayim',NULL,NULL,'YOM-YERUSHALAYIM','/yom-yerushalayim/','/yom-yerushalayim/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',446),(48401,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-05-16','Lag BaOmer',NULL,NULL,'LAG-BAOMER','/lag-bomer/','/lag-bomer/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',445),(48402,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-05-01','Yom HaAtzma\'ut',NULL,NULL,'YOM-HAATZMAUT','/yom-haatzmaut/','/yom-haatzmaut/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',444),(48403,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-04-30','Yom HaZikaron',NULL,NULL,'YOM-HAZIKARON','/yom-hazikaron/','/yom-hazikaron/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',443),(48404,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-04-23','Yom Hashoah',NULL,NULL,'YOM-HASHOAH','/yom-hashoah/','/yom-hashoah/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',442),(48405,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-04-20','Passover - Final Day',NULL,NULL,'PASSOVER-FINAL-DAY','/passover/','/passover/',0,'','RE','',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',441),(48406,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-05-12','Second Passover',NULL,NULL,'SECOND-PASSOVER','/passover/','/passover/',0,'','RE',NULL,NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',440),(48407,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-04-12','Passover - First Day',0,NULL,'PASSOVER-FIRST-DAY','/passover/','/passover/',0,'','RE','',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',439),(48408,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-03-15','Shushan Purim',NULL,NULL,'SHUSHAN-PURIM','/purim/','/purim/',0,'','RE','',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',438),(48409,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-02-14','Purim',0,NULL,'PURIM','/purim/','/purim/',0,'','RE','',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',437),(48410,'religious','jewish','jewish',NULL,NULL,NULL,'2025','2025-02-13','Tu Bishvat',NULL,NULL,'TU-BISHVAT','/tu-bishvat/','/tu-bishvat/',0,'','RE','',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',436),(48411,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-04-28','Birthday of Guru Angad Dev',NULL,NULL,'BIRTHDAY-OF-GURU-ANGAD-DEV','/birthday-of-guru-angad-dev/','/birthday-of-guru-angad-dev/',0,'Y','RE','N',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',661),(48412,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-03-14','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',660),(48413,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-11-24','Martyrdom of Guru Tegh Bahadur Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','/martyrdom-of-guru-tegh-bahadur-sahib/','/martyrdom-of-guru-tegh-bahadur-sahib/',0,'Y','RE','N',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',495),(48414,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-11-05','Guru Nanak Birthday',NULL,NULL,'GURU-NANAK-BIRTHDAY','/guru-nanak-birthday/','/guru-nanak-birthday/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',494),(48415,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-10-21','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RE','Y','diwali.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',493),(48416,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-05-30','Martyrdom of Guru Arjan Dev Sahib',NULL,NULL,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','/martyrdom-of-guru-arjan-dev-sahib/','/martyrdom-of-guru-arjan-dev-sahib/',0,'Y','RE','N',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',486),(48417,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-04-14','Vaisakhi',NULL,NULL,'VAISAKHI','/vaisakhi/','/vaisakhi/',0,'','RE','N',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',485),(48418,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-03-14','Hola Mohalla',NULL,NULL,'HOLA-MOHALLA','/hola-mohalla/','/hola-mohalla/',0,'','RE','N',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',484),(48419,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-01-13','Maghi - Lohri',NULL,NULL,'MAGHI-LOHRI','/maghi-lohri/','/maghi-lohri/',0,'','RE','N',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',482),(48420,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-01-06','Guru Gobind Singh Birthday',NULL,NULL,'GURU-GOBIND-SINGH-BIRTHDAY','/guru-gobind-singh-birthday/','/guru-gobind-singh-birthday/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',481),(48421,'religious','sikh','sikh',NULL,NULL,NULL,'2025','2025-10-23','Birth of the Guru Granth',NULL,NULL,'BIRTH-OF-THE-GURU-GRANTH','/birth-of-the-guru-granth/','/birth-of-the-guru-granth/',0,'Y','RE','N',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',662),(48422,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-23','Bhai Dooj',NULL,NULL,'BHAI-DOOJ','/bhai-dooj/','/bhai-dooj/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',654),(48423,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-11-05','Kartik Poornima',NULL,NULL,'KARTIK-POORNIMA','/kartik-poornima/','/kartik-poornima/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',435),(48424,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-21','Diwali',NULL,NULL,'DIWALI','/diwali/','/diwali/',0,'','RE','Y','diwali.jpg',NULL,NULL,'2023-06-02','117.254.34.100','Y',434),(48425,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-18','Dhan Teras',NULL,NULL,'DHAN-TERAS','/dhanteras/','/dhanteras/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',433),(48426,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-09','Karwa Chauth',NULL,NULL,'KARWA-CHAUTH','/karva-chauth/','/karva-chauth/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',432),(48427,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-06','Sharad Purnima',NULL,NULL,'SHARAD-PURNIMA','/sharad-purnima/','/sharad-purnima/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',431),(48428,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-02','Dusshera ',NULL,NULL,'DUSSHERA','/dussehra/','/dussehra/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',430),(48429,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-01','Navaratri ends / Maha Navami',NULL,NULL,'NAVARATRI-ENDS-MAHA-NAVAMI','/navaratri/','/navaratri/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',429),(48430,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-09-28','Durga Puja begins',NULL,NULL,'DURGA-PUJA-BEGINS',NULL,'/durga-puja/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',428),(48431,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-09-22','Navaratri begins',NULL,NULL,'NAVARATRI-BEGINS','/navaratri/','/navaratri/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',427),(48432,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-09-21','Mahalaya Amavasya',NULL,NULL,'MAHALAYA-AMAVASYA','/mahalaya-amavasya/','/mahalaya-amavasya/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',425),(48433,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-09-04','Onam',NULL,NULL,'ONAM','/onam/','/onam/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',424),(48434,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-08-27','Ganesh Chaturthi',NULL,NULL,'GANESH-CHATURTHI','/ganesh-chaturthi/','/ganesh-chaturthi/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',423),(48435,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-08-16','Krishna Janmashtami',NULL,NULL,'KRISHNA-JANMASHTAMI','/janmashtami/','/janmashtami/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',422),(48436,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-08-09','Raksha Bandhan',NULL,NULL,'RAKSHA-BANDHAN','/raksha-bandhan/','/raksha-bandhan/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',421),(48437,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-07-29','Nag Panchami',NULL,NULL,'NAG-PANCHAMI','/nag-panchami/','/nag-panchami/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',420),(48438,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-07-10','Guru Purnima',NULL,NULL,'GURU-PURNIMA','/guru-purnima/','/guru-purnima/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',419),(48439,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-06-27','Puri Rath Yatra',NULL,NULL,'PURI-RATH-YATRA','/rath-yatra/','/rath-yatra/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',418),(48440,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-06-10','Savitri Pooja',NULL,NULL,'SAVITRI-POOJA','/savitri-pooja/','/savitri-pooja/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',417),(48441,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-04-14','Vaisakhi / Baisakhi / Vishu ',NULL,NULL,'VAISAKHI-BAISAKHI-VISHU','/vishu/','/vishu/',0,'Y','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',416),(48442,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-05-30','Akshaya Tritiya',0,NULL,'AKSHAYA-TRITIYA','/akshaya-tritiya/','/akshaya-tritiya/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',415),(48443,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-04-12','Hanuman Jayanti',NULL,NULL,'HANUMAN-JAYANTI','/hanuman-jayanti/','/hanuman-jayanti/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',414),(48444,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-04-14','Bengali New Year / Bihu',NULL,NULL,'BENGALI-NEW-YEAR-BIHU','/bihu-bengali-new-year/','/bihu-bengali-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',413),(48445,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-04-06','Ramanavami',NULL,NULL,'RAMANAVAMI','/ramanavami/','/ramanavami/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',411),(48446,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-03-30','Ugadi / Gudi Padwa / Telugu New Year',NULL,NULL,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','/ugadi-telugu-new-year/','/ugadi-telugu-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',410),(48447,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-03-29','Hindi New Year',NULL,NULL,'HINDI-NEW-YEAR','/hindi-new-year/','/hindi-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',409),(48448,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-03-14','Holi',NULL,NULL,'HOLI','/holi/','/holi/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',408),(48449,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-02-26','Maha Shivaratri',NULL,NULL,'MAHA-SHIVARATRI','/maha-shivratri/','/maha-shivratri/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',407),(48450,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-02-02','Vasant Panchami',0,NULL,'VASANT-PANCHAMI','/vasant-panchami/','/vasant-panchami/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',406),(48451,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-04-14','Tamil New Year',NULL,NULL,'TAMIL-NEW-YEAR','/tamil-new-year/','/tamil-new-year/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',405),(48452,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-01-15','Makarsankranti / Pongal',0,NULL,'MAKARSANKRANTI-PONGAL','/pongal/','/pongal/',0,'','RE','Y',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',404),(48453,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-10-27','Chhath Puja',NULL,NULL,'CHHATH-PUJA','/chhath-puja/','/chhath-puja/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',655),(48454,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-03-13','Holika Dahan',NULL,NULL,'HOLIKA-DAHAN','/holi/','/holi/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',684),(48455,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-08-08','Varalakshmi Vrat',NULL,NULL,'VARALAKSHMI-VRAT','/varalakshmi-vrat/','/varalakshmi-vrat/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',685),(48456,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-09-17','Vishwakarma Puja',NULL,NULL,'VISHWAKARMA-PUJA','/vishwakarma-puja/','/vishwakarma-puja/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',686),(48457,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-12-01','Geeta Jayanti',NULL,NULL,'GEETA-JAYANTI','/geeta-jayanti/','/geeta-jayanti/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',687),(48458,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-12-16','Dhanu Sankranti',NULL,NULL,'DHANU-SANKRANTI','/dhanu-sankranti/','/dhanu-sankranti/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',688),(48459,'religious','hindu','hindu',NULL,NULL,NULL,'2025','2025-02-11','Thaipusam',NULL,NULL,'THAIPUSAM','/thaipusam/','/thaipusam/',0,'','RE','R',NULL,NULL,NULL,'2023-06-02','117.254.34.100','Y',754);
/*!40000 ALTER TABLE `holidays` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `net_articles`
--

DROP TABLE IF EXISTS `net_articles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `net_articles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `holiday_name_id` varchar(70) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '',
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '',
  `type` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'National/Spiritual etc.',
  `date` date DEFAULT NULL COMMENT 'date for current year',
  `also_called` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `same_day` varchar(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'falls in same day of year',
  `celebrations` tinytext CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `article` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `page_link` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `page_title` varchar(80) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `page_desc` tinytext CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `key_word` varchar(80) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `img_path` varchar(80) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `img_source` varchar(30) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'ex. wikiPedia',
  `country` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'Primary Country',
  `is_active` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'Y/N',
  `holiday_master_id` int(5) NOT NULL,
  `area_type` varchar(15) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'Country, religious, state etc',
  `area` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'like: India, Hindu, Karnatama, icici bank etc.',
  `day_off` varchar(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'Y=Yes, N=No, M=Morning Off,E=Evening Off, Blank=Yes',
  `update_tips` text CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'Article needs update yearly',
  PRIMARY KEY (`id`),
  UNIQUE KEY `holiday_name_id` (`holiday_name_id`)
) ENGINE=MyISAM AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin COMMENT='Holiday Articles';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `net_articles`
--

LOCK TABLES `net_articles` WRITE;
/*!40000 ALTER TABLE `net_articles` DISABLE KEYS */;
INSERT INTO `net_articles` VALUES (1,'us/veterans-day','Veterans Day','National','2022-11-11','Veterans','','Parades','\r\n<img src=\"/i/veterans.jpg\" alt=\"veterans\">\r\n<br>\r\n\r\n<p>Veterans Day observes to pays tribute to the veterans and holds a moment of silence. The day marks the anniversary of the signing of the armistice, which ended the First World War hostilities between the Allies and Germany in 1918. On this day, Veterans are thanking for their services to the United States.</p>\r\n\r\n<p>In 1919, President Wilson said that the day should be \"filled with pride and gratitude for the victory of those who were martyred in the country\'s service.\" They plan public meetings, parades, and brief suspension business activity at 11 am.</p>\r\n\r\n<p>On May 13, 1938, an Act (52 Stat. 351; 5 U.S. Code, sec. 87A) was adopted, making each year a legal holiday on November 11, known as Armistice Day. The day was initially intended to honor World War I veterans. In 1954, veteran service organizations urged Congress to replace the word \"Armistice\" to \"Veterans.\" Congress approved this change on June 1, 1954.</p>\r\n \r\n<h2>How do people celebrate Veterans Day?</h2>\r\n<p>The purpose of Veterans Day is to honor and thank all military personnel who served the United States in all wars, especially surviving veterans. Parades, church offerings mark this festival, and in many areas, the American flag is hung at half-mast. The two-minute silence can occur at 11 am. </p>\r\n<p>Veterans Day is officially celebrated on November 11. However, if it falls on a weekday, many communities celebrate their festivities on weekends near this date. It is because so that more people visit and participate in events. Federal government offices close on November 11. If Veterans Day falls on a Saturday, they remain closed on Friday, November 10. If Veterans Day comes on a Sunday, they remain closed on Monday, November 12. </p>\r\n\r\n<h2>Is Veterans Day a Government Holiday?</h2>\r\n<p>Veterans Day is a Government holiday. On this day, Mostly governmental organizations remain closed. State and local governments and non-governmental businesses are not require to close and may decide to remain open or closed. The public transit system may follow a regular or vacation schedule.</p>\r\n<p>When it comes to school closures, it depends on your state and school district. Most schools, including public schools in major cities like Seattle, Los Angeles, New York, Chicago, Dallas, and Boston are closed, in observance of Veterans Day.</p>\r\n<p>The New York Stock Exchange and the Nasdaq remain open and operating normally, but the bond market remains closed.</p>\r\n \r\n<h2>Are Banks Open on Veterans Day?</h2>\r\n<p>Although some financial institutions consider this day to be a bank holiday, others are open on Veterans Day. The Federal Reserve Bank and all its offices and branches are closed on all federal holidays, including Veterans Day.</p>\r\n<p>Private banks may choose to have their bank hours, closed or open on Veterans Day. Most of the banks remain closed on Veterans Day. But some banks leave a few branches open. Specifically, those banks inside grocery stores, they have to work on national holidays, and they can also change their schedule from year to year.</p>\r\n \r\n<h2>Are Post Offices Open on Veterans Day? </h2>\r\n<p>Post offices are closed on November 11, as is a postal holiday. On this day, post offices remain closed, and no mail will be delivered. UPS stores and services are also close on on this day. But, FedEx offices are open, and they delivered the packages.</p>\r\n\r\n<h2>Facts related to Veterans Day </h2>\r\n<ul>\r\n<li>President Dwight D. Eisenhower announced in 1954, for requesting the nation to support the Veterans Day effort in any way possible.</li>\r\n<li>During World War II, more than 16 million men and women served in the military and finished with over 400,000 deaths.</li>\r\n<li>The Wars of Global Terrorism, which took place from October 7, 2001, to May 29, 2012, resulted in 54,820 casualties of which 6,456 people died.</li>\r\n</ul>\r\n','/veterans-day/','Veterans Day in USA - 11th November','Veterans Day is a holiday to honor the end of World War I celebrated on 11th November.','US Holiday, Veterans Day,calendar','/i/festival-banner.jpg',' flickr/wigwam','us','Y',340,'country','us',NULL,NULL),(2,'us/valentines-day','Valentine\'s Day','National','2022-02-14','Saint Valentine\'s Day','Y','Dating, Gift exchange','<img src=\"/i/happy-valentines-day.jpg\" alt=\"happy valentines day\">\r\n<br>\r\n<p> Valentine\'s Day celebrates on February 14 every year in the USA. \r\nIt is a festival of romance and love. Many people share love, romance, and kindness with others through offering gifts such as cards, candy, jewelry, and flowers.</p>\r\n<p>Valentine\'s Day is the most famous festival in youngsters. They Celebrate Valentines Day with great pomp and show. You can see the graphics which are shown below, how much Valentine\'s Day is famous rather than other holidays. </p>\r\n\r\n<img src=\"/i/comparision-of-valentines-day-and-martin-luther-king-day.jpg\" alt=\"comparision of valentines day and martin luther king day\">\r\n<br>\r\n\r\n<p>Pope Gelasius announced February 14 as St. Valentine\'s Day at the end of the 5th century, and since then, February 14 has been a day of celebration. The color correlated with St. Valentine\'s Day is red. Other symbols of this Day are chocolate, Cupid, and heart shape.</p>\r\n\r\n<h2>Is Valentine’s Day a Federal holiday?</h2>\r\n<p> Valentine\'s Day is not a federal holiday in the USA. All government offices, schools, stores, and other organizations remain open. Public transport systems operate at their regular times. Restaurants can be more bustling than usual because many people go out for dinner with their spouse or partner. Valentine\'s Day is also a very famous date for marriages.</p>\r\n<p> On this Day, Stores profits may increase as people buy gifts such as flowers, chocolates, jewelry, etc. to present them to their loved ones. Local stores may extend their working hours because the market is more bustling on Valentine\'s Day.</p>\r\n\r\n<h2>How People Celebrate Valentine’s Day?</h2>\r\n<p>Many people celebrate their love by sending cards or letters to their partner, giving presents or flowers, and arranging meals in restaurants or romantic nights in hotels. The most common Valentine\'s Day presents are Valentine\'s cards, chocolates, flowers, candy, and champagne or sparkling wine. Valentine\'s cards embellished with red roses, images of hearts, or Cupid. Some people also arrange lavish gifts, such as jewelry, to present on this occasion. Many restaurants and hotels avail special offers and discounts for the couples at this time and include romantic meals or weekend breaks.</p>\r\n\r\n\r\n<p>Use hashtag<a href=\"https://twitter.com/hashtag/valentines\"   target=\"_blank\"  rel=\"nofollow\">#valentines </a>day on social media to mark this day. Send Happy Valentine\'s day messages to your friends and relatives. There are some Messages or wishes which you can send to your loved ones.</p>\r\n<ul>\r\n<li> \"You are my only dream; you are my life; I want to invest a single second of my life with you.\" </li>\r\n<li> \"Friendship is where we started, and marriage is what I want this relation to go. On this Day of Valentine\'s, I wanna propose you, will you be mine forever?\" </li>\r\n<li> \"I may not be as good looking as you are, but despite that, you are the only one who has showered upon me the endless love without any demands. Thank you for my lovely Valentine. Happy Valentine\'s Day my Love.\" </li>\r\n<li> \"I wish you a happy valentine\'s day celebration, my friend. You are too a special friend of mine who deserves the best of all love in your life, and you need to celebrate the Day very well.\" </li>\r\n<li> \"Life is incomplete without a dear friend, and you are the one who completes me. Sending you warm wishes on the occasion of Valentine\'s Day! my dear pal.\" </li>\r\n</ul>\r\n\r\n<h2>What is the Symbol of Valentine’s Day?</h2>\r\n\r\n<p>The most commonly used symbols of Valentine\'s Day is a heart in red and pink color and drawings or models of Cupid. Cupid usually depicted as a small, winged figure with a bow and arrow. According to faith, he uses his arrows to strike people\'s hearts. Cupid\'s arrow struck on them, who fall in love with someone. There are different symbols of Valentine\'s Day, which are gifts of flowers, red roses, chocolates, and lingerie that couples usually give to each other.</p>\r\n\r\n\r\n\r\n','/valentines-day/','Valentine\'s Day - 14th February','Valentine\'s Day - a festival of Love, celebrated every year on 14th February.','US Holiday,valentine\'s day,holidays,mexico','/i/festival-banner.jpg','wikiPedia','us','y',329,'country','us',NULL,NULL),(3,'us/the-assumption-of-mary','The Assumption of Mary','National','2022-08-15','The Assumption of Virgin Mary','Y','Prayer, Fireworks, Light decoration, Feast','<p>The Assumption of Mary is a Christian festival celebrated every year on 15th August in most part of the world. Christians believe, on this day the Virgin Mary \"having completed the course of her earthly life, was assumed body and soul into heavenly glory.\"\r<p>In ancient culture The Assumption of Mary is celebrated by public illumination and night time bonfires. In some other cultures people throw coins from their window down into the street and considered it as an idea of prosperity. There are many symbolic images and pictures associated with that event. Most people believed the color blue is associated with the Virgin Mary as it is the color of Heaven and symbolizes truth and clarity. Christians mostly associate Lily with the Virgin Mary because it is the symbol of purity, simplicity and divinity.\r\r<p>Different countries in the world celebrate The Assumption of Mary in different ways. In Italy and in the United States it is celebrated by decorating streets with different colors of light and firework displays. In Rome the bowing procession is the most important event of the day. People take the statue of the Virgin Mary through beautiful archways of flowers to a group of people that hold a statue of Christ symbolizing his awaiting for her to arrive in Heaven. In Brazil the feast called \"Our lady of Navigators\" is very popular. In Italy people take rides through the lakes in which they sprinkle roses and water over them and is considered as a symbol of prosperity. This Day is also considered as a monumental holiday in France. \r\r<p>The Assumption of Mary is a very popular summer festival in Greece and some of its surrounding islands. In the country of Andorra it is a widely celebrated festival where natives pray for the Mother; it also has become a national holiday in Andorra. This Day also became a public holiday in Guatemala where people and their families hand out gifts, food and other items as well as have parties, elaborate feasts and just enjoy spending time together. The Assumption of Mary is celebrated by the Christian community all over the world through many different traditions and customs. This festival is a sign of love and harmony, and is respected as a sacred festival.</p>\r','/the-assumption-of-mary/','The Assumption of Mary is a Christian festival celebrated every year on 15th Aug','The Assumption of Mary is a Christian festival associated with the Virgin Mary.','The assumption of mary','/i/festival-banner.jpg','wikiPedia','romania','Y',389,'religious','christian',NULL,NULL),(4,'us/thanksgiving-day','Thanksgiving Day (USA)','National','2022-11-24','Harvest Festival','Y','Family get together','<img src=\"/i/thanksgiving.jpg\" alt=\"thanksgiving\">\r\n<br>\r\n\r\n<p>Thanksgiving Day owes its origin to the harvest festival. Usually, Americans give thanks to God for their autumn harvest and every other success they have obtained in the year. In the US, Thanksgiving Day celebrated on the fourth Thursday of November. </p>\r\n<p>It is the day of thanking God for a bountiful harvest in the preceding year. The day applauds the labor of all Americans in their various income-generating activities and achievements as a nation. The day was declared a federal holiday in 1863 by Abraham Lincoln. It is a day off for American workers. The day next to Thanksgiving, also known as Black Friday, is a holiday in more than 20 states. During long weekends, it is common for trips and visiting with family and friends.</p>\r\n\r\n<h2>How do People Celebrate Thanksgiving Day?</h2>\r\n<p>The day often filled with pomp and color. It is a wonderful time to exchange gifts with your loved ones and share beautiful thank you messages. If you want to make your family and friends happy, get a special thank you menu with turkey, potatoes, and a variety of vegetables. If you want to travel out of town, you can participate in Macy\'s Thanksgiving Parade in New York City and enjoy a lively performance. Usually, the parade is the official start of Christmas shopping.</p>\r\n<p>Use <a href=\"https://twitter.com/hashtag/thanksgiving\"  target=\"_blank\"  rel=\"nofollow\"> #thanksgiving </a>on social media to mark this day. Send thanksgiving messages to friends and relatives. There are some Messages or wishes which you can send to your loved ones.</p>\r\n\r\n<ul>\r\n<li>There have been times when I forgot to thank you for being there for me. I take this day to tell you how special you are and how great my life has become because of you. Have a memorable Thanksgiving.</li>\r\n<li>Thanksgiving is more than the festivities; it gives us time to ponder upon what lessons we learned and how we can spread happiness around, to look back at all the great memories and good people who came into our lives. We appreciate you so much. Happy Thanksgiving Day to you and your loved ones.</li>\r\n<li>At this time of Thanksgiving celebration, our thoughts turn gratefully to you with warm appreciation. Our best wishes for a Happy Thanksgiving.</li>\r\n<li>Being a family means you are part of something very wonderful. It means you will love and be loved for the rest of your life. No matter what. Happy Thanksgiving!</li>\r\n</ul>\r\n\r\n<h2>Is Thanksgiving day a Federal Day?</h2>\r\n<p>Thanksgiving day is a federal day. In 1863, Thanksgiving day was declared a federal holiday by Abraham Lincoln. Most businesses, government offices, schools, colleges, universities, and other organizations remain closed on Thanksgiving Day. Many offices and businesses allow workers to stay longer for a four-day weekend of Thanksgiving, so these offices and businesses also remain closed on the day following Thanksgiving Day. Public transportation systems usually do not run on their regular schedule.</p>\r\n<p>Thanksgiving Day is one of the busiest days for the tour in the USA. It can cause traffic and overcrowding. Annual parades and busy football games schedule can also disrupt local traffic.</p>\r\n\r\n<h2>Which Food is Eaten On Thanksgiving Day?</h2>\r\n<p>Turkey is the most common meal served during Thanksgiving dinner. For this idea, Thanksgiving Day also recognized as Turkey Day. American farmers boost millions of turkeys every year in preparation for the Thanksgiving Holiday. Other popular meals on this day include pumpkin pie, cranberry sauce, potatoes, and a group of vegetables.</p>\r\n\r\n\r\n<h2>Thanksgiving Traditions</h2>\r\n<p>Although Thanksgiving Day has been observed for more than four centuries, its traditions continue today. Family reunions and feasts are common as everyone prays to God for his continued grace.  Thanksgiving ceremonies are considered incomplete without turkey. Watching NFL football and playing thank you games such as scavenger hunting and picture puzzles is also a popular tradition to this day.</p>\r\n \r\n\r\n\r\n','/thanksgiving-day/','Thanksgiving Day - Harvest Festival - fourth Thursday of November','Thanksgiving Day is celebrated on the fourth Thursday of November. The occasion traditionally celebrates the arrival of the first pilgrims to America.','US Holiday, Thanksgiving Day,calendar','/i/festival-banner.jpg','Wikipedia','us','Y',341,'country','us',NULL,NULL),(5,'us/presidents-day','President\'s Day ','National','2022-02-21','Washington\'s Birthday','',' Historical celebrations; honoring the veterans, Congressional recognition','<img src=\"/i/president-day-mount-rushmore.jpg\" alt=\"president day mount rushmore\">\r\n<br>\r\n\r\n<p> President\'s Day celebrates on the third Monday of February each year in the United States to honor George Washington, Abraham Lincoln, and all of the nation\'s presidents. According to some government sources, Indiana celebrates Washington\'s birthday holiday in December. You can see the latest trends for President\'s day. Its celebration is increasing day by day. People search more about President\'s Day to learn basic ideas about this. </p>\r\n\r\n<img src=\"/i/trends-presidents-day.jpg\" alt=\"presidents day trends\">\r\n<br>\r\n\r\n<p>People celebrate the Birthday of Abraham Lincon and George Washington on both February 12 and February 22, until 1971. In 1971, President Richard Nixon declared President\'s Day a federal public holiday to honor all United Nations presidents.</p>\r\n\r\n<h2>Is Presidents\' Day in the US a Federal Holiday?</h2>\r\n<p> Presidents\' Day is a federal holiday in most parts of the United States. Many Americans have a day off from work. People who work in retail stores or restaurants may have fewer days off than those who work in the office or school. Non-essential public servants have their day off, and most government offices remain closed for President\'s Day </p>\r\n\r\n<p>Many main outlets offer sales all through the President\'s weekend as many people have their day off, and new spring patterns are available in the market. Expect to find deals like \"Macy\'s  President\'s Day sales\" at national stores on as women\'s and men\'s apparel.</p>\r\n\r\n<p>There is no delay in the public transportation system and operate on regular schedules on this day. </p>\r\n\r\n<h2>How people celebrate Presidents\' Day?</h2>\r\n<p> Washington\'s Birthday officially celebrates to honors George Washington, the first president of the United States, for his life and work. The day celebrates past presidents of the USA. Washington\'s birthday is sometimes recognized as Presidents\' Day. It is because maximum states have followed Washington\'s Birthday, and some other states officially celebrate Presidents\' Day. Some states pay attention to Abraham Lincoln, as his birthday was also in mid-February. In the weeks or days leading up to the holiday, schools often handle events and lessons for students on the President of the United States, and especially George Washington. It is a big day for shops to start their sales. </p>\r\n\r\n<h2>Are banks and post offices closed on Presidents Day?</h2>\r\n<p>Mostly all the Banks are closed on Presidents\' Day. All the branches of major banks like People\'s United Bank, First Citizens Bank, Bank of America, and Wells Fargo are closed on Presidents\' Day each year. Mostly local branches of small banks and credit unions are also close. But, ATMs and TD Bank remains open and continues their services.</p>\r\n\r\n<p> Washington\'s Birthday is a postal holiday, and the post offices remain closed. Also, there is no mail delivery on this day, because of the holiday. On the other hand, Federal Express and UPS services, and offices are open as usual, and delivery remains open, even if it is President\'s Day. </p>\r\n\r\n<h2>Are schools closed on President\'s Day?</h2>\r\n<p>Practically all public and private schools remain closed in observance of President\'s Day. Some schools closed for the entire week for a mid-week winter holiday. </p>\r\n\r\n<h2>Is the stock market open?</h2>\r\n<p>The stock market remains closed for trading. Nasdaq, the New York Stock Exchange, and other major US exchanges observe off on Monday as President\'s Day.</p>\r\n\r\n\r\n\r\n','/presidents-day/','President\'s Day - third Monday of February','President\'s Day – Celebrated on third Monday of February to honor all the Presidents of the US.','US Holiday, Presidents Day,calendar','/i/festival-banner.jpg','','us','Y',4717,'country','us',NULL,NULL),(6,'us/new-years-day','New Year\'s Day','National','2022-01-01','Happy New Year','','Fireworks, Gift Exchange, Late Night parties','<img src=\"/i/new-years-day.jpg\" alt=\" happy new year\">\r\n<br>\r\n<p>New Year\'s Day celebrates on 1 January and marks the start of a new year in the USA, follows the Gregorian calendar. It indicates the end of New Year\'s Eve celebrations and gives many Americans a chance to remember the previous year.</p>\r\n<p>The New Years\' celebration is usually marked by parades and reflection on the previous year while looking forward to the future\'s possibilities. People celebrate New Year\'s with their friends and family, making New Year resolutions, including customs intended to acquire luck and achievement in the upcoming year. </p>\r\n\r\n<h2>Is New Year\'s Day a Public Holiday?</h2>\r\n<p>It is the most celebrated public holiday in the world, which is often celebrated with fireworks at midnight as soon as the new year begins in each time zone. Usually, it is a vacation day for people, schools, and most of the businesses remain closed. Some of the businesses are open but give limited services. Many stores close early on New Year\'s Eve. </p>\r\n\r\n<p>Multiplex theaters, clubs, and other entertainment venues have arranged special programs.  Public transportation systems may usually reduce their services. Pharmacy is open on New Year\'s Eve and New Year\'s Day, and most stores will be open for their regular hours.</p>\r\n\r\n<h2>How  New Year’s Day is celebrated?</h2>\r\n<p>Many people organize parties at their homes or attend special parties to celebrate the upcoming New Year. In various urban areas, large scale open events are organized, which attracts a large number of individuals.</p>\r\n\r\n<p>A significant part of the New Year\'s Eve celebrations is the ball drop in Times Square in Manhattan, New York City. The ball is placed on top of a pole, which made up of crystal and electric lights. One minute before midnight of 31 December, the ball is slowly lowered down from the pole. Precisely at midnight, it comes to rest at the bottom of the pole. The program has been shown on television in the United States and all around the world. Since 1907, this event has been organized every year.</p>\r\n\r\n<p> People also visit the busiest place Disneyland for an unforgettable New Year Celebration. Different activities like a parade, fireworks, musical shows, etc. are arranged for visitors.</p>\r\n\r\n<p>Use <a href=\"https://twitter.com/hashtag/newyearsday\"  target=\"_blank\" rel=\"nofollow\">#newyearsday</a> on social media to mark this day. Send Happy New Year messages to friends and relatives.</p>\r\n<ul>\r\n<li> \"Remember all the good memories you have made and know that your life will be so full of wonders in the coming year. Happy New Year 2020!\" </li>\r\n<li> \"I love you more today than I loved you yesterday. And I will love you more tomorrow than I love you today. Happy New Year 2020!\" </li>\r\n<li> \"Another wonderful year is going to end. But don\'t worry, one more year is on the way to decorate your life with unlimited colors of joy!\" </li>\r\n<li> \"May the New Year bring you happiness, peace, and prosperity. Wishing you a joyous 2020!\" </li>\r\n<li> \"May this year bring new happiness, new goals, new achievements and a lot of new inspirations in your life. Wishing you a year fully loaded with happiness.\" </li>\r\n</ul>\r\n\r\n<h2>What to Eat on New Year\'s Day?</h2>\r\n<p>People eat black peas, lentils, pork, ham, and beans on new year\'s eve. They also prepare green vegetables as it resembles money. Pork regarded as a sign of prosperity in some cultures. Maybe this is the reason many Southern New Year\'s Day dishes contain pork or ham. Cornbread symbolizes gold, so it is also essential with black-eyed peas and greens and can triple your luck with these natural complements. In different cultures, grapes, fish, and ring-shaped cakes or doughnuts symbolize luck. According to myths, If people eat this food on New Year\'s day, ensured good luck throughout the year.</p>\r\n\r\n<h2>Is Banks, Stock Market, and Post Office Open on New Year\'s Day </h2>\r\n<p>As a federal holiday, all the most significant banks remain closed on new year\'s day. All banks remain open on New Year\'s Eve, which includes  BB&T, Bank of America, Chase, Citibank, U.S. Bank, and SunTrust Bank. The other banks like Wells Fargo, Capital One, PNC Bank, and T.D. Bank are closed earlier.</p>\r\n<p>Schools, post offices, and government offices all remain close, as well as some retail businesses like in-store and supermarket branches of PNC, and SunTrust Bank also closes on this day. The stock market remains closed on this day. On New Year\'s Eve, it is a half days at the stock market.</p>\r\n<p>New Year\'s Eve is also the last business day of the year, which means you need to get your financial tasks finished by this day.</p>\r\n\r\n\r\n','/new-years-day/','New Year\'s Day : 1st January','As per Gregorian calendar New Year is celebrated every year on 1st January','New Year','/i/festival-banner.jpg','PhotoXpress','us','Y',327,'country','us',NULL,NULL),(7,'us/memorial-day','Memorial Day','National','2022-05-30','Decoration Day','','Decorating the graves of the soldiers','<img src=\"/i/memorial-day.jpg\" alt=\"memorial day\">\r\n<br>\r\n<p>Memorial Day observed on the last Monday of May every year in the United States. On this day, people pay tribute to all the soldiers who died while in the military service. On this day, people decorate the graves of the soldiers. \r\nEarlier, this day was recognized as Decoration Day. It is assumed that in 1865, Henry C. Welles, suggested at a social gathering to honor the patriotic dead by decorating their graves. The first Memorial Day observed on 5th May 1868 by General John A. Logan. In 1873, New York was the first state who officially recognizes the holiday.</p>\r\n\r\n<h2>Is Memorial Day a Government holiday?</h2>\r\n<p>Memorial Day is a Government holiday. It is a day off for the general population, schools, and businesses. All non-essential Government offices, schools, businesses, and other organizations remain closed. Most public transportation systems do not run on their regular schedule. Many people go on a short holiday or visit family or friends on Memorial Day weekend. It can create traffic on highways and at airports.</p>\r\n\r\n<h2>How do people celebrate Memorial Day?</h2>\r\n<p>A tradition of Memorial Day is to fly the flag of the United States at half staff from dawn until noon. Many people visit tombs and monuments to honor Soldiers who have died in military service. They decorate graves of the soldiers with flags and flowers. Prades and events are arranged in the country.</p>\r\n<p>Memorial Day has become less of an occasion of recognition. Many people choose to hold picnics, sports events, and family gatherings this weekend. This day is seen as the start of the summer season for social events.</p>\r\n<p>People use <a href=\"https://twitter.com/hashtag/memorialday\"  target=\"_blank\"  rel=\"nofollow\">#memorialday</a> to share on Social media to mark this day. Send Memorial Day messages to friends and relatives. There are some Messages or wishes which you can send to your loved ones.</p>\r\n\r\n<ul>\r\n<li>“Let us take inspiration from the brave soldiers to become good citizens of our nation….. Greetings on the occasion of Memorial Day!!!”</li>\r\n<li>“Today is the day to thank all those who brightened our lives with happiness and freedom. Let us bow our heads and remember the sacrifices of the soldiers. Happy Memorial Day.”</li>\r\n<li>“It demands a high spirit to sacrifice your life for your country and to leave your children free. Let us spare a few minutes to remember and thank such wonderful souls. Happy Memorial Day to you.”</li>\r\n<li>“Let us thank all the servicemen and women who are no longer with us for protecting our country by giving away your lives. Happy Memorial Day to you and your family.”</li>\r\n<li>“On this occasion of Memorial Day, let us thank every person who has served and protected the country and brought happiness to our lives. Wishing you a warm Happy Memorial Day. “</li>\r\n</ul>\r\n\r\n\r\n<h2>Are Banks and Post Office Open On Memorial Day?</h2>\r\n<p>Every bank is closed on Memorial Day each year. All the branches of credit unions, small & large banks and even TD Bank remain closed on Memorial Day. Only ATM services are available on this day.</p>\r\n\r\n<p>All post offices remain closed on Memorial Day as this is a postal holiday. FedEx and UPS stores and services also not work on Memorial Day.</p>\r\n\r\n<h2>Is the Stock Market Open on Memorial Day?</h2>\r\n<p>All the stock markets remain closed on Memorial Day each year. There is no trading day for the New York Stock Exchange, Nasdaq, and other major U.S. based markets.</p>\r\n\r\n<h2>Are Restaurants and Stores Open on Memorial Day?</h2>\r\n<p>All the general stores and restaurants are open with normal business hours on Memorial Day. It’s a big day for shopping as stores provide Memorial Day sales and deals.</p>\r\n','/memorial-day/','Memorial Day - Last Monday of May - USA Holiday','Memorial Day is observed every year on the last Monday of May in the USA.','US Holiday, Memorial Day,calendar','/i/festival-banner.jpg',' flickr/walkadog','us','Y',334,'country','us',NULL,NULL),(8,'us/martin-luther-king-day','Martin Luther King Day / M L King Day','National','2022-01-17','Dia de Martin Luther King','','volunteers in citizen action groups','<img src=\"/i/martin-luther-king-jr.jpg\" alt=\"martin luther king jr\">\r\n<br>\r\n\r\n<p>Martin Luther King Day observed on the 3rd Monday of January every year. This Day celebrates on the birthday of the experienced leader and a great man, Jr. Dr. ML King.</p>\r\n\r\n<p>ML King was a preacher of non-violence. In 1964, he got the Nobel Peace Prize for his work to end racism. In his life, he faced racism, which made a profound impact on his life. He decided to protest against such social injustice through civil disobedience and another non-violence moment. He had dreamed of making the world a better place to live. </p>\r\n<p>Firstly, ML King day was celebrated in 1986. This Day to realize the King\'s dream, to have the  equality, freedom, and dignity of all people without any social limitations. This Day is to remember their sacrifices and follow the path shown by them.</p>\r\n\r\n<h2>Is Martin Luther King Day a Public Holiday?</h2>\r\n<p>In the US, ML King Day is a Public holiday. On January 15, 1983, the civil rights hero\'s birthday, Former President Ronald Reagan signed the bill to create a nationally approved holiday. After him, this honor was only granted to the first President, George Washington.</p>\r\n <p>Most of the businesses, organizations, and the store may remain close or reduce their working hours. Public transportation systems may or may not run on their regular schedule.</p>\r\n\r\n<h2>Are Schools open on Martin Luther King Jr. Day?</h2>\r\n<p>Most of the private and public schools remain closed. But, in some states, it depends upon the districts individual school to decide if teachers and students get the Day off for this Day.</p>\r\n\r\n<h2>Are Banks and Post office Open on ML King Jr. Day?</h2>\r\n<p>Banks follow the holiday schedule, which Federal Reserve uses, and the Reserve is a part of the federal government. Most of the bank places remain closed on this Day, but mobile banking and ATMs should available. </p>\r\n\r\n<p>The U.S. Postal Service shut on MLK Day. FedEx remains open with modified service to FedEx Express and FedEx SmartPost.</p>\r\n\r\n<h2>Is the stock market open on Martin Luther King Day?</h2>\r\n<p>The New York Stock Exchange remains closed on the third Monday in January on time of MLK Day. </p>\r\n\r\n<h2>How people celebrate ML King Day?</h2>\r\n<p>Martin Luther King Day is a federal holiday and has some long-standing customs. The Day is celebrated to promote equal rights for all Americans, regardless of their background. Some educational institutions consider the Day by educating their students about the work of Martin Luther King and the struggle against racial discrimination and racism. In recent years, federal law has inspired Americans to devote some of their time to this Day, as volunteers in citizen action groups.</p>\r\n','/martin-luther-king-day/','Martin Luther King Day / M L King Day - USA Holiday','Martin Luther King Day is a national holiday in the USA, celebrated on 3rd Monday of January each year.','US Holiday, Thanksgiving Day,calendar','/i/festival-banner.jpg','','us','Y',328,'country','us',NULL,NULL),(9,'us/labor-day','Labor Day','National','2022-09-05','Labour Day',NULL,'Parades, Family reunions, Picnics, Fireworks and Public art events','<img src=\"/i/labour-day.jpg\" alt=\"labor day\">\n<br>\n\n<p>Labor Day is one of the ten national holidays in the United States. It celebrates on the first Monday of September. Labor Day honors workers and their various labor unions that contribute to the growing American economy. It is a national tribute to workers\' participation in the victory and the well being of the country. The holiday came to be through active efforts of the labor movement in the 19th century. The day has a history as workers fought for their rights.</p>\n<p>There is some controversy over who created Labor Day. The Department of Labor in the US give credit to Peter J. McGuire as the man behind Labor Day. He was the general secretary of the Carpenters and Joiners. Few historians, however, suggest that Matthew Maguire, the secretary of the Central Labor Union was the first to offer this holiday.</p>\n\n<h2>Is Labour Day a federal day?</h2>\n<p>The first Labor Day was carried in 1882. Its roots begin from the desire of the Central Labor Union to plan a holiday for workers. It became a national celebration in 1894. It was first proposed that the day would be filled with a street parade to allow the people to appreciate the effort of the trade and labor associations. After the parade, a festival was held to entertain local workers and their families. </p>\n<p>In later years, leading men and women held speeches. It is less popular now but sometimes seen in voting years. One of the logic for deciding to celebrate this on the first Monday in September, and not on May 1, which is standard in the rest of the world, was to add a holiday in the large gap between Independence Day and Thanksgiving.</p>\n\n<h2>How do people celebrate Labor Day?</h2>\n<p>Labor Day is a day of rest or the last opportunity for people to go on vacations before the summer ends. It is the last opportunity for the students to arrange parties before school starts. In some areas, people organize fireworks displays, barbecues, and public arts or sports functions. The American football season begins on or around Labor Day, and many teams play their first match of the season during Labor Day weekend.</p>\n\n<h2>What is open or closed on Labor Day?</h2>\n<p>The United States Postal Service (USPS) commemorates Labor Day, most national banks remain closed, and post offices in the US closed on this day. Government buildings such as the Department of Motor Vehicles (DMV) will remain closed on Labor Day.</p>\n<p>Labor Day is a great day for shopping. So, Labor Day sales are everywhere and dining out. People visit stores for shopping and enjoy dinner at restaurants. Every central store and restaurants are open on this day. </p>\n\n','/labor-day/','Labor Day - USA Holiday','Labor Day is celebrated as a national holiday on the first Monday of September in Canada and the USA.','labor day','/i/festival-banner.jpg','Photoxpress','us','y',337,'country','us',NULL,NULL),(10,'us/independence-day','Independence Day (USA)','National','2022-07-04','The Fourth of July','Y','Fireworks, Parades, Family reunions','<img src=\"/i/independence-day-us-july.jpg\" alt=\"independence day\">\r\n<br>\r\n<p>Independence Day honors the birthday of the US. On July 4, 1776, the United States claimed its independence from England by signing the Declaration of Independence and Democracy. In the United States, Independence Day always celebrates on July 4, unless this day falls on Sunday, in which case, it feasts on the next day.</p>\r\n<p>On this day, many political officers arrive in public events and talk regarding the country\'s history, laws, heritage, people, recent developments, and planned projects. All Americans have a day off from work on Independence Day, except for a few emergency service workers.</p>\r\n\r\n<h2>How people celebrate Independence day?</h2>\r\n<p>Independence Day is a patriotic holiday to celebrate the positive characteristics of the United States. People express gratitude and thanks for the freedom and independence fought by the first generation of today\'s Americans. The parade usually takes place in the morning and fireworks in the evening, accompanied by patriotic songs such as \"God Bless America,\" \"The Star-Spangled Banner,\" \"America the Beautiful,\" etc. The most spectacular fireworks broadcast on television.</p>\r\n<p>People celebrate independence day, according to America\'s traditions. They display an American flag outside their houses or buildings. Some employees use their holiday days to create a long weekend to break out the heat at their preferred beach or outing spot. Some people enjoy this public holiday with their families with outings, picnics, and lots of outdoor events like parades, air shows, fireworks, barbecues, and musical concerts. On this day, different activities are associate, which include watermelon or hotdog eating competitions and sporting events, like baseball games, tug-of-war games, and swimming activities.</p>\r\n\r\n\r\n\r\n<h2>Is independence day a Federal Holiday?</h2>\r\n<p>Independence Day is a public holiday. Government organizations, offices, and schools remain closed on this day. Some of the businesses may also remain close. If July 4 is on Saturday, it is celebrated one day before, on Friday. If July 4 falls on Sunday, it is celebrated on Monday, July 5.  In some years, many employees use the ratio of their vacation days to take long weekends. It can also cause crowding in some places, especially towards popular holiday destinations.</p>\r\n<p>There are several shows, parades, public events, and fireworks displays. It can cause local disruption of traffic. Public transportation systems usually do not run on their regular schedule.</p>\r\n\r\n<h2>Are Banks Open or Closed on the Fourth of July?</h2>\r\n<p>Banks remain closed on July 4, as this is a  federal holiday. Even banks like TD Bank and their branch locations close on the 4th of July every year.</p>\r\n<p>If you want to do some banking today, ATMs and online banking services can handle the tasks. These are available as usual on July 4, although some services may be delayed due to the holiday.</p>\r\n\r\n<h2>Is the Post Office Closed Today?</h2>\r\n<p>The post office remains closed on July 4.  Mails are not delivered or picked up on this day. Most UPS and FedEx services and facilities are also close on July 4 in the US </p>\r\n\r\n<h2>Are Restaurants Open July 4th, Independence Day?</h2>\r\n<p>The restaurants open on July 4, after all, many people have been off from work on this day, and one of the ways for people to relax and celebrate is to go to the restaurant with friends and family.</p>\r\n<p>So you can expect the locations to open on July 4, for major restaurant chains including McDonald\'s, Starbucks,  Taco Bell, Applebee\'s, Burger King,  Chili\'s, and many more. On the other hand, some restaurants have restricted hours. For example, Chick-fil-A is open, however close earlier at 6 pm than usual. </p>\r\n\r\n<h2>Is the Stock Market Open on Independence Day?</h2>\r\n<p>All major US-based exchanges, including the New York Stock Exchange and Nasdaq, remain closed on July 4.</p>\r\n\r\n<h2>Are Any Government Offices and Services Open?</h2>\r\n<p>On Independence Day, non-essential federal government workers and offices remain closed. Courts, local government offices,  and public libraries also remain closed. Essential services related to safety and security are open like usual on July 4.</p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','/independence-day/','Independence Day - Fourth of July : USA Holiday','Independence Day also known as the Fourth of July is the National holiday of the United States of America.','Independence Day (USA)','/i/festival-banner.jpg','Pixabay','us','Y',336,'country','us',NULL,NULL),(11,'us/halloween','Halloween','National','2022-10-31','31st October','Y','Bonfires, Games, Trick-or-Treat, Wearing Costumes,','\r\n<img src=\"/i/halloween.jpg\" alt=\"halloween\">\r\n<br>\r\n\r\n<p>Halloween is the current name of an old Celtic holiday \"Samhain.\"It celebrated on October 31 every year. People celebrate this day as a perfect beginning of a new year.  The different activities performed in Halloween are mostly connected with the idea to obtain good fortune.</p>\r\n<p>It is assumed that on this day, the spirits of the dead come back to earth in search of existing bodies to hold for the next year and try to return to the homes where they were staying. So to satisfy these spirits, people present them fruits and nuts. If the souls are not happy, it is feared that the spirits would kill the people or ruin their life.</p>\r\n\r\n<p>Immigrants from Scotland and Ireland brought this vacation to the United States. The Halloween commercialization began in the 1900s when postcards and die-cut paper decorations were created. Halloween costumes appear in stores of the US in the 1930s, and in the 1950s, the trick-and-treat custom was introduced. The types of products available in the Halloween style increased over time.  Nowadays, Halloween is a very profitable or money-making holiday for the makers of costumes, yard decorations, and candy.</p>\r\n\r\n<h2>How people celebrate Halloween?</h2>\r\n<p>Halloween is commonly seen between family, friends, and sometimes coworkers. Parties and other events may organize on October 31, before or after this date on weekends. Adults may celebrate Halloween by watching horror films, holding costume parties, or building haunted homes or graves.</p>\r\n\r\n<p>Many children wear fancy clothes and move to other houses in the neighborhood. They ask for sweets, snacks, or gifts. If they do not get the treat, they threaten to do any harm to their residents of the house. It is known as playing \'trick-or-treat\' and seen as a friendly feeling, with no bad or mean tricks. However, if your children play, it is essential to accompany them and to check their \'treats\' to make sure they are secure to eat or play.</p>\r\n \r\n\r\n\r\n<p>Some groups create lanterns with \'scary\' faces out of pumpkins or other vegetables and decorate their homes and backyards in Halloween style. These were traditionally indicated to drive away evil spirits. If you are at home on Halloween day, it is a good idea to have a bowl of small gifts or desserts to offer them who knocks your door. That will help you to satisfy the little lives in your neighborhood.</p>\r\n \r\n<p>One idea is that relationships with Halloween are raising donations for the United Nations International Children\'s Emergency Fund (UNICEF). On Halloween night, some youngsters take small cardboard boxes with the UNICEF logo on them to collect coins rather than the usual candy at the time of trick-or-treating. The money raised from this then give to UNICEF to support the needy kids worldwide.</p>\r\n\r\n<p>Use <a  href=\"https://twitter.com/hashtag/halloweenday\"  target=\"_blank\" > #halloweenday </a> on social media to mark this day. Send Halloween Day messages to friends and relatives. There are some Messages or wishes which you can send to your loved ones.</p>\r\n<ul>\r\n<li> \"Beware the creatures of the night, at Halloween, they growl and bite. Have a good time!\" </li>\r\n<li> \"Halloween is a night for ugly witches and evil vampires. You should fit right in - Enjoy!\" </li>\r\n<li> \"Wishing you a Halloween filled with special treats and lots of exciting tricks!\" </li>\r\n<li> \"Sending you good wishes for a Happy Halloween. Have fun hanging with the gang!\" </li>\r\n<li> \"Wishing you a fun Halloween filled with magical surprises! May you get lots of treats that are good to eat!\" </li>\r\n</ul>\r\n\r\n\r\n<h2>Is Halloween a government holiday?</h2>\r\n<p>Halloween is not included in the government holidays list. Government services and offices are operating as usual, and public transportation services run on their regular schedules. If you drive around in the late evening, it is necessary to keep a careful lookout for kids who are inexperienced in being out on the street after night. They may also be excited and rush out suddenly from between vehicles or behind bushes</p>\r\n\r\n\r\n\r\n','/halloween/','Halloween : 31st October','Halloween is celebrated on 31st October every year and is mostly associated with the idea to obtain good fortune.','US Holiday, Halloween,calendar','/i/festival-banner.jpg','PhotoXpress','us','Y',339,'country','us',NULL,NULL),(12,'us/corpus-christi','Corpus Christi Festival','National','2022-06-16','Corpus Domini','Y','Street procession, Church events','<img src=\"/i/corpus-christi.jpg\" alt=\"Corpus Christi\">\r<br>\r<p>Corpus Christi is a Christian festival where Christians honor the Holy Body of Christ. A Latin phrase of Corpus Christi refers to the body and blood of Christ, and it is also known as Corpus Domini. The festival is celebrated differently among Christians in different regions of the world. The standard part is that bread and wine are usually offered as a symbol of the Body and Blood of Christ in his Communion.</p>\r\r<p>It is a celebration that has been honored by many Christians, especially the Catholic Church, since 1246 in honor of the Eucharist.  This event commemorates the Last meal of the day before Jesus\' crucifixion, as described in the Bible. The Roman Catholic Church mainly celebrates this day, but it also included in the calendar of some Anglican churches.</p>\r\r<p>Texas has a city of Corpus Christi, named after the day \"Corpus Christi.\" In 1519, Spanish explorer Alonzo Alvarez de Pineda explored a lush semi-tropical bay on this day. The inlet and the city later developed in that area and practiced the name of the feast day. The other name of the town is \"Sparkling City by the Sea.\"</p>\r\r<h2>How Do People celebrate Corpus Christi?</h2>\r<p>In commemoration of the Last feast of the day before Jesus\' crucifixion, many people, especially those of the Catholic denomination, get Communion on this day. It is observed on Sunday next to Trinity Sunday in some parts of the United States, although in other places, the day falls on the Thursday after Trinity Sunday.</p>\r\r<p>Some people, especially children, may celebrate their first Communion on this day. This method is also known as Eucharist. It observed throughout the life of a Christian and is a time of worship when people believe that they come together to remember and celebrate the life and works of Jesus Christ. It includes the taking of bread and wine in memory of Christ\'s body and blood.</p>\r\r \r<h2>Corpus Christi Facts:</h2>\r<ul>\r<li>A 12th-century nun, St. Juliana of Mount Cornillion (Belgian), initiated the effort to introduce a feast day for the Blessed Sacrament. She reportedly had thought of the Church as a bright full moon with one dark spot, which she interpreted as the lack of a feast for the ceremony. Pope Urban IV declared the Corpus Christi\'s Feast in the mid 13th century.</li>\r<li>The priest was the single person who received the ingredients in the Middle Ages. The gathering watched him eat the bread and drink the wine.</li>\r<li>The Corpus Christi\'s Feast held on the Thursday after Trinity Sunday. In Western Christianity, it originally celebrated in the Roman Catholic Church. Some churches have introduced the service to the following Sunday. The day celebrates the foundation of the Blessed Sacrament or Holy Communion.</li>\r</ul>\r\r','/corpus-christi/','Corpus Christi is celebrated every year on Thursday before Good Friday','Corpus Christi is a Christian festival where Christians honor the Holy body of the Christ','Corpus christi festival','/i/festival-banner.jpg','Pixabay','us','Y',385,'religious','christian',NULL,NULL),(13,'us/columbus-day','Columbus Day','National','2022-10-11','Day of the Race','','Parades, Family reunions, Picnics, Fireworks and Public art events','<img src=\"/i/columbus-day.jpg\" alt=\"columbus day\">\r\n<br>\r\n\r\n<p>Columbus Day observed in most states of the United States, a federal holiday commemorating the arrival of Christopher Columbus in the country. Christopher was an Italian explorer who discovered America in October 1492. Columbus Day celebrates on the second Monday in October.</p>\r\n<p>He was born in the year 1451 in Genoa, Italy. Although Columbus had little formal education, he was a dedicated self-educated man, who succeeded all chances to become one of the world\'s greatest explorers. The meaning of Columbus Day derived from the victory of explorer Christopher Columbus as the first person to discover North America.</p>\r\n <p>Columbus Day started as a festival of Italian-American heritage and was first held in 1869 in San Francisco. Firstly State-wide Columbus day was celebrated in Colorado in 1907. In 1937, Columbus Day was an approved holiday across the United States. After 1971, it has been observed on the second Monday in October.</p>\r\n\r\n<h2>How do people celebrate Columbus Day?</h2>\r\n<p>The Columbus Day has some traditions which observed on this day, include teachings about Christopher Columbus and his journey. In some towns and cities, they arranges parades, special church services, and large events. </p>\r\n<p>The festivities are incomplete without a taste of traditional dance and Italian-American heritage, like Italian music, Italian food, and street fairs with colorful costumes. The day\'s activities include Pow Wow, lessons about indigenous American culture and traditional dance programs.</p>\r\n<p>The celebrations in New York and San Francisco are especially unique. In Hawaii, Columbus Day observed as Discoverers\' Day, but it is not a state holiday. Instead of Columbus Day, many states now celebrate Native Americans\' Day or Indigenous People\'s Day.</p>\r\n<p>Use hashtag <a href=\"https://twitter.com/hashtag/columbusday\"  target=\"_blank\"  rel=\"nofollow\">#ColumbusDay</a> on social media to point this day. Send Happy Columbus Day messages to your family and friends. </p>\r\n\r\n<h2>Is Columbus Day a federal holiday?</h2>\r\n<p>Columbus Day is a public holiday in various parts of the United States, but some states do not have a holiday. In the US, it is a federal government holiday in 34 states, so offices remain closed in those states. Many shops and businesses are operating as usual in other states, where Columbus Day is not a public holiday. So, Public transportations run on a regular schedule.</p>\r\n\r\n<h2>Argument Regarding Columbus Day</h2>\r\n<p>Many argued that Columbus should not be respected, but rather punished for his activities. They tell that it is because of Columbus that the European colonies arrived in America heading to colonization, the slave trade, and the loss of history and culture of the Native peoples of America.</p>\r\n\r\n<h2>Which States Do Not Celebrate Columbus Day?</h2>\r\n<p>Although Columbus Day celebrated in various parts of the United States, some states do not participate in the celebrations. These include South Dakota, Vermont, Hawaii, Alaska, and Oregon. Alternatively, they commemorate this day with an alternative holiday. For example, Hawaii celebrates it as Discoverer\'s Day, Vermont calls it Indigenous Day while South Dakota commemorates Native American Day.</p>\r\n\r\n<h2>Columbus Day Facts</h2>\r\n<ul>\r\n<li>In 1906, Colorado was the primary state to officially recognize and commemorate Columbus Day.</li>\r\n<li>Christopher Columbus\' initial establishment on Hispaniola Island was called Villa de Navidad (Christmas Town).</li>\r\n<li>In 1971, the official holiday was proposed to the second Monday in October to provide workers in the US an extended weekend.</li>\r\n</ul>\r\n\r\n\r\n\r\n','/columbus-day/','Columbus Day - Day of the Race - second Monday in October','Columbus Day honors Christopher Columbus first voyage to the Americas on 12th October 1492.','US Holiday, Columbus Day,calendar','/i/festival-banner.jpg',' flickr.com/sean94112','us','Y',338,'country','us',NULL,NULL),(14,'us/mothers-day','Mother\'s Day','National (USA & Other)','2022-05-08','','','Sending gifts to Mother','<img src=\"/i/mothers-day.jpg\" alt=\"mothers day\">\r\n<br>\r\n<p> Mother\'s Day commemorated every year in the USA in honor of mothers. It is an annual holiday observed on the second Sunday in May. Mother\'s Day celebrates to recognize mothers, motherhood, and maternity bonds, as well as the positive contributions they have made to society. It is time to appreciate the figures of mothers and mothers.</p>\r\n \r\n<p>It was established by Anna Jarvis, who proposed the idea of ​​celebrating Mother\'s Day in 1907 in honor of mothers and motherhood. She was successful in getting it recognized at the national level in 1914. The primary official Mother\'s Day had observed at St. Andrew\'s Methodist Church in Grafton, West Virginia, On 10 May 1908.</p>\r\n\r\n<h2>How do people celebrate Mother\'s Day?</h2>\r\n<p>Mostly, people post greeting cards and gifts to their mother or visit her place to make her feel special. Common Mother\'s Day presents are clothing, candy, chocolate, flowers, jewelry, and give treats like a tour to a spa or beauty treatment. Some groups organize a special treat at home or in a restaurant or plan a trip with all family members. Many schools help students to prepare handcrafted gifts or cards for their mothers, before the day or week of Mother\'s Day.</p>\r\n\r\n<p>Use <a href=\"https://twitter.com/hashtag/happymothersday\"  target=\"_blank\"  rel=\"nofollow\">#happymothersday</a> on social media to mark this day. Send Mother\'s Day messages to mothers, mother figures, and relatives. There are some Messages or wishes which you can send to your loved ones.</p>\r\n<ul>\r\n<li> \"Wishing you all the Love, Health, and Happiness that you so deserve.\" Happy Mother\'s Day to all the mothers of the world!\" </li>\r\n<li> \"To the best mom in the world. Thank you for being chief cook, counselor, taxi-driver, cheerleader, and best all-around mom in the \"world.\" ― Happy Mother\'s Day\" </li>\r\n<li> \"Wishing you a fabulous Mother\'s day! You\'re the best mom I could have asked for.\" </li>\r\n<li> \"May all the love you gave to us come back to you a hundredfold on this special day!\" </li>\r\n</ul>\r\n\r\n<h2>Is Mother\'s Day a national holiday?</h2>\r\n<p> Mother\'s Day is not a national federal holiday in the US. Every organization, business, and store may open or closed, as it falls on Sunday every year. Public transportation systems run on their normal Sunday schedules. Restaurants can be more bustling than usual, as some people take their mothers out for a treat.</p>\r\n\r\n<h2>Mother\'s Day Facts </h2>\r\n<ul>\r\n<li>In 2019, Buyers spent a total of $25.0 billion on mother\'s day, according to the National Retail Federation.</li>\r\n<li>People search more Flowers on the internet for Mother\'s day rather than Valentines\' Day.</li>\r\n<li>120 million Mother\'s Day cards are exchanged yearly in the United States.</li>\r\n<li>62% of Americans go restaurants for dinner, it the busiest day of the year for restaurants.</li>\r\n<li>Mother\'s Day is America\'s third-biggest retail holiday after the winter holidays and back to school season</li>\r\n<li>The busiest phone day of the 12 months is Mother\'s day, with over 122.5 million calls in one day.</li>\r\n<li>A tradition of mother\'s day is wearing a carnation. A colorful carnation implies that a person\'s mother is living, while anyone who wear white carnation, is used to honor a deceased mother.</li>\r\n</ul>\r\n\r\n \r\n\r\n\r\n\r\n','/mothers-day/','Mother\'s Day : 2nd Sunday of May','Mother’s Day is celebrated in honor of the mothers and is celebrated every year on 2nd Sunday of May.','Mother\'s Day','/i/festival-banner.jpg','PhotoXpress','us','Y',333,'country','us',NULL,NULL),(15,'us/fathers-day','Father\'s Day','National (USA & Other)','2022-06-19','','','Send gifts to father, Family reunions','\r\n<img src=\"/i/fathers-day.jpg\" alt=\"fathers day\">\r\n<br>\r\n\r\n<p>In the United States, Father\'s Day happens on the third Sunday of June. Father\'s day celebrates to honors the contribution of fathers, and fathers figure to make the children\'s lives. It may have its origins in a memorial service organized for a large group of men, many of them fathers, who died in a mining accident in 1907 at Monongah, West Virginia.</p>\r\n<p>In 1909, Mrs. Sonora Dodd was supposed to be the first to propose the concept of commemorating Father\'s Day in honor of the father. The first Father\'s Day was observed on 19 June 1910 in the USA.</p>\r\n\r\n<h2>Is Father\'s Day a Federal Holiday?</h2>\r\n<p>Father\'s Day is not a federal holiday. In the United States, it falls on Sunday, and mostly all the businesses regularly follow the Sunday opening hours. Organizations, stores, and businesses remain open or closed, as they are on every Sunday in the year. The public transportation system operates for its regular Sunday schedule. Restaurants can be more bustling than usual, as some people take their father out for a treat.</p>\r\n\r\n<h2>What do people celebrate father\'s day?</h2>\r\n<p>Father\'s Day is an opportunity to celebrate the contribution of your father has made to your life. On this day, people appreciate their fathers or fathers like figures, who have a grand contribution and have a significant influence on their lives. Many people mail or give cards, gifts, or flowers to their father. Common Father\'s Day gifts include clothing, sports goods, outdoor cooking equipment, electronic gadgets, and equipment for housekeeping.</p>\r\n\r\n<p>Father\'s Day is a modern holiday, so every family has its traditions. They can honor all \'father\' figures, directly on phone calls or greeting cards to large parties, especially in the elongated family. Father figures may include father, father-in-law, stepfather, grandfather, and great-grandfather, and even other male relatives. The days and weeks before Father\'s Day, many schools help their students to prepare handmade cards or gifts for their fathers. </p>\r\n\r\n<p>Use<a href=\"https://twitter.com/hashtag/fathersday\"  target=\"_blank\" rel=\"nofollow\"> #fathersday</a> on social media to mark this day. Send fathers day messages to fathers and fathers figures. There are some Messages or wishes which you can send to your loved ones.</p>\r\n<ul>\r\n<li>\"Happy Father\'s Day to the man who taught me how to step and throw, how to field a grounder, how to follow through, and pretty much every other important thing I know about baseball and living!\"</li>\r\n<li>\"Happy Father\'s Day to my wonderful godfather. My parents couldn\'t have picked a better (or funnier!) man for the job!\"</li>\r\n<li>Thank you for the example you set and for your leadership in our family. We love you, Dad!\"</li>\r\n<li>\"For teaching me to fish, to make campfires, and always to be kind, thanks, Grandpa!\"</li>\r\n<li>\"Happy Father\'s Day to the man of my heart, the father of our children, the love of my life.\"</li>\r\n<li>\"Your baby will be here before you know it! I hope this Father\'s Day will be the first of many happy ones for you.\"</li>\r\n\r\n','/fathers-day/','Father\'s Day : 3rd Sunday of June','Father\'s Day is celebrated in honor of the Fathers and is celebrated every year on 3rd Sunday of June.','Father\'s Day','/i/festival-banner.jpg','PhotoXpress','us','Y',335,'country','us',NULL,NULL),(16,'us/good-friday','Good Friday','National / Religious','2022-04-15','Holy Friday, Great Friday, Black Friday, Easter Friday','','No traditional celebrations','<img src=\"/i/good-friday.jpg\" alt=\"Good Friday\">\r\n<br>\r\n<p>Good Friday is also recognized as Holy Friday. It primarily observed as a Christians festival. The Good Friday\'s date changes every year on the base of Lunar Calendar. It falls two days before Easter Day. It is a time of penance, fasting, and remembering the anniversary of Jesus Christ\'s death on the Cross.</p>\r\n<p>The Good Friday observance was begun in the 4th century by Egeria. This ancient practice refers to the time of gasting and self-punishment on the death anniversary of Christ.</p>\r\n\r\n<h2>Is Good Friday a Federal Holiday?</h2>\r\n<p>Good Friday is a federal holiday in 11 states, where it is a day off for the people. Schools and mostly all the businesses remain closed. But in other states, it is not a national holiday and a working day for many Americans. Some people may prefer to skip a day work and have a more extended \"spring break\" weekend.</p>\r\n\r\n<h2>How people celebrate Good Friday in the US?</h2>\r\n<p>Some Christians visit the church to attend church services or prayers vigils. It is a day of sadness and quiet prayers for many people. Usually, Candles are extinguished, and paintings, statues, and crosses have wrapped in purple, black, or gray cloth. Some people of Catholics community consider Good Friday as a fasting day, while others partially observe a fast that includes the elimination of meat from their food.</p>\r\n<p>On Good Friday, some homes have a quiet environment with little or no outdoor activities and limited radio, television, and computer access. Others like to play music such as JS Bach\'s St. Matthew\'s Passion. Some people bake buns in hot cross shape as a traditional Good Friday sweet.</p>\r\n\r\n<h2>Is banks and stock market open on Good Friday?</h2>\r\n<p>Good Friday leads Easter as a major holiday in the Christianity. However, the government does not consider it as a federal holiday. It is also not recognized as a bank holiday. However, this does not mean that every US bank of the city will be open.</p>\r\n<p> Nasdaq, the New York Stock Exchange, and other major U.S. markets remain closed on Good Friday. </p>\r\n\r\n<h2>Are schools closed on Good Friday?</h2>\r\n<p>Good Friday is a religious holiday, and students have a final day in Catholic schools and some other religious institutions. While most public schools across the nation remain open on Good Friday, there are many exceptions, so many students have their day off. For example, public schools are closed in many large cities, including Boston, New York, Miami, Denver, and Chicago City.</p>\r\n\r\n<h2>Are government offices open on Good Friday?</h2>\r\n<p>Good Friday is not a federal holiday, so all federal government offices remain open with normal hours. On the other hand, Good Friday is a state holiday in Delaware, New Jersey, Connecticut, Tennessee, and North Carolina. In all these areas, non-essential state government, courts, and offices remain closed on Good Friday. However, local and county government offices and courts are sometimes open.</p>\r\n\r\n<h2>Is the post office open on Good Friday?</h2>\r\n<p>Good Friday is not a postal and national holiday. Services of post offices remain open with normal hours.</p>\r\n\r\n<h2>Are grocery stores, restaurants, and other retailers open on Good Friday?</h2>\r\n<p>All the supermarkets, restaurants, and other stores remain open on Good Friday with regular business hours.</p>\r\n\r\n<h2>Symbols of Good Friday</h2>\r\n<p>The Cross or crucifix  depicts the way Jesus died, is an essential figure visible on Good Friday. Some crosses show a statue of Christ. Other symbols of Good Friday include crosses, statues, and paintings, which are cover with black cloth and denote grief in churches and some homes.</p>\r\n','/good-friday/','Good Friday in United States','Good Friday, also known as Holy Friday, Great Friday  is one of the major holidays primarily observed by Christians.','US Holiday, Good Friday,calendar','/i/festival-banner.jpg',' flickr/victornuno','us','Y',331,'country','us',NULL,NULL),(17,'us/st-patricks-day','St. Patrick\'s Day','Religious','2022-03-17','St. Paddy\'s Day, Feast Day, St. Patty\'s Day','',' Parades, Eating special Irish dishes, Organizing green themed parties','<img src=\"/i/st-patricks-day-prade.jpg\" alt=\"Patricks day\">\r\n<br>\r\n<p>St. Patrick\'s day was a Christian feast day and was celebrated by the Catholic Church, Eastern Orthodox Church, Lutheran Church, and Anglican Communion. The day honors the arrival of St. Patrick and Christianity in Ireland and celebrates the culture and customs of the Irish in general. Celebrations usually include public parades and festivals, ceilis, and wearing green dress or shamrock. </p>    \r\n\r\n<p>The first celebrations of St.Patrick\'s Day were held in 1759 by a gathering of Irish soldiers who fought on behalf of the British army. In the 5th century, he encouraged people of Ireland to convert into Christianity and also helped \"drive off snakes\" from Ireland. \"Snakes\" is considered to be a reference to evil forces present in the country. St. Patrick\'s Day, also known as the Feast Day, is celebrated to remember the St. Patrick\'s death anniversary.</p>\r\n<p>People of the Christian, who belong to the denominations of the churches, also attend church services, and historically the ban on drinking and drinking was lifted for the day, which made the holiday\'s tradition of alcohol consumption have encouraged and promoted.</p>\r\n\r\n<h2>How do people celebrate St Patrick\'s Day?</h2>\r\n<p>The celebrations focus on Irish-themed parties, drinks, and food. Many people come to the character by wearing green clothes and eating green food. Irish clubs and pubs often have parties or exclusive deals. Large street parades mark St. Patrick\'s Day in places such as:</p>\r\n<ul>\r\n<li>Savannah</li>\r\n<li>Houston</li>\r\n<li>Pittsburgh</li>\r\n<li>Denver</li>\r\n<li>Detroit</li>\r\n<li>Philadelphia</li>\r\n<li>New York</li>\r\n<li>Seattle</li>\r\n<li>Boston</li>\r\n<li>Toronto</li>\r\n<li>Chicago</li>\r\n<li>New Orleans</li>\r\n</ul>\r\n<p>In some cities, water in public houses is painted green. The most notable water body dyed in green was the Chicago River in 2005.</p>\r\n\r\n<p>You can also bring the celebration of St. Patrick\'s Day on social media. Use the hashtag <a href=\"https://twitter.com/hashtag/HappySt.PatricksDay\"  target=\"_blank\"  rel=\"nofollow\">#HappySt.Patrick\'sDay</a> to tell your friends and followers that you are participating in the celebration of this day.</p>\r\n<ul>\r\n<li> \"See you at evening-feast on beef and cabbage today and a host of Irish blessings. Happy St Patrick\'s Day\"</li>\r\n<li> \"Don\'t forget to dress in green... Happy St Patrick\'s Day.\" </li>\r\n<li> \"Cheers... to Ireland\'s faith and pride... Happy St Patrick\'s Day\"</li>\r\n<li> \"Hope you find your pot of gold... Happy St Patrick\'s Day\"</li>\r\n<li> \"You look a stunner with green Rosette and flowing green ribbons... blessings on St Patrick\'s Day.\" </li>\r\n</ul>\r\n<h2>What is Open or Closed on St. Patrick\'s Day?</h2>\r\n<p>St. Patrick\'s day is not a government holiday in the United States. Schools, businesses, and organizations are as open as ever. Public transport systems run on their regular schedule. There may be some local disruption of traffic due to the St. Patrick\'s Day Parade. It is particularly valid in cities with a vast Irish-American population, including New York, New Orleans, and Seattle. The show may take place on or around March 17, so it is a great idea to check local experts for the exact location, date, and time.</p>\r\n\r\n\r\n','/st-patricks-day/','St. Patrick\'s Day : A Christian Festival','St. Patrick\'s Day is a Christian Festival celebrated every year on a Monday closest to 17th March.','US Holiday,St. Patrick’s Day,holidays','/i/festival-banner.jpg','wikiPedia','us','y',746,'country','canada',NULL,NULL),(18,'us/easter','Easter','Religious','2022-04-17','Easter Sunday','',' Prayer, Donation to poor, Easter egg hunting','<img src =\"/i/easter-sunday.jpg\" alt=\"easter sunday\">\r\n<br>\r\n\r\n<p>Easter celebrates by Christians to commemorate the resurrection of Jesus Christ and considered as a rebirth of Christianity. It observes on the first Sunday of a full moon day after the spring equinox. </p>\r\n\r\n<p>In Pagan times, many groups of people organized spring festivals. People celebrated the rebirth of nature, restoring the fertility of the land and many young animal\'s births. The origin of hunting and eating of easter eggs starts from here.</p>\r\n<p>In Christian times, spring was associated with the cross and resurrection of Jesus Christ. The cross is remembered on Good Friday, and the revival is recognized on Easter Sunday.  The idea of the resurrection connected with the concepts of rebirth in Pagan beliefs.</p>\r\n\r\n<h2>How people celebrate Easter?</h2>\r\n<p>Several churches arrange special services on Easter Sunday, which celebrate Jesus Christ\'s rebirth after his crucifixion. The traditional celebration of the festival organizes in the church, which involves a dimly lightened church with special prayers sung in recognition of Jesus Christ.</p>\r\n<p>One more necessary feature of Easter is an egg. An egg is a token of rebirth for the Christian community, so they decorated eggs nicely.  Eggs can be hard-boiled that can be eaten later, but they may also use model eggs made of plastic, candy, chocolate, or other materials. Egg hunting has become very important at Easter. Probably, Some of the Eggs are hidden by a hare or rabbit. Then children search for those eggs. In some regions, Easter egg hunts are a common way for local businesses to promote their business or may even be arranged by churches.</p>\r\n\r\n\r\n<p>Use <a href=\"https://twitter.com/hashtag/easter\"  target=\"_blank\"  rel=\"nofollow\">#Easter </a> on social media to mark this day. Send Easter messages to friends and relatives. There are some Messages or wishes which you can send to your loved ones.</p>\r\n<ul>\r\n<li> \"May this special day of Easter bring joy, love, and peace to you and your family. May the beauty of God, the Son, and the Holy Spirit warm your home.\" </li>\r\n<li> \"Easter brings fun, Easter brings Happiness, Easter brings God\'s endless blessings, Easter brings love and the freshness of spring. Happy Easter to you and your family!\" </li>\r\n<li> \"Warm greetings and best wishes to you and your family. May God shower you with all the great things that you want, for He has risen!\" </li>\r\n<li> \"Easter brings God Endless Blessings, Easter brings new love… Happy Easter to You, with all best wishes!\" </li>\r\n</ul>\r\n\r\n<h2>Is Easter a  federal holiday?</h2>\r\n<p>Easter Sunday is not a federal holiday, but many stores closed in various parts of the US. If they are open, they may have limited business hours. In some cities, public transportation systems usually run according to their regular Sunday schedules. But, it is best to check with local transportation officials to see if any changes implemented during Easter Sunday.</p>\r\n\r\n<p>Most of the services for Federal Express and UPS remain closed for Easter Sunday. Nasdaq, the New York Stock Exchange, and other major U.S. exchanges closed on Easter, of course, because it is a Sunday. Most stores and restaurants are open on Easter Sunday, but some national chains, including Target, Costco and Chick-fil-A, close on Easter.</p>\r\n\r\n<h2>Are Banks Open on Easter?</h2>\r\n<p>For Easter Sunday, banks that are normally closed on Sundays, remain closed on Easter. Besides, banks with branches that usually open on most Sundays, including TD Bank remain closed on Easter.</p>\r\n\r\n<h2>Interesting Facts Related to Easter</h2>\r\n<ul>\r\n<li>For many Christian groups, the first Easter ceremony for the year is the Service of Light. The worship typically begins in darkness on the previous night or in early Sunday morning. Light is taken into the church with candles to signify the hope based on the resurrection. The service ends with the lighting of a paschal candle, which depicts Christ.</li>\r\n<li>Easter eggs symbolize new life and also signify the shape of the tomb of Jesus.</li>\r\n<li>The colors for Easter are white and golden. Easter lilies are attractive decorations in American churches. The blooming of white flowers are in the spring season and signify the beauty and purity.</li>\r\n<li>Easter marks the 40-day fast of fasting, the end of Lent, preparation, and penance observed by the faithful.</li>\r\n<li>The Easter season begins on Easter Sunday and lasts 40 days until Pentecost. The Easter date is determined by the moon. Easter is the Sunday after the initial full moon of springtime.</li>\r\n<ul>\r\n\r\n\r\n','/easter/','Easter : A major Christian Festival','Easter is a Christian Festival celebrates the resurrection of Jesus','US Holiday,easter sunday,holidays','/i/festival-banner.jpg','','us','Y',332,'country','us',NULL,NULL),(19,'us/christmas','Christmas','Religious','2022-12-25','25th December','Y',' Wearing costumes, Home decoration, Family gathering, Gift exchange','<img src=\"/i/christmas.jpg\" alt=\"Christmas\">\r\n<br>\r\n\r\n<p>Christmas is a Christian holiday admiring the birth of Jesus. Christians celebrate Jesus\' birthday on December 25, whereas Orthodox Christians celebrate it on or near January 7. They believe that Jesus is the son of God, the Messiah sent from Heaven to save the world. It developed over two millennia into a globally religious and secular ceremony, incorporating numerous pre-Christian, pagan customs into the celebration.</p>\r\n\r\n<h2>Is Christmas a Federal Holiday?</h2>\r\n<p>In the 1870s, the federal government started to recognize state holidays as federal holidays. Christmas, George Washington\'s birthday, Independence Day, New Year\'s Day, and Thanksgiving were the first five holidays to be approved as federal holidays. All the employees have to take a three-day holiday to celebrate Christmas with families, except that employees who work in critical government and state establishments. Many countries around the world adopted the concept of nationalization of Christmas. During the festival, facilities like schools, hotels, businesses, and banks remain closed.</p>\r\n\r\n<h2>How People celebrate Christmas?</h2>\r\n<p>People celebrate Christmas Day in several ways. It is usually connected with traditions from pre-Christian winter celebrations. Many people decorate their houses, visit relatives or friends\' houses, and exchange gifts. The days or even weeks before Christmas Day, people start to decorate their homes and gardens with Christmas trees, lights, and much more.</p>\r\n\r\n<p>People arrange a special meal for their own family or friends, usually consisting of turkey and a variety of other festive foods, and exchange gifts with them. Especially, Children receive a lot of presents from Santa Claus. It has led to Christmas Day becoming a frequently commercialized holiday. On this occasion, a lot of people spend a large part of their earnings on food and gifts.</p>\r\n\r\n<p>Many churches and communities arrange special events, which include decorating a shopping mall, placing a Christmas tree, representing a Nativity display, and concert. They arrange plays and songs on the theme of Christmas. Some groups of people organize a charitable event, in which they arrange food and shelter for the needy people.</p>\r\n \r\n<p>People go to church to attend events on Chrismas eve. There people singing Christmas carol, some of the lines of the carol are mentioned below:</p>\r\n<p> \"O come, all ye faithful, joyful and triumphant!<br>\r\nO come ye, O come ye, to Bethlehem<br>\r\nCome and behold Him<br>\r\nBorn the King of Angels<br>\r\nO come, let us adore Him<br>\r\nO come, let us adore Him<br>\r\nO come, let us adore Him<br>\r\nChrist, the Lord! “</p>\r\n\r\n<p>Use <a href=\"https://twitter.com/hashtag/merrychristmas\"  target=\"_blank\"  rel=\"nofollow\">#merrychristmas</a> on social media to mark this day. Send Merry Christmas messages to friends and relatives. There are some Messages or wishes which you can send to your loved ones.</p>\r\n<ul>\r\n<li> \"Christmas is about spending time with family and friends. It\'s about creating happy memories that will last a lifetime. Merry Christmas to you and your family!\" </i>\r\n<li> \"May the closeness of friends, the comfort of home, and the unity of our nation, renew your spirits this festive season. Merry Christmas to your family.\" </li>\r\n<li> \"\'This the season to wish one another joy and love and peace. These are my wishes for you, Merry Christmas, our dear friends, may you feel the love this special day.\" </li>\r\n<li> \"May this festive season sparkle and shine, may all of your wishes and dreams come true, and may you feel this happiness all year round. Merry Christmas!\" </li>\r\n</ul>\r\n\r\n<h2>What do people eat on Christmas?</h2>\r\n<p>Traditional Christmas dinner includes a turkey with stuffing, gravy, cranberry sauce, mashed potatoes, and vegetables like turnip, parsnips, carrots, etc. Other things also include in this like types of poultry, ham, and roast beef, etc. For tasty yummy desert, people prepare pumpkin or apple pie, Christmas pudding, raisin pudding, or fruit cake.\r\nBut depending upon region, some people prepare tamales, roast goose with red cabbage, roast pork, crawfish, or seven fishes seafood salad.</p>\r\n\r\n<h2>Some interesting facts related to Christmas</h2>\r\n<ul>\r\n<li>The first Christmas card approved by Sir Henry in 1843. This card is designed by John Calcott Horsley and includes words \"A Merry Christmas and a Happy New Year to you.\" </li>\r\n<li>In 325 A.D., Constantine the Great defined holiday and set a date for Birthday of Jesus as December 25. </li>\r\n</li>In 18 Century, a custom of Christmas tree had begun in Germany. Lit of candles represents the light of Christ in the world.</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n','/christmas/','Christmas Day or XMas is celebrated on 25th December : USA Holidays','Christmas Day is a Christian festival, celebrated on 25th December in all over the world.','Holiday, Christmas,calendar','/i/festival-banner.jpg','PhotoXpress','us','Y',342,'country','us',NULL,NULL),(20,'us/baptism-of-the-lord','The Baptism of Jesus','Religious','2022-01-09','The Baptism of Christ','','','<p>In Catholicism, a great deal of emphasis is placed on the rituals surrounding the events of the Lord Jesus\'s life from birth to resurrection to death. Every detail is minutely scrutinized and carefully celebrated in its own way. One such celebration is the Baptism of the Lord, which is celebrated in January every year. \r\n<p>It was originally observed through the event known as the Epiphany, which marked three events from the Gospel. It denoted the visit of the three Magi to the baby Jesus in his crib, the baptism of Jesus by the river Jordan and the wedding at Cana where Jesus is said to have performed his first miracle, turning water to wine. The Magi became the most prominent celebration of the Epiphany, and in 1955 Pope Pius XII instituted a separate liturgical commemoration for the Baptism, as the 13th of January. This was changed by Pope John XXIII and subsequently by Pope Paul IV, to its current date of the first Sunday after 6th January (the Epiphany), or if in a particular country the Epiphany is celebrated on 7th or 8th January, the following Monday. The feast marks the end of the liturgical season of Christmastide and the beginning of Ordinary Time.\r\n<p>The Baptism of Christ would seem to be a paradox, since in Catholicism baptism is meant for remission of past sins and Christ was said to be born without Original Sin. However, by humbling himself, the Son of God, to John the Baptist, Christ is seen to have been taking on the sins of others and giving his followers a model to replicate - it was necessary not for him, but for mankind. After the Epiphany, which is seen as the \"first manifestation\" of the Lord, the Baptism is the \"second manifestation\" which marks the beginning of Christ\'s public ministrations.\r\n<p>The day is marked by feasting by Catholics, with a particular liturgy or set of prayers being read. Pope John Paul III began a tradition of christening babies at the Sistine Chapel on this day. Around the world, different water-centered traditions exist, such as in Ukraine, where craftsmen\'s fairs are held with traditional food, drinks and entertainment and devout Catholics bathe in ice-cold lake water. Across southern and eastern Europe, orthodox believers jump into frigid water to retrieve a wooden crucifix that is thrown in. In Bulgaria and Romania also, similar traditions are followed. From pulpits, through publications and all forms of outreach, the Catholic Church uses this day to affirm belief in Christ and the importance of the rituals of Catholicism even in the modern day context of multiple fractions in Christianity and growing atheism. Practicing Catholics take this day as an opportunity to remember their own baptisms, and reaffirm what they see as their baptismal calling - to announce the goodness of their lord.\r\n<p>The Feat of the Baptism of our Lord, as it is formally called, is one of the high feasts of the Catholic Church, and marks a solemn occasion in the life of Christ as their Lord and savior.','/baptism-of-the-lord/','The Baptism of Jesus : A Christian Festival','Baptism of Christ is a Christian Festival celebrated every year in the month of January','US Holiday,holidays,Baptism of the Lord','/i/festival-banner.jpg','wikiPedia','us','Y',370,'religious','christian',NULL,NULL),(22,'singapore/hari-raya-haji','Hari Raya Haji / Eid ul-Adha / Bakri Id','Religious','2022-07-10','Eid-Al-Adha, Bakri Id','Y','Prayer, Wearing new clothes, exchanging gifts','<img src=\"/i/hari-raya-haji.jpg\" alt=\"Hari Raya Haj i/ Eid al-Adha\">\r\n<br>\r\n<p>Eid al-Adha, also recognized as the Festival of Sacrifice or Feast of Sacrifice, celebrates accomplishment. Eid al-Adha also reminds of a time when Ibrahim (Abraham) was willing to sacrifice his son for God according to Islamic belief. </p>\r\n<p>The United States government announced postage stamps to honor Eid al-Adha and Eid al-Fitr. The purpose of these postage stamps is to shed light on the trade, educational, and social contributions made by Muslims in the United States.</p>\r\n<h2>How do People celebrate Eid al-Adha?</h2>\r\n<p>Many Muslims commemorate Eid al-Adha with prayers and social functions in the United States. Eid al-Adha services can invite thousands of Muslims in several locations such as Chicago (Illinois) and Orlando (Florida). Many Muslims from different heritages, including Pakistan, as well as Eastern European and African countries, wear traditional clothes and share their national cuisine. It is a moment for prayer, sharing food, handing out gifts, and greeting each other.</p>\r\n<p>At the time of Eid al-Adha, they plan a tour from Hajj to Saudi Arabia\'s Mecca, which Muslims required to execute at least once in their lives. Eid al-Adha is also known because a feast because it traditionally sacrifices an animal permitted for food (e.g., lamb) as an act of thanksgiving to God\'s mercy. Some Muslims look for a field where they can make sacrifices, but many people send money to their birthplace to make sacrifices. Eid al-Adha continues for three days and is a time to ask God for mercy.</p>\r\n\r\n<h2>Is Eid al-Adha an official holiday?</h2>\r\n<p>In the United States, Eid al-Adha is not an official public holiday. All the schools, organizations, banks, stores, and businesses remain open. But, some Islamic organizations may close or reduce their service time, and there may be some local traffic nearby mosques. In New York City, public schools have a holiday on this day.</p>\r\n\r\n<h2>Eid al Adha Facts</h2>\r\n<ul>\r\n<li>Unlike regular prayer, prayer for Eid al-Adha occurs in any large, open field. There, Muslims from many mosques assemble in one place. Typically, mosques collaborate to find an area that is convenient for everyone to visit. In the United States, Eid prayers often take place in parks.</li>\r\n<li>The celebration begins with a prayer service, followed by a short lecture on the morning of the first day. During the Namaz, Muslims recite verses from the Quran, led by an Imam, bow to God, and send their peace to Muhammad and Abraham.</li>\r\n<li>Since the festival takes place immediately after the day of Arafah, many people going on pilgrimages celebrate it in Mina (Saudi Arabia), where thousands of animals killed for sacrifice.</li>\r\n<li>A ritual for Muslims to perform a body wash before walking to the place of prayer is called \"ghusl.\" It is following the tradition of Prophet Mohammad.</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n','/hari-raya-haji/','Hari Raya Haji / Eid-Al-Adha / Bakri Id : A major Muslim Festival','Hari Raya Haji / Eid ul-Adha / Bakri Id','Singapore Holidays,Eid-Al-Adha, Bakri Id,hari raya haji','/i/festival-banner.jpg','wikiPedia','singapore','Y',2506,'country','malaysia',NULL,NULL),(23,'philippines/all-saints-day','All Saints\' Day','Religious','2021-11-01','All Hallows, All-Hallomas','Y','Cleaning the graves, Offering flowers and light candles on the graves','','/all-saints-day/','All Saints Day : A Christian Festival celebrated every year on 1st November','All Saints\' Day','US Holiday, all saints Day,calendar','/i/festival-banner.jpg','wikiPedia','philippines','Y',393,'country','philippines',NULL,NULL),(24,'jewish/sukkot','Sukkot Starts (Jewish Festival)','Religious','2022-10-09','Succot, Sukkos, Feast of Tabernacles, Feast of Booths','','Eating in Sukkah, Carrying the Four Species','<img src=\"/i/sukkah-are-created-at-the-time-of-sukkot.jpg\" alt=\"sukkot\">\r\n<br>\r\n<p>Many Jewish associations in the United States commemorate the first day of Sukkot, the beginning of the Sukkot period. This time, also recognized as the Feast of Tabernacles, lasts for around seven days. It is a biblical Jewish holiday celebrated during the week starting on the 15th day of Tishri, the first month of the year, according to the Jewish calendar.</p>\r\n\r\n<p> It is an agricultural celebration that was initially considered a thanksgiving for the fruit harvest. Jews lived in Sukkot that are hut-like structures, during the 40 years of wandering through the desert after the exodus from Egypt. As a temporary home, the Sukkah also represents the fact that all existence is fragile. Therefore, Sukkot is a chance to appreciate the shelter of our homes and our bodies.</p>\r\n\r\n<h2>How do People celebrate the first day of Sukkot?</h2>\r\n<p>Many American Jews construct a temporary hut known as Sukkha, where they sleep, eat, and use it for a Sukkot season, which continues for about seven days. The initial day of Sukkot observed as a Sabbath, so many Jewish people do not involve in regular work activities on this day. The rest of the days throughout the Sukkot period are the days when work is allowed.</p>\r\n\r\n<p>Many Jews in the northeastern United States hang dry squash and corn to decorate the Sukkah. Sometimes, these vegetables are used for Halloween and Thanksgiving afterward. Many Jewish Americans are building and decorating a sukkah before Sukkot, and it is a fun activity for them. Jews also perform a religious duty, or mitzvah, known as waving four species of plants and chanting a blessing. This deed is usually done each day during Sukkot (except Sabbath).</p>\r\n\r\n<h2>Is First Day of Sukkot a Public Holiday?</h2>\r\n<p>The first day of Sukkot is not a national public holiday in the United States. Most companies, schools, businesses, banks, stores, and restaurants follow regular opening hours in the United States. However, several Jewish businesses, schools, and organizations may remain closed or reduced the timing of their service. </p>\r\n\r\n<h2>Facts related to Sukkot</h2>\r\n<ul>\r\n<li>Sukkot is a harvest festival and is also known as Chag Ha-Asif, the Festival of Ingathering. On the first day of Sukkot, no work is allowed, but some work is permitted on intermediate days, known as Chol Hamoed.</li>\r\n<li>Each day of Sukkot is connected with Ushpezin (visitors), one of the seven Sukkah visitors. Each day has its visitors, beginning with Abraham. Other visitors of this day are Isaac, Aaron, Joseph, Moses, Solomon, Jacob, and David.</li>\r\n<li>During Sukkot, there is a particular priest (Cohen), who offered a blessing on the western wall. The Western Wall is the last surviving wall of the Holy Temple that borders the Temple Mount in Jerusalem. Thousands of priests considered descendants of the original priests, gather on the western wall, and offer blessings.</li>\r\n</ul>\r\n\r\n','/sukkot/','Sukkot : A week long Jewish Festival','Sukkot (Jewish Festival)','sukkot','/i/festival-banner.jpg','flickr','us','Y',456,'religious','jewish',NULL,NULL),(25,'jewish/purim','Purim  (Jewish Festival)','Religious','2022-03-16','','','Listening to the Book of Esther, Gift exchange, making donation to poor, Wearing interesting outfi','Purim  (Jewish Festival)','/purim/','Purim : A Jewish Festival','Purim  (Jewish Festival)','purim','/i/festival-banner.jpg','wikiPedia','us','Y',438,'religious','jewish',NULL,NULL),(26,'jewish/passover','Passover First day (Jewish Festival)','Religious','2022-05-15','Pesach, Pesakh','','Attend Passover Seder, Eating Matzah','<img src=\"/i/passover-seder.jpg\" alt=\"Passover\">\r\n<br>\r\n<p>Passover is an important Jewish holiday and one of the most widely celebrated Jewish holidays, and it usually lasts for eight days in the United States. It is one of the more necessary holidays among Jewish, marking their ancestors to escape from Egypt under the Pharaoh and returning to Israel.</p>\r\n<p>Passover is one of three pilgrimage festivals during which the whole population of the Kingdom of Judah began a journey to the temple in Jerusalem. Many Jewish people spend their Passover time with family members or close friends.</p>\r\n\r\n<h2>How do People celebrate Passover- the first day?</h2>\r\n<p>Many people make a special effort to ensure that older people, poor and lonely people, can participate in the ceremonial food known for seders. They may invite people to their homes or giving them gift baskets. The Passover gift baskets are filled with seder plates and traditional foods and wine.</p>\r\n\r\n<h2>Is Passover-the first day a federal holiday?</h2>\r\n<p>Passover is not a national federal holiday in the United States. Mostly all the organizations, restaurants, businesses, banks, and schools are working on regular schedules. But, some Jewish businesses and organizations may close or reduce the timing of services throughout Passover. Jewish people may also want to take their annual holiday at this time.</p>\r\n\r\n<h2>Facts related to Passover</h2>\r\n<ul>\r\n<li> Traditionally, following Biblical Law, all Orthodox Jews remove all baked bread, cakes, flour-containing products, and flour-derived products from the Jewish household in the weeks before Passover. These products include whiskey, flour, beer, and all patisserie commodities. Any stocks left on the eve of Passover are burned or sold to non-Jews.</li>\r\n<li>On Passover, Jews are to consume bread without yeast, baked from flour and water, and cooked within eighteen minutes. The unleavened food signifies that Israelites leave Egypt in such a hurry that they could not even wait for their bread mixture to rise.</li>\r\n<li>On the initial day of Passover, it is common to arrange a Seder Night ceremony with family and friends. During this festival, the Haggadah is typically read and sang. The Haggadah includes narrating the story of fleeing of the Israelite workers from Egypt, the reality that their dough mixture could not rise due to the quick exit, blessings over Matzah, and hymns of appreciation and happiness.</li>\r\n<li>Traditionally, for Seder, a plate is served to include the following:</li>\r\n<ul>\r\n<li>an egg - signifying the Chaggigah sacrifice</li>\r\n<li>a shank bone - symbolizing Passover Lamb</li>\r\n<li>saltwater- expressing Israelite slaves\' tears</li>\r\n<li>a bitter herb- symbolizing the bitterness of enslavement</li>\r\n<li>charoset-signifying the cement used in the construction works</li>\r\n<li> a vegetable to be dipped in the saltwater</li>\r\n</ul>\r\n<li>The Passovers\' first and seventh days are considered festivals in which work is not allowed. The intermediate days of Passover are Chol Hamoed, in which families go on trips and tours or visit friends\' houses.</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','/passover/','Passover : A very famous Jewish Festival','Passover  (Jewish Festival)','passover','/i/festival-banner.jpg','wikiPedia','us','Y',441,'religious','jewish',NULL,NULL),(27,'jewish/hanukkah','Hanukkah Starts(Jewish Festival)','Religious','2022-12-18','Chanukah, Chanukkah, Chanuka, Festival of Lights, Feast of Dedication','','Lighting Candles on the Menorah, Gift exchange','<img src=\"/i/hanukkah.jpg\" alt=\"Hanukkah\">\r\n<br>\r\n<p>Jewish communities celebrate the first day of Hanukkah in the United States, marking the beginning of Hanukkah, also known as Chanukah or Festival of Lights. Hanukkah is an eight-day Jewish practice that remembers the struggle of the Jewish people for religious freedom. It commences on the 25th day of Kislev according to the Hebrew calendar, which may occur at any point from the end of November to late December in the Gregorian calendar.</p>\r\n<p>The festival celebrated by lighting candles of a candelabrum with nine branches called a menorah (or hanukkiah). Only one candle is used to light up the other eight candles. This unique candle is called Shamash. Every night, one new candle is lit by Shamash until all eight candles are lit together on the final night of the festival.</p>\r\n\r\n<h2>Is Hanukkah a Federal Holiday in the US?</h2>\r\n<p>The first day of Hanukkah is not a federal holiday. Businesses, government organizations, banks, and stores have regular opening hours. Some Jewish schools have their school holidays fall at the same time as Hanukkah.</p>\r\n\r\n<h2>How do people celebrate Hanukkah?</h2>\r\n<p> In the United States, Jewish communities celebrate the first day of Hanukkah on the 25th day of Kislev month, according to the Jewish calendar. The Hanukkah season lasts for eight days and celebrated from the 25th day of Kislev to the second day of Tevet. The first night of Hanukkah begins with a special blessing at sunset before the 25th day of Kislev. Many Jews illuminate the Menorah, also known as the hanukkiah, which is a type of candelabra.</p>\r\n<p>Many American Jewish people eat fried food in olive oil, such as potato cake and individually fried pieces of bread. Hanukkah dishes combine sufganiyot (Hanukkah donuts), Mandelbrot (it can slice ​​like hard bread), potato latte (pancakes), and rugelach (pastry with various fillings). Hanukkah\'s first day indicates the origin of a celebratory season in which a four-sided toy (dreidel) is used for games. On the first night of Hanukkah, people sing traditional hymns to commemorate Hanukkah. Gifting is also popular at this time of the year.</p>\r\n\r\n<h2>Facts related to Hanukkah</h2>\r\n<ul>\r\n<li>Due to the importance of oil for a holiday, it is customary to eat fried foods on Hanukkah. Among Ashkenazic Jews, this includes latkes ( of fried potatoes pancakes in oil) and donuts.</li>\r\n<li>A traditional game is played during Hanukkah is dreidel. Dreidel is a four-way spinning top with a Hebrew letter inscribed on each side. These letters are nuns (like N), gimel (like G), hei (like H) and shin (like sh). These letters stand for the Hebrew phrase Nes Gadol Hayah Sham, a great miracle happened, referring to the revelation of the oil.</li>\r\n<li>After the meal, there is a special prayer called for miracles during the prayer sessions and grace. In this prayer, God is thanked for allowing Jewish minorities to overcome their large and strong enemies (a recurring theme in Jewish existence).</li>\r\n<li>It is not one of the biblical festivals, and Jews are allowed to work on Hanukkah.</li>\r\n</ul>\r\n\r\n\r\n','/hanukkah/','Hanukkah : also known as the Festival of Lights or Feast of Dedication is a Jewi','Hanukkah  (Jewish Festival)','hanukkah','/i/festival-banner.jpg','wikiPedia','us','Y',461,'religious','jewish',NULL,NULL),(28,'india/vasant-panchami','Vasant Panchami','Religious','2021-02-16','Saraswati Pooja, Shree Panchami','','Worshiping Goddess Saraswati','','/vasant-panchami/','Vasant Panchami : a Hindu Festival','Vasant Panchami','Indian Holidays,Saraswati Pooja, Shree Panchami,Hindu  festival','/i/festival-banner.jpg','Wikipedia','india','Y',406,'religious','hindu',NULL,NULL),(29,'india/muharram','Muharram / Islamic New year','Religious','2021-08-19','Islamic New year','','Fasting','','/muharram/','Muharram : Islamic New Year','Muharram / Islamic New year','Indian Holidays,Muharram ,Islamic festival','/i/festival-banner.jpg','','india','Y',2465,'country','india',NULL,NULL),(30,'islam/lailat-al-miraj','Lailat al Miraj','Religious','2022-02-28','Lailat al Miraj\r\n','','Exchanging Gifts, donation to poor','<img src=\"/i/praying-at-mecca-on-lailat-al-miraj.jpg\" alt=\"lailat-al-miraj\">\r\n<br>\r\n<p>Lailat al Miraj reminded the Prophet Muhammad\'s exile in heaven. Muslims assume that on this night, an angel came to the Prophet, washed his abdomen with the water of Zamzam water, and filled his heart with wisdom and faith. Then, Muhammad was called to God from Mecca to Jerusalem, where he prayed in the Masjid al-Aqsa (Jerusalem). He ascended to heaven from Jerusalem, where he was honored to see God directly, to go to the highest levels of heaven, and to lead all the past Prophets in prayers, including Joseph, Moses, Adam, Jesus, Aaron, Abraham, and John the Baptist.</p>\r\n\r\n<p>To reach his destinations, he rode al-Buraq, a heavenly animal smaller than a mule but larger than a donkey. God granted him the gift of prayer. When he returned to Mecca, he described a caravan that was going from Jerusalem to Mecca to show the Quraish. It was celebrated on the 27th day of Rajab, the seventh month in the Islamic calendar.</p>\r\n\r\n<h2>How do people celebrate Lailat al Miraj?</h2>\r\n<p>Customs and traditions that center on Lailat al Miraj vary in the United States. Many Muslims offer special prayers in the evening. Some people attend sermons and prayer services in Islamic centers or mosques, while others celebrate Isra and Mi\'raj at home.</p>\r\n\r\n<p>In recent days conferences, about Lailat al Miraj were held in parts of the United States. It has also listed (in various media) that thousands of Muslims in Wisconsin, California, and other states celebrate this practice each year. This event provides people the chance to reflect on the importance of prayer. It is an opportunity for people, especially students, to learn more about Isra and Mi\'raj, what it implies in the Islamic faith, and how it applies in practice.</p>\r\n\r\n<h2>Is Lailat al Miraj a public holiday in the US?</h2>\r\n<p>Lailat al Miraj is not a public holiday in the United States. All the organizations, schools, offices, and businesses remain open. Muslim organizations or schools may alter their timing schedules. There may be local congestion on roads nearby significant mosques in the evening of the event.</p>\r\n\r\n<h2>Facts related to Lailat al Miraj</h2>\r\n<ul>\r\n<li>Muslims believe that heaven has many levels. Muhammad was carried to each one by Angel Gabriel. In each heaven, a gatekeeper asked both the angel and Muhammad to identify themselves before proceeding.</li>\r\n<li>Muslims believe that Muhammad saw \"Al-Bait-al-Mamur\" (the house of God). Gabriel said Muhammad that since the beginning of creation, 70,000 different angels pray there daily.</li>\r\n<li>Muhammad also declared that \"Sidrat al-Muntaha\" is visible in the seventh heaven. Its leaves resembled the ears of elephants, its fruits resembled those of earthen pots, and it gave rise to four rivers. Two of them were disappeared in heaven, while the additional two were made clear to one person as the Nile and the Euphrates.</li>\r\n<li>Muslims believe that God initially assigned fifty daily prayers. After Moses heard about this from Muhammad, Muhammad was encouraged to negotiate and reduce the number of prayers God appointed, which he politely reduced to five daily prayers. (Sahih al-Bukhari, Volume 4, Book 54, Hadith no. 429[6].</li>\r\n</ul>\r\n\r\n','/lailat-al-miraj/','Lailat-Al-Miraj : a major Islamic Festival','Lailat-Al-Miraj','Indian Holidays,Lailat-Al-Miraj','/i/festival-banner.jpg','wikiPedia','india','Y',464,'religious','india',NULL,NULL),(31,'india/maha-shivratri','Maha Shivratri','Religious','2021-03-11','Shivratri, Happy Shivaratri','','Worshiping Lord Shiva, fasting','','/maha-shivratri/','Maha Shivratri : Why we celebrate shivratri','Maha Shivratri','Indian Holidays,Maha Shivratri,Hindu festival','/i/festival-banner.jpg','','india','Y',2500,'country','india',NULL,NULL),(32,'india/karva-chauth','Karva Chauth / Karwa Chauth','Religious','2021-11-24','Karwa Chauth','','Praying to the Moon, Fasting, Gift exchange, Wearing new clothes','','/karva-chauth/',' Karva Chauth / Karwa Chauth : a Hindu festival','Karva Chauth / Karwa Chauth','Karva Chauth , Karwa Chauth','/i/festival-banner.jpg','','india','Y',432,'religious','hindu',NULL,NULL),(33,'india/holi','Holi','Religious','2021-05-03','Festival of Colors','','Playing with Colors, Sweet distribution','','/early-may-bank-holiday/','Holi : a colorful Hindu Festival','Holi','Indian Holidays,Holi,Hindu festival','/i/festival-banner.jpg','wikiPedia','india','Y',319,'country','india',NULL,NULL),(34,'india/akshaya-tritiya','Akshaya Tritiya ','Religious','2021-05-14','Akha Teej','',' Start any new Venture, Buying Gold','','/akshaya-tritiya/','Akshaya Tritiya : a popular Hindu Festival','Akshaya Tritiya ','Akshaya Tritiya,Akha Teej ','/i/festival-banner.jpg','','india','Y',415,'religious','hindu',NULL,NULL),(35,'canada/boxing-day','Boxing Day','Religious','2021-12-28',NULL,'Y','Shopping, Outdoor Sports, Donation','','/boxing-day/','Boxing Day : the day after Christmas','Boxing Day','Holidays,Boxing Day','/i/festival-banner.jpg','PhotoXpress','canada','Y',10122,'country','canada',NULL,NULL),(36,'india/raksha-bandhan','Raksha Bandhan','Religious','2021-08-22','Rakhi, Rakhi Purnima','','Sisters tie a rakhi on brother\'s wrist and mark tilak','','/raksha-bandhan/','Raksha Bandhan - a famous hindu festival','Raksha Bandhan','Indian Holidays,Saraswati Pooja,raksha bandhan,Hindu  festival','/i/festival-banner.jpg','Wikipedia','india','Y',421,'country','india',NULL,NULL),(37,'india/navaratri','Navaratri','Religious','2021-10-06','Sharad Navaratri','','Nine forms of godess are worshiped.','','/navaratri-begins/','Navaratri : a major hindu festival of India','Navaratri','Indian Holidays,Navaratri,Hindu festival','/i/festival-banner.jpg','wikiPedia','india','Y',427,'religious','hindu',NULL,NULL),(38,'christian/palm-sunday','Palm Sunday','Religious','2022-04-10','Sunday before Easter','','Worshippers to receive fresh palm leaves on Palm Sunday','<img src=\"/i/palm-sunday.jpg\" alt=\"Palm Sunday\">\r\n<br>\r\n<p>Palm Sunday celebrates on the Sunday before Easter, which begins Holy Week. It is the day we recognize and commemorates when Jesus entered Jerusalem as Savior and King. According to the Gospels, as Jesus entered Jerusalem on a donkey, the crowd greeted him by waving and laying palm branches on his way. Today, palms used during the Palm Sunday ceremony.</p>\r\n<p>The palm leaves are a symbol of victory and happiness among many Christians in the United States. Some churches use silk plant leaves or replace palm leaves with olive branches on Palm Sunday because palm leaves can be challenging to find in some areas of the United States.</p>\r\n<p>During the service, the palms are blessed and then collected and burnt to ashes for next year\'s Ash Wednesday celebration.</p>\r\n\r\n<h2>How Do People celebrate Palm Sunday?</h2>\r\n<p>Palm Sunday is celebrated by people, organizing holy music performances in many cities and towns throughout the United States. They are usually sponsored and regulated by local churches, but may also be part of the music community\'s annual concert series. This program ordinarily starts on or before Palm Sunday and may last throughout Holy Week. Bethany College\'s Messiah Festival has been celebrating form more than 100 years during Holy Week in Lindsborg and Kansas.</p>\r\n<p>Plays or exhibitions that focus on the themes of Holy Week also performed on Palm Sunday. The Fleet\'s Blessing held on Palm Sunday each year in St. Augustine and Florida. Shrimps trawlers and other fishing boats, as well as privately owned boats, also visit the city to receive blessings. In the United States, it is a common thing for Christians to put holy palm leaves in the shape of a cross behind any religious images or statues in homes, restaurants, and shops.</p>\r\n\r\n<h2>Is Palm Sunday a Government Holiday?</h2>\r\n<p>Palm Sunday is not a government holiday. Most businesses, stores, and restaurants follow regular Sunday opening hours in the United States. Although, It falls on a Sunday, which is a non-school day and non-working day for many Americans. They follow the regular schedule of Sunday, as there is no change in schedule. You may find traffic on the roads due to this festival.</p>\r\n\r\n<h2>Palm Sunday Facts</h2>\r\n<ul>\r\n<li>Groups of people greeted Jesus to Jerusalem by throwing their cloaks on his path and waving palm branches (John 12:19, Mark 11:1-11, Matthew 21:1-11). </li>\r\n<li>The foal that Jesus rode on in Jerusalem (Luke 19: 28–44), the Old Testament was asked to fulfill the prophecy about the Messiah, the savior of Israel. The scripture of the Old Testament that he completed is Zechariah 9: 9 \"Rejoice greatly, O daughter of Zion! Shout aloud, O daughter of Jerusalem! Behold, your king is coming to you; righteous and having salvation is he, humble and mounted on a donkey, on a colt, the foal of a donkey.\"</li>\r\n<li>Many churches provide palms as part of Mass on this day. The palms typically weaved into crosses and other religious symbols.</li>\r\n</ul>\r\n','/palm-sunday/','Palm Sunday : The Sunday before Easter','Palm Sunday','palm sunday,holidays','/i/festival-banner.jpg','Pixabay','international','Y',375,'religious','christian','N',NULL),(39,'islam/ramadan-start','Ramadan','Religious','2022-04-02','Ramazan, Ramzan, Ramadhan','','Community iftars and Community prayers','<img src=\"/i/ramadan.jpg\" alt=\"Ramadan\">\r\n<br>\r\n<p>Ramadan is the ninth month in the Islamic calendar, consisting of 12 months and lasting approximately 354 days. The word \"Ramadan\" originated from an Arabic name, which is identified by intense heat, scorched grounds, and a shortage of food and drink. It granted as the most sacred and blessed month. Fighting is not allowed during this period.</p>\r\n<p>The month of Ramadan traditionally begins with the sighting of the new moon, which is the beginning of the ninth month in the Islamic calendar. Many Muslims avoided food, drink, and some other activities during the daytime in Ramadan. It is regarded as the most sacred season in the Islamic year and celebrates the time when the Quran (Islamic holy book) is shown to Prophet Muhammad. It is one of the last ten nights of the month on Laylat al-Qadr. The end of Ramadan is when the first curve of the new moon is seen again, marking the beginning of the new lunar month. Eid al-Fitr is an Islamic holiday that signifies the completion of Ramadan. </p>\r\n \r\n<h2>How do People celebrate Ramadan?</h2>\r\n<p>Ramadan is a period of fasting for various Muslims in the United States. Fasting throughout Ramadan is one of the five pillars of Islam. It is a period of self-examination and heightened religious devotion.</p>\r\n<p>People of the Islamic religion are encouraged to recite the entire Quran during Ramadan. Some Muslims recite the whole Quran by the end of Ramadan by special prayers known as Tarawih. These prayers held in mosques, during which a section of the Quran is recited every night of the month. Ramadan is also a month for works of charity. Some Islamic centers and organizations actively participate in charity events and activities such as giving necessities, including clothing, food, donating school equipment to the homeless or schools.</p>\r\n<p>Some schools may organize special programs to welcome Ramadan for Islamic religious students. Some school authorities may assign requests on or before Ramadan, asking staff members in all schools within the district to help Muslim students perform fasting rituals.</p>\r\n \r\n<h2>Is Ramadan a public holiday?</h2>\r\n<p>Ramadan is not a public government holiday. Many Islamic businesses and organizations in the United States may reduce their opening hours for prayer times during Ramadan. There may be jams around mosques at the time of prayer.</p>\r\n \r\n<h2>Facts related to Ramadan </h2>\r\n<ul>\r\n<li>The word Ramadan comes from Ramada, which means \'sunbaked\' in Arabic. It is probably a reference to the suffering of hungry Muslims while fasting.</li>\r\n<li>According to Islamic tradition, menstruating women, women who are experiencing bleeding after giving birth, men who are ill, and travelers are free from fasting. Fasting is also an option for pregnant women.</li>\r\n<li>When Ramadan ends in Islamic countries, and the new moon is first seen, people beat drums and give great shouts.</li>\r\n<li>According to the belief of the Sunnah, Prophet Mohammad once said, there is no conceit in fasting.</li>\r\n</ul> \r\n \r\n \r\n \r\n','/ramadan-start/','Ramadan : The month of fasting','Ramadan','Ramazan, Ramzan, Ramadhan','/i/festival-banner.jpg','Pixabay','international','Y',468,'religious','islam','Y',NULL),(44,'us/all-souls-day','All Souls\' Day','Religious','2022-11-02','Day of the Dead','N','Visit graves, place candles on tomb,wear masks, carry signs, or embed up elaborate decorations to honor the dead','<img src=\"/i/all-souls-day.jpg\" alt=\"All Souls Day\">\r\n<br>\r\n<p>All Souls\' Day was initially founded in the monastery in Cluny in 993 CE and quickly expanded everywhere in the Christian world. All Souls\' Day celebrates and honors the dead. It was Saint Odilo, who recommended this Day after All Saints\' Day in the 10th century to honor the dead, especially those whose souls were still in purgatory. According to Catholic belief, when somebody dies, their souls go to one of three places: heaven, hell, or purgatory, which thought to be where most people end up purified and perfected before they enter heaven.</p>\r\n\r\n <p>Although some Protestants celebrate All Souls\' Day, it was initially a Roman Catholic, Anglican, and Orthodox holy day. Depending on the sect of Christianity, All Souls\' Day held on different days. In Western Christianity, it falls on 1 November. Beliefs and traditions connected with the DayDay differ depending on denominations and countries.</p>\r\n\r\n<h2>How do People celebrate All Souls\' Day?</h2>\r\n<p>All Souls\' Day is a time of prayer for the deceased spirits in the United States. Several Christians visit graves where their loved ones buried. In some cemeteries, candles placed on these tombs. The candles are blessed and placed in the cemetery marked with the deceased\'s name. The Catholic Church memorializes deceased members of the group on this Day.</p>\r\n\r\n<p>(Day of the Dead) Día de Los Muertos is celebrated in many parts of the United States, mainly where there are large Latin American communities. Day of the Dead events occurs in the form of parades, festivals, and group celebrations, which are held on 1-2 November to correspond with All Souls\' Day and All Saints\' Day. During these ceremonies, some people wear masks, carry signs, or embed up elaborate decorations to honor the dead. Some community centers invite people to honor their deceased loved ones with offerings that include food, flowers, symbols, photos, candles, and other mementos. Altars are also made in people\'s homes in memory of the dead.</p>\r\n\r\n<h2>Is All Souls\' Day a Federal holiday in the US?</h2>\r\n<p>All Souls\' Day is not a federal holiday. Mostly all schools, colleges, businesses, shops, and organizations remain open. Transport service runs on their schedule time. People who live in towns where Day of the Dead celebrated in the form of parades and festivals may need to check traffic reports as there is a possibility of traffic congestion or blocked streets.</p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','/all-souls-day/','Christmas Day or XMas is celebrated on 25th December : USA Holidays','Christmas Day is a Christian festival, celebrated on 25th December in all over the world.','Holiday, All Souls\' Day,calendar','/i/festival-banner.jpg','','us','Y',395,'country','us',NULL,NULL),(40,'china/chinese-new-year','Chinese New Year','National','2022-02-01','Gift exchange, Fireworks, Dragon and Lion, Family gethering','N','Gift exchange, Fireworks, Dragon and Lion dance, Family gathering','<img src=\"/i/tradition-of-larten-on-chinese-new-year.jpg\" alt=\"Tradition of larten on chinese new year\">\r\n<br>\r\n<p>The Chinese New Year is a Chinese festival that celebrates the beginning of the new year on the traditional Chinese calendar. This festival is commonly known as the Spring Festival in mainland China. The first day of the Lantern Festival held on the 15th day of the year, is traditionally celebrated from the evening. The first day of the Chinese New Year starts on the new moon and, based on the Chinese Lunar Calendar, usually appears between 21 January and 20 February.</p>\r\n\r\n<h2>Is the Chinese new year is a federal holiday?</h2>\r\n<p>The Chinese New Year is not a national public holiday in the United States. However, some Chinese businesses may remain closes on the day or may change their business hours to participate in the Chinese New Year celebration. There may be heavy traffic on roads, or some routes may close in towns or cities, due to the festival of the Chinese New Year.</p>\r\n\r\n<h2>How do people celebrate the Chinese new year?</h2>\r\n<p>Many individuals and communities in the United States, especially the Chinese community, participate celebrations, which can last for days. The Chinese New Year is celebrating in the United States from the past many years, including activities and events:</p>\r\n<ul>\r\n<li>Chinese New Year parades featuring colorful costumes, floats, firecrackers, and other attractions</li>\r\n<li>Various dances, including lion and dragon dances</li>\r\n<li>Balls and pageants</li>\r\n<li>Chinatown fun runs or walks</li>\r\n<li>Street fairs</li>\r\n<li>Firework displays</li>\r\n</ul>\r\n<p>Some organizations may organize exclusive contests or announce to coincide with the Chinese New Year. For instance, On the occasion of Chinese New Year, some newspapers or magazines may publish the best 10 Chinese restaurants in a city or town. It is common for many Chinese-American families to spend time together and exchange gifts, including money covered in red and gold packages that usually given to children.</p>\r\n\r\n<h2>Traditions of Chinese New Year</h2>\r\n<p>The Chinese New Year connected to many myths and customs. This festival is traditionally a time to honor the gods as well as ancestors. It is also traditional for every family to clean their house thoroughly, remove any misfortune, and make way for good luck to come. Another tradition is decorating the doors and windows with red paper-cut and couplets. Popular themes for these couplets and paper-cuts are good luck or happiness, wealth, and longevity. Dumplings are prominently featured in the food to celebrate the festival. It usually serves as the first meal of the year, either at night or in the morning as a breakfast on the first day.</p>\r\n\r\n\r\n','/chinese-new-year/','Chinese New Year -The most important festival of China','Chinese New Year also known as Lunar New Year is a very popular ancient festival, celebrated in China.','chinese holiday, new year,calendar','/i/festival-banner.jpg','unsplash','chinese','Y',658,'country','china',NULL,NULL),(45,'us/ash-wednesday','Ash Wednesday','Religious','2022-03-02','','N','Gathering together','<img src=\"/i/ash-on-the-forehead-during-ash-wednesday.jpg\" alt=\"Ash wednesday\">\r\n<br>\r\n<p>Ash Wednesday is a Christian sacred day of fasting and prayer. It is headed by Shrove Tuesday and falls on the Lent\'s first day, the six weeks of repentance before Easter. Western Christians traditionally observe Ash Wednesday. </p>\r\n<p>As it is the Lent\'s first day, some Christians start Ash Wednesday by pointing a Lenten calendar, praying a Lenten daily devotional, and restraining from a luxury. It is not a national holiday in the United States.</p>\r\n<h2>Where do the Ashes Come from for Ash Wednesday?</h2>\r\n<p>In many gatherings, ashes prepared from burning palm branches from last Palm Sunday. On the day of Palm Sunday, churches bless and hand over palm branches to attendees, referencing the Gospel account of Jesus\' triumphal entry into Jerusalem, when observers lay palm branches on their way.</p>\r\n<h2>What do the Ashes Symbolize?</h2>\r\n<p>The ashes of this celebration symbolize two main things: death and repentance. \"Ash is similar to dust, and the human body made up of dust or mud, and when a human corpse decomposes, it reverts to dust or ashes.\"</p>\r\n<p>On Ash Wednesday, when we go ahead to receive ashes, and we are saying that we are sorry for sins. We desire to use the season of Lent to heal our faults, control our desires, purify our hearts, and grow in worship so that we will prepare to celebrate Easter with great joy.</p>\r\n<p>With a focus on our mortality and sinfulness, Christians can fully enter the Lent season, while waiting for greater anticipation and enjoyment of the message of Easter and Christ\'s ultimate victory over sin and death.</p>\r\n \r\n<h2>What Are You Not Allowed to Eat on Ash Wednesday?</h2>\r\n<p>As for the exact rules and practices of Lent, they have changed over the years. In the early centuries, the provisions of fasting were strict, as they are still in Eastern churches. One day a meal was allowed in the evening, and meat, eggs, fish, and butter were forbidden. The Eastern Church also prohibits the use of alcohol, oil, and dairy products. These fasting rules have gradually relaxed in the West. The strict law of fasting amongst Roman Catholics spread during World War II, and only Ash Wednesday and Good Friday now kept as Fast Lenten days.</p>\r\n \r\n<h2>Ash Wednesday Facts & Quotes</h2>\r\n<ul>\r\n<li>Ashes to ashes, dust to dust is a phrase usually mentioned during Ash Wednesday services. It means that we remind our mortality that we began as dust, and our bodies will eventually revert to dust after our death. This phrase originates from Genesis 3:19: \"Dust thou art, and unto dust shalt thou return.\"</li>\r\n<li>Ashes symbolize the dust that we ultimately become after death. It evokes us of our mortality, and our time on earth is limited.</li>\r\n<li>Ash Wednesday is the day next Mardi Gras. As it is the last day before the beginning of Lent, it often accompanied by celebration. The idea is that it is the last day to indulge before the Lenten period of moderation and repentance.</li>\r\n<li>Ash Wednesday is not a sacred day of obligation. It is not in the Bible. However, the Bible records account of people in the Old Testament as symbols of dust and ashes and as remorse or mourning.</li>\r\n</ul>\r\n \r\n \r\n\r\n','/ash-wednesday/','Ash Wednesday is a Christian sacred day of fasting and prayer. It is headed b','Christmas Day is a Christian festival, celebrated on 25th December in all over the world.','Holiday, All Souls\' Day,calendar','/i/festival-banner.jpg','','us','Y',657,'country','us',NULL,NULL),(46,'us/epiphany','Epiphany','Religious','2022-01-06','','','',' <img src=\"/i/epiphany.jpg\" alt=\"Epiphany\">\r\n<br>\r\n<p>Epiphany Day is a Christian celebration that marks the day when the Three Kings visited Jesus by following a star to reach him. They developed a bright star that predicted the birth of Jesus and brought gifts of gold, frankincense, and myrrh.</p>\r\n<p> Usually, this festival commemorated in Western Roman Catholic and Protestant churches. It marks 12 days after Christmas on the 6th of January. Some places celebrate this festival for two occasions that are: to remember Jesus\'s baptism and three Wise Men who visited the infant Jesus. This festival is also called The Festival of the Three Magic Kings.</p>\r\n \r\n<h2>What Do People celebrate Epiphany?</h2>\r\n<p>Epiphany celebrates by the people from the US Virgin Islands to highlight and maintain their culture and customs, particularly on the island of St Croix, where the celebrations of this day feature food, parades, bands, music, and other types of entertainment. Many Christians participate in Epiphany activities such as:</p>\r\n<ul>\r\n<li>Churches hold star processionals services on the Sunday closest to Epiphany.</li>\r\n<li>They create treasure hunts to discover a statue of the Christ child.</li>\r\n<li>Also, organize Epiphany parties, luncheons, and celebrations among churchgoers.</li>\r\n<li>Focusing on Epiphany, some Sunday school organize activities for children, such as designing the star that directed the wise men to Bethlehem.</li>\r\n</ul>\r\n \r\n<p>Epiphany points to the beginning of the Mardi Gras season in Louisiana. It is common to bake king cakes during this period of the year. These cakes may include a small trinket. The person who gets a piece of cake with a toy gets various privileges or responsibilities. They may request to provide the next king cake. The interval between Epiphany and Mardi Gras sometimes referred to as \"King Cake Season.\"</p>\r\n \r\n<h2>Is Epiphany is a public holiday?</h2>\r\n<p>Epiphany is not a public holiday in the US except the US Virgin Islands, where government offices, shops, businesses, and stores remain closed. Some companies or stores may close early the day before the holiday.</p>\r\n \r\n<h2>Facts about Epiphany</h2>\r\n<ul>\r\n<li>A perfume, frankincense, myrrh, and anointing oil, were traditional gifts for kings in Christ\'s time. These were the presents that the wise men gave to the infant Jesus.</li>\r\n<li>Epiphany means \'manifestation\' in Latin American culture. They celebrated this festival with plays and unique tunes that indicate the arrival of the three kings or magi. Children place boxes of dried grass under their beds for the magi\'s camels, and they receive return gifts.</li>\r\n<li>In some Eastern Orthodox Christian societies, Epiphany is celebrated by a parade to the nearest lake, ponds, and rivers. The priest sanctifies the water, and he throws a cross in the waves. People dive into the water to find the cross and the one who finds it especially blessed in the New Year.</li>\r\n</ul>\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n','/epiphany/','Christmas Day or XMas is celebrated on 25th December : USA Holidays','Christmas Day is a Christian festival, celebrated on 25th December in all over the world.','Holiday, All Souls\' Day,calendar','/i/festival-banner.jpg','','us','Y',369,'religious','us',NULL,NULL),(47,'us/holy-innocents','Holy Innocents','Religious','2022-12-28','','',NULL,'<img src=\"/i/holy-innocents.jpg\" alt=\"Holy innocents\">\r\n<br>\r\n<p>Holy Innocents Day annually observed on December 28. The purpose of this festival is to commemorate the massacre of the innocent male children by King Herod in Bethlehem, as he was also attempting to kill baby Jesus, told in Matthew 2:16.</p>                            \r\n<p>Holy Innocents is also known as Childermas, Innocents’ Day, and Feast of the Holy Innocents. It is a holiday that falls on different days in the Western and Eastern Christian churches. It refers to King Herod’s order found in Matthew’s account of the king’s reaction to the fulfillment of the Old Testament prophecy. These children recognized as martyrs, Saints of God, by the Church.</p>\r\n\r\n<h2>How do people celebrate Holy Innocent?</h2>\r\n<p>On Holy Innocent day, there is a culture to give the power of the household to the youngest child to rule for a day. The youngest child is in charge of everything in the house, such as what to eat, where to go, and what to do. People usually attend church services in which the priest states a prayer called the Blessing of the Children.</p>\r\n\r\n<h2>Is holy innocent a federal holiday?</h2>\r\n<p>Holy Innocent is not a federal holiday in the United States. Mostly all banks, businesses, shops, and government organizations remain open on this day. Transport services run on their regular schedule.</p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','/holy-innocents/','Christmas Day or XMas is celebrated on 25th December : USA Holidays','Christmas Day is a Christian festival, celebrated on 25th December in all over the world.','Holiday, holy innocents,christian festival','/i/festival-banner.jpg','','us','Y',402,'religious','us',NULL,NULL),(48,'us/pentecost','Pentecost','Religious','2022-06-05','','','worship service','<img src=\"/i/pentecost.jpg\" alt=\"Pentecost\">\r\n<br>\r\n<p>Pentecost is a Christian festival that commemorates the gift of the Holy Spirit. The day used to recognize as Whitsun, a Christian holiday. The holiday is usually full of good spirits. Priests will wear red robes as a symbol of the flames in which the Holy Spirit came to Earth. Symbolism is an essential part of this day. The Holy Spirit is the third part of the Trinity (Father, Son, and Holy Spirit), which Christians use as a method to understand God. In reality, Pentecost is the birthday of the Christian faith.</p>\r\n<p>Pentecost takes place on Sunday, after 50 days of easter. Pentecost celebrated widely as a secular public holiday, not as a holy day. Many industries have a day off for workers on account of a secular public holiday.</p>\r\n\r\n<h2>How do People celebrate Pentecost?</h2>\r\n<p>In the United States, Christians share their views about the meaning of Pentecost how the variety of languages and cultures can improve their worship and fellowship with each other. Christians observe Pentecost as an extension of God\'s favor and regard from Judaism to all peoples. Many churches commemorate Pentecost with a worship service. </p>\r\n\r\n<h2>Is Pentecost a Government Holiday?</h2>\r\n<p>Pentecost is not a government holiday. It happens on Sunday, and most businesses, stores, and restaurants follow regular Sunday opening hours in the United States. Transport service is on their schedule time.</p>\r\n\r\n<h2> Facts related to Pentecost</h2>\r\n<ul>\r\n<li>Red is the color of Pentecost. Churches decorated in crimson color (deep red color), and sometimes people dress up in red to signify the day. The color originates from the flame that scripture says appeared above the heads of each of the disciples (Acts 2:3).</li>\r\n<li>Pentecost is sometimes named Whitsunday (vocalized: \'with - Sunday\'), in the Roman Catholic tradition. The name comes from the white-colored clothes that people usually wear when they are baptized.</li>\r\n<li>The Holy Spirit, often described in the Bible as wind or a dove, is the third part of the Christian Trinity, which also includes the God, Father, and Jesus Christ, the Son. Sometimes the Holy Spirit referred to as the Holy Ghost.</li>\r\n<li>In the U.S., some churches hold confirmation on Pentecost. Acceptance is a designation given to youth that offers responsibility for their faith.</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n\r\n\r\n','/pentecost/','Christmas Day or XMas is celebrated on 25th December : USA Holidays','Christmas Day is a Christian festival, celebrated on 25th December in all over the world.','Holiday,pentecost,christian festival','/i/festival-banner.jpg','','us','Y',383,'country','us',NULL,NULL),(49,'us/st-nicholas-day','Saint Nicholas','Religious','2021-12-06','Saint Nicholas Day','',NULL,'<img src=\"/i/st-nicholas-day.jpg\" alt=\"St-nicholas-day\">\r\n<br>\r\n<p>Saint Nicholas Day observed on December 6 in the US. The legendary personality of St. Nicholas is derived from Nicholas of Myra, who directed as a bishop in the 4th century. During his existence, he developed a respect for gift-giving by inserting coins into other people\'s shoes, which considers for many of today\'s Christmas beliefs that include leaving gifts in shoes or boots.</p>\r\n<p>\r\nSome Europeans who resettled to the United States brought with them beliefs, customs, and practices associated with St Nicholas\' Day. It has recorded that celebrations related to the observance took place in cities such as New York in the early 1800s.</p>\r\n \r\n<h2>How people Celebrate St Nicholas\' Day?</h2>\r\n<p>The children in families who celebrate St Nicholas\' Day receive treats - including candy, fruit, cookies, or small toys on December 6 in socks, shoes, stockings, or bags. Some churches have unique services dedicated to the feast of St Nicholas day.</p>\r\n \r\n<p>In the United States, there is a custom associated with Saint Nicholas Day that children are leaving their shoes in the entrance hall on Saint Nicholas Eve in the belief that Saint Nicholas will put some coins on the soles.</p>\r\n \r\n<p>Surprise someone with a treat or a gift into their shoe on Saint Nicholas Day. Use <a href=\"https://twitter.com/hashtag/StNicholasDay\" target=”_blank” rel=”nofollow”>#StNicholasDay</a> to post on social media to tell your friends and followers, that you are engaging in the celebration of this day.</p>\r\n \r\n<p>Feasts of Saint Nicholas not celebrated nationally. The cities which have strong German influences celebrate St. Nick\'s Day on a large scale similar to the German customs, like Evansville, Indiana, Cincinnati, Wisconsin, Ohio, Texas, Milwaukee, Newport News, Fredericksburg, Virginia, Missouri, St. Louis, and Pittsburgh, Pennsylvania. </p>\r\n \r\n<p>Although it is not widespread in other countries, some people in the United States celebrate a different St Nicholas Day by placing their shoes outside their bedroom doors or hanging an empty stocking at the fireplace on the eve of December 5. St Nicholas then arrives during the night. On the 6th December morning, people will find their shoes or stockings full of gifts and sugary treats. </p>\r\n \r\n<p>The adoption of the custom of this day has widely spread among the German, Belgian, Polish, and Dutch communities throughout the United States. Americans celebrating Saint Nicholas Day usually celebrate Christmas Day (December 25) as a separate holiday. Some of the Christmas traditions and rituals are similar to the traditions of Saint Nicholas Day, such as dropping out a shoe or stocking to be filled.</p>\r\n \r\n \r\n                  \r\n \r\n','/saint-nicholas/','Christmas Day or XMas is celebrated on 25th December : USA Holidays','Christmas Day is a Christian festival, celebrated on 25th December in all over the world.','Holiday,saint nicholas,christian festival','/i/festival-banner.jpg','','us','Y',399,'religious','us',NULL,NULL),(53,'jewish/hanukkah-end','Hanukkah Ends(Jewish Festival)','Religious','2022-12-18','Chanukah, Chanukkah, Chanuka, Festival of Lights, Feast of Dedication','','Lighting Candles on the Menorah, Gift exchange','<img src=\"/i/hanukka.jpg\" alt=\"Hanukka\">\r\n<br>\r\n<p>In the United States, many Jews consider the last day of Hanukkah as the end of Hanukkah celebrations. Hanukkah is also recognized as the Festival of Lights, are an eight-day Jewish customs to remember the Jewish people struggle for religious freedom.</p>\r\n\r\n<p>Hanukkah celebrates the Jewish people\'s successful rebellion against the Syrians in the Maccabean War in 162 BCE. A custom of cleaning and rededicating the Temple happened after the victory of the Jewish people. It is believed that there was just enough oil to light the lamp throughout the day, but the small oil bottle miraculously lasted for eight days.</p>\r\n\r\n<p>Besides, the existence of Judaism over many years is also celebrated during this time. Hanukkah is celebrated for eight days, from the 25th day of Kislev month to the second day of the Tevet in the Hebrew calendar. It is necessary to remark that many Jewish rituals begin at sunset on the day before.</p>\r\n\r\n<h2>Is Last Day of Hanukkah a Public Holiday?</h2>\r\n<p>The Last Day of Hanukkah is not a public holiday in the United States. Businesses, schools, banks, restaurants, and public transport runs on their regular schedule. But, many Jewish schools have their school holidays fall around the same period as Hanukkah.</p>\r\n\r\n<h2>How do People Celebrate Hanukkah?</h2>\r\n<p>Hanukkah is one of the happiest Jewish celebrations for many Jewish Americans. Many families light candles on the Hanukkah on a type of candle holder, give gifts, eat sizzling potato pancakes, and play with the dreidel, a spinning toy that is particularly popular during Hanukkah.</p>\r\n<p>Hanukkah\'s last day is the eighth day of Hanukkah. It is also recognized as Zos Hanukkah, Zose Hanukkah, or Zot Hanukkah. According to Jewish belief, it is the second day of the Tevet month and indicates the day on which the glorious miracle of oil occurred. It is a special day because it encapsulates all of Hanukkah.</p>\r\n\r\n<p>Hanukkah events in the United States include the day or evening events of making popular food eaten during Hanukkah, especially food fried in oil. Music nights are reserved for singing and playing the dreidel, games programs, as well as music and drama.</p>\r\n\r\n\r\n\r\n\r\n\r\n','/hanukkah/','Hanukkah : also known as the Festival of Lights or Feast of Dedication is a Jewi','Hanukkah  (Jewish Festival)','hanukkah','/i/festival-banner.jpg','','us','Y',461,'religious','jewish',NULL,NULL),(55,'jewish/sukkot-end',' Sukkot Ends(Jewish Festival)','Religious','2022-10-09','Succot, Sukkos, Feast of Tabernacles, Feast of Booths','','Eating in Sukkah, Carrying the Four Species','<img src=\"/i/sukkah-are-created-at-the-time-of-sukkot.jpg\" alt=\"sukkot\">\r\n<br>\r\n<p>According to Jewish teachings, the Sukkot session is a moment to recognize the Jews traveling in the desert for 40 years, leading their exodus from Egypt. It is also a chance to commemorate the grape harvest. Some references demand that Sukkot extends for about seven days, while others say it is an eight-day festival.\r\nThe Sukkot seventh day is recognized as Hoshana Rabbah, while the eighth day is called Shemini Atzeret, and the next day is called Simchat Torah. Hoshana Rabbah is known as the time of the final sealing of the judgment, which began on Rosh Hashanah.</p>\r\n\r\n<h2>Is the last day of Sukkot a federal holiday?</h2>\r\n<p>In the United States, the last day of Sukkot is not a national public holiday. Government organizations or businesses remain open and run on their working hours. However, many Jewish businesses, schools, and organizations stay closed or reduce the level of service.</p>\r\n\r\n<h2>How do People celebrate the last day of Sukkot?</h2>\r\n<p>A unique service in the synagogue marks Hoshana Rabbah. During the ceremony, the Torah rolls are taken out of their ark, and worshipers make seven circuits holding four species and recite Hoshonot (Psalm 118: 25). The four species of plants with symbolic meanings are waved in guided directions after a blessing during Sukkot, excluding Shabbat (Sabbath). People can do it in the synagogue, Sukka, or at home. The caravan, a willow branch, is also beaten.</p>\r\n<p>Some sources say that it is common to wear a kittel on the last day of Sukkot. It is also customary to have a festive meal in the Sukkah in the afternoon to fulfill the religious duty (mitzvah) of staying in Sukka once in the last time of the year. According to Jewish belief, heavenly decrees made on Rosh Hashanah (and the seal on Yom Kippur) are sent to Hoshana Rabbah. The main book of Kabbalah also says that countries around the world are judged on this day.</p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','/sukkot/','Sukkot : A week long Jewish Festival','Sukkot (Jewish Festival)','sukkot','/i/festival-banner.jpg','','us','Y',456,'religious','jewish',NULL,NULL),(54,'jewish/lag-bomer',' Lag BaOmer(Jewish Festival)','Religious','2022-05-19',' Lag BaOmer','','holding bonfires for friends and family','<img src=\"/i/lag-baomer-bonfire.jpg\" alt=\"Lag baomer bonfire\">\r\n<br>\r\n<p>In the United States, many Jews celebrate Lag B\'Omer, and also known as Lag BaOmer, on the 18th day of Iyar month, according to the Jewish calendar. The name of this practice means the 33rd day of the count of Omer.</p>\r\n<p>An \"Omer\" indicates to a sheaf of barley or wheat. In the book of Leviticus, it is printed that God had instructed the people to present a bunch of cereal between Passover and Shavuot. The day number was announced after the dusk service, and at this time, tradition came to be known as the \"counting of the Omer.\"</p>\r\n\r\n <p>Another story claims that in the second century CE, a plague attacked Rabbi Akiba\'s students suddenly stopped on this day. Many Jewish people mark this day by recognizing the death of Rabbi Shimon bar Yochai, who was a student of Rabbi Akiva. In some cases, this practice signifies a break in the period between Passover and Shavuot.</p>\r\n\r\n<h2>Is a Lag B\'Omer a public holiday?</h2>\r\n<p>Lag B\'Omer is not a national public holiday in the United States. All the Government offices, organizations, public transportation services, and educational institutions run to their regular schedules.</p>\r\n\r\n\r\n<h2>How do People celebrate Lag B\'Omer?</h2>\r\n<p>In the United States, Jews may celebrate Lag B\'Omer by holding bonfires for friends and family, while some Jewish people may want to get married on this day. It is because mourning practices that happen throughout the Omer period are lifted on this date.</p>\r\n\r\n<p>Some Jewish boys may not cut their hair until they are the age of three when they start learning Torah. On this occasion, many people await the Lag B\'Omer to have the ceremony, recognized as Upsherin. Some children play with the bow, representing the rainbow. Some people eat carobs in memory of a story regarding a carob tree known as Rabbi Shimon ben Yochai and his son Elazar.</p>\r\n\r\n\r\n \r\n\r\n\r\n','/lag-bomer/',' Lag BaOmer',' Lag BaOmer (Jewish Festival)','','/i/festival-banner.jpg','','us','Y',445,'religious','jewish',NULL,NULL),(56,'jewish/passover-final-day','Passover Final day (Jewish Festival)','Religious','2022-05-15','Pesach, Pesakh','','Attend Passover Seder, Eating Matzah','<img src=\"/i/passover-seder.jpg\" alt=\"Passover\">\r\n<br>\r\n<p>Many Jews in the United States mark the last day of Passover as the end of a Jewish holiday that remembers the rescue of Jewish people from slavery in Egypt. Passover also recognized as Pesah, Pesach, and the feast of unleavened bread.</p>\r\n\r\n<p>Passover celebrates the Biblical story of Exodus — where God rescued the Israelites from slavery in Egypt. The celebration of Passover is mentioned in the book of Exodus in the Old Testament. The holiday is usually celebrated for seven days. It includes themes of springtime, a Jewish country, family, recognition of Jewish history, social justice, and freedom — including recognizing those who are still troubled today. All these viewpoints are discussed, if not symbolically represented, during the Passover seder.</p>\r\n\r\n<h2>Is Final Day of Passover a Federal Holiday?</h2>\r\n<p>Last Day of Passover is not a federal holiday in the United States. Governmental organizations, businesses, schools, and restaurants remain open. But, many Jewish businesses and organizations are closed for the days or have restricted opening hours.</p>\r\n\r\n<h2>How do People celebrate Passover in the US?</h2>\r\n<p>Passover continues up to seven days among Jewish groups. Many Jewish people observe the Sabbath during the last day of Passover. Some people may take a holiday around this time of the year. It is also an opportunity for Jewish people to recite special blessings or prayers, as well as visit a synagogue or listen to passages from the Torah and eat a ceremonial meal.</p>\r\n<p>Many Jewish families in the United States eat a Ceremonial meal known as Seder, which includes the story of the exodus from Egypt as well as eating different symbolic foods, such as Paschal lamb meat and bitter herbs.</p>\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n','/passover/','Passover : A very famous Jewish Festival','Passover  (Jewish Festival)','passover','/i/festival-banner.jpg','','us','Y',441,'religious','jewish',NULL,NULL),(57,'jewish/rosh-hashanah','	Rosh HaShana','Religious','2022-09-25',' Day of Atonement','','Family gatherings, special meals, and sweet foods','<img src=\"/i/shofar-rosh-hashanah.jpg\" alt=\"Shofar ros hashanah\">\r\n<br>\r\n<p>Many Jewish Americans commemorate Rosh Hashanah, which is recognized as the Jewish New Year. It originates on the first day of Tishrei, which is the seventh month in the Jewish calendar and can last up to two days. It is sometimes called the Day of Blowing the Shofar or the Day of Remembrance.</p>\r\n\r\n<p>Rosh Hashanah is considered a momentous and solemn occasion. In Jewish thought, it is the time when all the people, whether Jewish and non-Jewish, are judged for their activities over the previous year, and their reward or punishment designated. </p>\r\n\r\n<p>It reminds of the creation of the world and marks the beginning of the days of Awe, a 10-day period of meditation and sorrow that culminates in the Yom Kippur holiday, also known as the Day of Atonement. Some sources say that there were four new years, corresponding to the seasons in the Jewish calendar, one of the new years is Rosh Hashana.</p>\r\n\r\n<h2>Is Rosh Hashana a Public Holiday in the US?</h2>\r\n<p>Rosh Hashana is not a public holiday in the United States. But, it can be taken as an optional holiday for state government employees in Texas. In Florida, a chief judge of any judicial circuit can choose this day as a juridical holiday for court employees or workers inside the state\'s judicial circuit. Several Jewish organizations or businesses may remain closed or have limited opening hours on Rosh Hashana.</p>\r\n\r\n<h2>How do People celebrate Rosh Hashanah?</h2>\r\n<p>Rosh Hashanah is a moment of family gatherings, special meals, and sweet foods. Many Jewish people commemorate Rosh Hashana by eating challah bread and apples dipped in honey. In the United States, many Jewish people seek mercy from friends and family before this event.</p>\r\n<p>Some Jewish people do tashlikh. It is the custom of performing prayers near a naturally flowing water, such as stream or river, and symbolically throwing away one\'s sins as bread or other food. Many Jewish people perform tashlikh from areas such as the Manhattan and Brooklyn bridges in New York. Some people may do it in a fish pond or mikveh if there is no river or stream in a particular place.\r\nThe view of the Jewish people that taking days off from a job or arranging time during this time of year is to follow the belief that no work is allowed on Rosh Hashanah. Part of the day is spent in the synagogue, where the daily liturgy is regularly expanded. The story of Abraham narrated in the synagogues, and the Shofar serves as a reminder that God allowed Abraham to sacrifice Ram instead of Abraham\'s son, Isaac. The Shofar is blown like a trumpet during this year\'s time.</p>\r\n\r\n<h2>Facts related to Rosh Hashana</h2>\r\n<ul>\r\n<li>It is customary for 100 notes to be ringed with a Ram\'s horn as a call to repentance, in synagogues.</li>\r\n<li>Jews wear new clothes on Rosh Hashanah and eat fresh fruits that have not yet tasted in the season. Common foods include round challah bread with pomegranates, raisins, pumpkins, carrots, and honey cake.</li>\r\n<li>The Tashlich ritual performs on Rosh Hashana, many Jews \'cast off their sins\' to a running water stream/sea containing fish. It is a symbol to purify one\'s body of sin and cast the sins onto the fish.</li>\r\n<li>On Rosh Hashanah, it is supposed that God defines the fate of all Jews and Gentiles for that year. Jews wish each other with many Happy New Year wishes.</li>\r\n</ul>\r\n\r\n\r\n','/rosh-hashanah/','	Rosh HaShana : A very famous Jewish Festival','	Rosh HaShana  (Jewish Festival)','	Rosh HaShana','/i/festival-banner.jpg','','us','Y',452,'religious','jewish',NULL,NULL),(58,'jewish/shavuot','Shavuot','Religious','2022-06-04','Shavuot','','Reading Ruth\'s book or staying up all night to study the Torah','<img src=\"/i/shavuot-harvest-festival.jpg\" alt=\"Shavuot\">\r\n<br>\r\n<p>Many American Jews celebrate Shavuot, which is the second of three main Jewish festivals that concentrate on historical and agricultural importance. Shavuot follows Passover by 50 days. It happens on the sixth day of the month of Sivan in the Jewish calendar.</p>\r\n<p>It is also recognized as Festival of Week or Festival of Harvest as it initially considered the end of the seven weeks of the Passover barley harvest and the start of the wheat harvest. At one period, Jewish men were supposed to bring their first bunch of barley as a thanksgiving offering to the Temple in Jerusalem.</p>\r\n\r\n<p>After a period of Jewish slavery in Egypt, Shavuot observed Moses\' return from \"Mount of the Sinai\" with two stone tablets, including \"Ten Commandments.\" These commandments are the most necessary laws of Judaism. Therefore, Shavuot is also known as the Feast of Laws.</p>\r\n\r\n<h2>Is Shavuot a national holiday in the US?</h2>\r\n<p>Shavuot is not a national public holiday in the United States. All the organizations, businesses, stores, restaurants, banks remain open on this day. Some Jewish people may use their annual vacation around this point of the year.</p>\r\n\r\n<h2>How do People Celebrate Shavuot?</h2>\r\n<p>Many Jewish communities in the United States follow unique customs on Shavuot. These activities include reading Ruth\'s book or staying up all night to study the Torah. Many Jewish people also eat dairy foods during the Shavuot. Many houses decorated with various plants, including flowering. On this day, specific prayers are offered and lits candles. Jewish confirmation may also occur at this time of year.</p>\r\n<p>Some Jewish people take their annual holidays during this time of the year, so they are not required to work on the Shavuot. Some sources state that, according to Jewish custom, no work is allowed on Shavuot except for cooking, baking, transferring fires, and carrying objects or equipment.</p>\r\n\r\n<h2>Facts related to Shavuot</h2>\r\n<ul>\r\n<li>It is customary on Shavuot to decorate and illuminate the Synagogue and the house with flowers and green plants. It is in memory of the foliage around Mount Sinai.</li>\r\n<li>On Shavuot, it is common to eat milk products. Many Jewish homes replace the usual meat/chicken dinner with a celebration of milk products, including cheesecakes, cheeses, blintzes, and ice cream. This tradition commemorates the acts of the children of Israel in Sinai. After obtaining the Law, they understood that their dishes are no longer kosher, which are used for milk and meat. They were also required to teach on intricate details of ritual slaughter (Shechitah). By reducing these, they opted to eat only milk products.</li>\r\n<li>It is compulsory in Orthodox and some traditional communities to participate in Bible/Jewish law teachings on the eve of Shavuot and overnight. It is to accept the Torah for their generation. In Jerusalem, many people learn all night until dawn and later walk on the western wall at sunrise and pray for the day around 5-8 am. After this, they go home for a hearty festive breakfast and then go to sleep for the rest of the morning.</li>\r\n<li>The book of Ruth is explained in the Synagogue on the morning of Shavuot. Ruth turned into Judaism, and it is her descendant David, who became king in Israel. Ruth\'s book shows that achieving high status in Judaism is neither ethnic nor genetic.</li>\r\n</li>It is common to wear new clothes at Shavuot. In seven weeks (Omer), before the Shavuot, people refrain from purchasing major clothing items.</li>\r\n</ul>\r\n\r\n\r\n\r\n','/shavuot/','	Shavuot : A very famous Jewish Festival','Shavuot  (Jewish Festival)','shavuot','/i/festival-banner.jpg','','us','Y',448,'religious','jewish',NULL,NULL),(59,'jewish/yom-haatzmaut','Yom HaAtzma\'ut','Religious','2022-05-05',' Israel\'s Independence Day','','Singing, music, dances, games or performances','<img src=\"/i/yom_haatzmaut.jpg\" alt=\"Yom haatzmaut\">\r\n<br>\r\n<p>In the United States, Many American Jewish remembers Israel\'s Independence Day, also known as Yom Ha\'Atzmaut (or Yom HaAtzmaut). Israel declared independence on May 14th, 1948. Shortly before, the British mandate of Palestine was to end.</p>\r\n\r\n<p>According to the Jewish calendar, the fifth day of Iyar month does not fall on a Sunday. If this date falls on Friday or Saturday, then Yom Haazmut is observed on the third or fourth day of the month. If it falls on a Monday, Yom Haazmut is celebrated on the sixth day of Iyar. It is so that the celebration does not fall immediately before or after the Sabbath.</p>\r\n\r\n<h2>How do People celebrate Yom Ha\'Atzmaut?</h2>\r\n<p>Several Jewish groups, including university student groups, community centers, and some schools, plan events to commemorate Yom Ha\'Atzmaut. Many of these activities are available to the common public at free of cost and include entertainment:</p>\r\n<ul>\r\n<li>Kosher pizza dinners</li>\r\n<li>Singing, music, and dance games or performances</li>\r\n<li>Face painting</li>\r\n<li>Flag making activities</li>\r\n<li>Barbecues</li>\r\n<li>Unique rides, including camel rides</li>\r\n</ul>\r\n<p>Some Jewish societies commemorate Israel\'s Independence Day with benefit concerts from bands as well as local groups from Israel. A variety of music is commonly offered, varying from traditional music to rock twist to modern music from Israel. Various arts and crafts movements for children and young adolescents have also been included in events that commemorate Yom Ha\'Atzmaut.</p>\r\n\r\n<h2>Is Yom Ha\'Atzmaut a national holiday in the US?</h2>\r\n<p>Yom Ha\'Atzmaut is not a national public holiday in the United States. All organizations, businesses, schools, and restaurants remain open on their regular schedules. Some Jewish organizations and schools may remain closed.</p>\r\n\r\n<h2> Facts related to Yom-HaAtzmaut</h2>\r\n<ul>\r\n<li>Many Jewish prophets in the Bible predict that Israel\'s children will return to their land. Isaiah, Jeremiah, and Zechariah made remarkable predictions. For example, Jeremiah 29:10, it is what the Lord says: \"When the seventy years of Babylon are complete, I will come to you and fulfill my good promise to bring you back to this place.\"</li>\r\n<li>In the 19th century, Theodor Herzl was the visionary of the State of Israel in his book Altneuland, \'The Old New Land\' in 1902. Tel Aviv was founded in 1909.</li>\r\n<li>According to Rabbi Tzvi Yehuda Kook and many others in the religious Zionist camp, the establishment of the state of Israel was considered to be Achalata Degulah, the beginning of the final redemption.</li>\r\n<li>Isaiah also mentioned the return of Jews to the Holy Land: On the day of the redemption, a great shofar will be sounded. Those who lost in the Ashur\'s land and dispersed in the Land of Egypt will return to the Holy Land. (Isaiah 27:13).</li>\r\n</ul>\r\n\r\n','/yom-haatzmaut/','Yom HaAtzma\'ut','Yom HaAtzma\'ut (Jewish Festival)','Yom HaAtzma\'ut','/i/festival-banner.jpg','','us','Y',444,'religious','jewish',NULL,NULL),(60,'jewish/yom-hashoah','Yom Hashoah','Religious','2022-04-27','Holocaust Memorial Day and a remembrance day','',' lighting memorial candles and reciting the Kaddish prayer','<img src=\"/i/yom-hassoah-candle.jpg\" alt=\"Yom  HaShoah\">\r\n<br>\r\n<p>Yom HaShoah is also recognized as Holocaust Memorial Day and a remembrance day to honor the six million Jewish people who died during the Holocaust. It is celebrated on the 27th day of the Hebrew month Nisan- which occurs around April or May in the Gregorian calendar. However, if the 27th day or so is near the Jewish Sabbath, then it can be moved a day.</p>\r\n<p> In the United States, many Jewish people celebrate Yom Hashoah, which is also known as Holocaust Remembrance Day. It remembers the lives and bravery of Jews who died in the Holocaust between 1933 and 1945.</p>\r\n\r\n<h2>How do People celebrate Yom Hashoah?</h2>\r\n<p> In the United States, many people, including those with Jewish ancestry or relationships, recognize Yom Hashoah on the 27th day of the Nisan month. Many Jewish societies hold observing ceremonies or functions to commemorate Holocaust victims killed during World War II. Activities may involve lighting memorial candles and reciting the Kaddish prayer for the departed.</p>\r\n\r\n<p>The Masorti movement in Israel planned Megilat HaShoah, a scroll and liturgical reading for Yom HaShoah. It is a joint effort between Israel and Jewish leaders in the United States. Rituals correlated with Yom Hashoah are still being created and suggested. These rituals differ from one synagogue to another in North America.</p>\r\n\r\n<p>Educational events about historical events related to Yom Hashoah are explained around this point of the year, mainly to learners who are studying Jewish history. These programs may include Holocaust survivor stories as well as a Holocaust-themed film.</p>\r\n\r\n<h2>Is Yom Hashoah a public holiday?</h2> \r\n<p>Yom Hashoah is not a national public holiday in the United States. All the businesses, organizations, schools, banks, and stores remain open on this day. The custom of Yom Hashoah moves in the state of Israel when the actual date comes on a Friday or Sunday. It is then commemorated on the previous Thursday or following Monday, respectively. Some societies in the US also follow the same tradition, and therefore, they may have some discrepancy about the actual date Yom Hashoah is observed in America.</p>\r\n\r\n<h2>Facts related to Holocaust Remembrance Day </h2>\r\n<ul>\r\n<li>The date of Yom Hashoah was initially planned to celebrate the Warsaw Uprising (19 April 1943) but was postponed until 27 April due to a clash with the Passover festival that began the following day.</li>\r\n<li>Unlike an ancient Jewish festival, Yom Hashoah is an Israeli festival. Yom Hashoa was inaugurated sixty years ago in 1953. It was founded by Israeli Prime Minister David Ben Gurion and President Isaac (Yitzchak) Ben Zvi. The ancient fast of a tenth of the Tevet is the day on which Jerusalem siege began before the destruction of the holy temple. Many Jews commemorate the Holocaust remembrance day on this day.</li>\r\n<li> On the night of Yom Hashoah, a siren is played, followed by an official memorial service to the Prime Minister, the President, army officials, and Holocaust survivors in Israel, The ceremony includes speeches, Kashish and El Male Rahim, and Hatikvah. Other sirens and various memorial services listen in the morning.</li>\r\n</ul>\r\n','/yom-hashoah/','Yom Hashoah','Yom Hashoah(Jewish Festival)','Yom Hashoah','/i/festival-banner.jpg','','us','Y',442,'religious','jewish',NULL,NULL),(61,'jewish/yom-kippur','Yom Kippur','Religious','2022-10-04','Day of Atonement','',' praying and fasting','<img src=\"/i/jews-praying-in-the-synagogue-on-yom-kippur.jpg\" alt=\"Yom Kippur\">\r\n<br>\r\n<p>Yom Kippur is the holiest day in the Jewish calendar, which recognized as the Day of Atonement. It falls on the tenth day of the Tishrei, a Jewish month. Many Jews in the United States believe in fasting and praying days. Its subject is atonement and repentance.</p>\r\n\r\n<p>In ancient times, Yom Kippur was commemorated by Kohen Gadol in a temple in Jerusalem. A ritual was performed on this day to purify the temple from any accidental ritual impurities that occurred in the previous year. </p>\r\n\r\n<p>According to Jewish tradition, Yom Kippur originated in the time of Moses when the Israelites migrated from Egypt. When Moses reached Mount Sinai, God gave the Ten Commandments to them. When Moses came from the mountain, he found that the people were praying a golden calf. Moses angrily destroyed the tablets, but the people atoned for their wrongdoing, so God pardoned them.</p>\r\n\r\n<h2>How do people celebrate Yom Kippur?</h2>\r\n<p>Many Jewish Americans consider that God seals their fortune for the following year on Yom Kippur. This holiday includes activities such as praying and fasting. It is believed that those who apologize for their sins will granted a happy New Year. Many Jewish spend their time in the synagogue at this point of the year.</p>\r\n<p>The fast lasts for 25 hours and starts in the evening before Yom Kippur. It ends after the night on Yom Kippur. Throughout time, according to Leviticus 23:32, we fast from eating, drinking, getting involved in marital relationships, applying lotion, washing clothes, and wearing leather shoes. Similar to Shabbat, there is no task to be done, and women light holiday candles before the commencement of the holy day. Some restrictions may be lifted if there is a threat to health or life. Many Jewish Americans perform Havdalah ceremonies at evening services and then break the fast. The holiday ends on a happy note, and many Jewish people attend the festivities after the meal.</p>\r\n<p>Jewish leaders give lectures on Yom Kippur in Jewish community centers. Some cities in states such as New York have an interactive start-up service. Yom Kippur also includes a remembrance service, called Yizkor, during which people mention the names of the dead, their lives, admiring them through memory. Some Jews may take a day off from work or organize time during this time of the year to follow the belief that no work is allowed on Yom Kippur.</p>\r\n<h2>Is Yom Kippur a Federal Holiday in the US?</h2>\r\n<p>Yom Kippur is not a national public holiday. But, many Jewish schools, organizations, and businesses may remain closed on this day, and the places around the synagogues may be bustling.</p>\r\n\r\n<p>It is an elective holiday for state government employees in Texas. The Chief Justice of any judicial circuit in Florida may designate Yom Kippur as a legal holiday for court employees within the state\'s judicial circuit. Some states like North Carolina, try to support their government employee\'s request of holiday from work for specific religious holiday observances, such as Yom Kippur.</p>\r\n\r\n\r\n\r\n\r\n \r\n','/yom-kippur/','Yom Kippur','Yom Kippur(Jewish Festival)','Yom Kippur','/i/festival-banner.jpg','','us','Y',454,'religious','jewish',NULL,NULL),(62,'islam/ramadan-end','	Eid-al-Fitr','Religious','2022-05-02','Eid-al-Fitr, End of Ramadan','','Community iftars and Community prayers','<img src=\"/i/eid-al-fitr-prayer.jpg\" alt=\"Eid-al-fitr prayer\">\r\n<br>\r\n<p>Eid al-Fitr also recognized as the festival of fast-breaking or Lesser feast. It signifies the end of Ramadan and the beginning of a three-day feast in some countries, like Jordan, and the United Arab Emirates. It is one of the two important festivals of Islam, with Eid al-Adha being the other major festival. Eid al-Fitr celebrates the end of fasting that occurs during Ramadan.</p>\r\n\r\n<p>According to the Gregorian calendar, it is not possible to accurately predict the day of Eid al-Fitr. It is because when the month of Shawwal begins, and consequently, the month of Ramadan ends, the day of Amavasya (sighting of the new moon) confirmed. Amavasya can be seen at specific places before or after. Therefore, Muslims in different communities, for example, on the east and west coasts of the United States, may begin Eid-al-Fitr commemorations on different days.</p>\r\n\r\n<h2>How do People celebrate Eid al-Fitr?</h2>\r\n<p>Eid al-Fitr is a crucial Islamic holiday in which many Muslims wake up early and pray in either at a prayer hall or a mosque. Many Muslims wear their most beautiful clothes and decorate their homes with lights and other decorations. Old mistakes are forgiven on this day. People give money to the poor and prepare different types of unique foods for friends or relatives to share the feast. People exchange presents, and greeting cards, and children received awards. Eid al-Fitr is a joyful time, but its underlying purpose is to praise and thank God according to Islamic belief.</p>\r\n<p>Some Muslim associations in the United States campaign for schools in some sectors of the nation to allocate Eid al-Fitr as a day off without being penalized on Eid al-Fitr. For example, the Coalition for Muslim School Holidays, a group of more than 80 religious and ethnic organizations, have been requesting to have the two Eid al-Fitr and Eid al-Adha named as days off in New York City schools.</p>\r\n\r\n<h2>Is Eid al-Fitr a public holiday in the US?</h2>\r\n<p>Eid al-Fitr is not a national public holiday in the US. But, many Islamic businesses and organizations may change their business hours during this event. There may be some jam around mosques throughout this time of the year. In New York City, Eid al-Fitr day is a holiday for public schools.</p>\r\n\r\n<h2>Eid al Fitr Starts Facts </h2>\r\n<ul>\r\n<li>Prophet Muhammad asked the Muslims of Madinah about the two festivals to which they were attached. He replied that before Islam, it was traditional to commemorate grand celebrations. It is stated that Muhammad said, instead of those two days, Allah has designated two additional days, which are better, the days of Eid-al-Fitr and Eid-al-Adha.</li>\r\n<li>For Eid-al-Fitr, it is common to have breakfast before prayer (unlike Eid al Adha). It is a custom of the Prophet Muhammad to eat something sweet.</li>\r\n<li>Following the Islamic tradition, many Muslims rise early on Eid-ul-Fitr, to take a bath, known as ghusl. They also wear the best clothes for themselves.</li>\r\n<li>In the Islamic calendar, every single month begins when the new moon is observed. Eid-al-Fitr begins when the Amavasya of Shawwal (the 10th month of the Islamic calendar) appears. Because the moon arrives on various dates in different parts of the world, many Muslim communities commemorate Eid-ul-Fitr on whatever day happens in Mecca.</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n\r\n\r\n','/ramadan-end/','	Eid-al-Fitr-Ending of Ramdan','Ramadan','','/i/festival-banner.jpg','','international','Y',468,'religious','islam','Y',NULL),(63,'islam/waqf-al-arafa-hajj','Waqf al Arafa - Hajj','religious','2021-07-19',NULL,'',NULL,NULL,'/waqf-al-arafa-hajj/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',469,NULL,NULL,NULL,NULL),(176,'australia/australia-day','Australia Day OBS','market','2021-01-26',NULL,'Y',NULL,NULL,'/australia-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2713,NULL,NULL,NULL,NULL),(65,'islam/laylat-al-kadr','Laylat al Qadr','religious','2022-04-28',NULL,'',NULL,'<img src=\"/i/praying_at_the_time_of_laylat_al_qadr.jpg\" alt=\"Lailat al Qadr\">\r\n<br>\r\n<p>Lailat al Qadr marks the time when the first verses of the Koran were revealed to the Islamic Prophet Muhammad. It is considered that at some time, possibly in 610 CE, he got the first verse of the Koran from God. However, it is not clear when the revelation occurred. Prophet Mohammed spent an extended period, especially during Ramadan, meditating about the world around him and seeking help to rid his people of moral evils and idolatry. On some occasions, he traveled to Hira Cave, a small cave in the hills near Mecca, now Saudi Arabia.</p>\r\n\r\n<h2>How do People celebrate Laylat al Qadr?</h2>\r\n<p>Lailat al Qadr marks the time when the first verses of the Quran were revealed to the Islamic Prophet Muhammad. It also assumed that this night marks his fate in the following year. Many Muslims consider the last ten days of Ramadan to be particularly sacred. During this period, they try to visit a mosque, read the Koran, and pray to God at night for mercy, forgiveness, and salvation. This practice also named Ehya. </p>\r\n\r\n<p>This \"night of the power\" is considered the most suitable time of the whole year to pray for salvation and blessings. It is believed that the past sins of a Muslim are forgiven if the person prays on this night. Many gather in mosques during Isha\'s prayer; many prayers are performed till midnight.</p>\r\n\r\n<h2>Is Laylat al-Qadr a national government holiday?</h2>\r\n<p>Laylat al-Qadr is not a national government holiday in the United States. Still, many Islamic organizations and businesses can change their opening hours, and there may be some blockage around mosques, especially in the evening and at night.</p>\r\n\r\n <h2>Facts related to Laylat al Qadr</h2>\r\n<ul>\r\n<li>A complete chapter of the Quran, called \"Al-Qadr,\" is dedicated to explaining the benefits of worshipping on Laylat al Qadr.</li>\r\n<li>According to Islamic tradition, the following are tokens of The Night of Power every year: A quiet night with average temperatures, no shooting stars, and a moon that glows without rays. When the sun rises, it will appear as a circle with no beams of light coming out of it.</li>\r\n<li>Some Muslims assume that on this night, the entire Quran revealed to Angel Gabriel, who recited the verse of Mohammed for more than twenty-three years when God ordered to do so.</li>\r\n<li>Muslims who can take time off work expect to offer namaz on each of the last ten nights, hoping to find Lailat al Qadr, trying to emulate the traditions of Prophet Muhammad. They fast throughout the day and read the Quran and pray during the night. Prophet Muhammad applied to do the same. In fact, according to his wife, he tightened his belt and implored all night, and encouraged his family members to pray all night. (Bukhari, Sahib Bukhari, Volume 3, Book 32, Number 241)</li>\r\n</ul>\r\n\r\n\r\n\r\n\r\n','/laylat-al-kadr/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',467,NULL,NULL,NULL,NULL),(66,'islam/lailat-al-baraah','Lailat al Bara\'ah','religious','2022-03-18','Shab-e-Barat','',NULL,' <img src=\"/i/lailat-al-baraah-quran.jpg\" alt=\"Lailat al Baraah Quran\">\r\n<br>\r\n<p>The Lailat-ul Barat is an essential night for the Muslims and also popularly known as Shab-e-Barat. It is regarded as one of the most sacred nights on the Islamic calendar. Lailat means night, and Barat relates to Privilege. It is believed, God himself blesses all human beings and accumulates all of us in his eternal mercy. Lailat al Barat takes place in the middle of the month of Sha\'ban, one month before Ramadan.</p>\r\n<p>The night starts on the 14th and ends at dawn on the 15th of Sha\'ban. Muslims recommended a fast of at least six days of this month. According to Islamic tradition, Prophet Muhammad fasted more in Sha\'ban than in any other months.</p>\r\n \r\n<h2>How do people celebrate Lailat al Barat?</h2>\r\n<p>Lailat al Barat celebrates a night that Muslims believe God descends from heaven and forgives sins very generously. For this reason, Muslims spend the night in special prayers, reciting from the Holy Qur\'an, and perform other religious rituals, hoping to receive divine blessings for the well-being of humanity.</p>\r\n<p>On this night, most Muslims try to stay awake in prayer as much as possible. Many people will fast on the day next to Laylat al Barat. It is a tradition to visit the graves of their loved ones and pray for the peace of their souls. </p>\r\n \r\n \r\n \r\n','/lailat-al-baraah/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',465,NULL,NULL,NULL,NULL),(157,'sikh/vaisakhi','Vaisakhi','religious','2021-04-14',NULL,'',NULL,NULL,'/vaisakhi/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',416,NULL,NULL,NULL,NULL),(68,'india/milad-un-nabi','Milad un Nabi (Shia)','religious','2021-10-23',NULL,'',NULL,NULL,'/milad-un-nabi/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',463,NULL,NULL,NULL,NULL),(69,'hindu/kartik-poornima','Kartik Poornima','religious','2021-11-19',NULL,'',NULL,NULL,'/kartik-purnima/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',435,NULL,NULL,NULL,NULL),(70,'india/diwali','Diwali','religious','2021-10-20',NULL,'',NULL,NULL,'/diwali/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2490,NULL,NULL,NULL,NULL),(71,'india/dhanteras','Dhan Teras','religious','2021-11-02',NULL,'',NULL,NULL,'/dhanteras/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',433,NULL,NULL,NULL,NULL),(72,'hindu/sharad-purnima','Sharad Purnima','religious','2021-10-19',NULL,'',NULL,NULL,'/sharad-purnima/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',431,NULL,NULL,NULL,NULL),(73,'india/dussehra','Dusshera ','religious','2021-11-06',NULL,'',NULL,NULL,'/dussehra/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',654,NULL,NULL,NULL,NULL),(74,'hindu/bhai-dooj','Bhai Dooj','religious','2021-11-06',NULL,'',NULL,NULL,'/bhai-dooj/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',654,NULL,NULL,NULL,NULL),(75,'hindu/mahalaya-amavasya','Mahalaya Amavasya','religious','2021-10-06',NULL,'',NULL,NULL,'/mahalaya-amavasya/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',425,NULL,NULL,NULL,NULL),(76,'india/onam','Onam','religious','2021-08-21',NULL,'',NULL,NULL,'/onam/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',424,NULL,NULL,NULL,NULL),(77,'india/ganesh-chaturthi','Ganesh Chaturthi','religious','2021-09-10',NULL,'',NULL,NULL,'/ganesh-chaturthi/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',423,NULL,NULL,NULL,NULL),(78,'india/janmashtami','Krishna Janmashtami','religious','2021-08-30',NULL,'',NULL,NULL,'/janmashtami/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',422,NULL,NULL,NULL,NULL),(79,'hindu/nag-panchami','Nag Panchami','religious','2021-08-13',NULL,'',NULL,NULL,'/nag-panchami/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',420,NULL,NULL,NULL,NULL),(80,'hindu/guru-purnima','Guru Purnima','religious','2021-07-24',NULL,'',NULL,NULL,'/guru-purnima/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',419,NULL,NULL,NULL,NULL),(81,'india/rath-yatra','Puri Rath Yatra','religious','2021-07-12',NULL,'',NULL,NULL,'/rath-yatra/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',418,NULL,NULL,NULL,NULL),(82,'hindu/savitri-pooja','Savitri Pooja','religious','2021-06-10',NULL,'',NULL,NULL,'/savitri-pooja/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',417,NULL,NULL,NULL,NULL),(83,'hindu/vishu','Vaisakhi / Baisakhi / Vishu ','religious','2021-04-14',NULL,'',NULL,NULL,'/vishu/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',416,NULL,NULL,NULL,NULL),(84,'hindu/hanuman-jayanti','Hanuman Jayanti','religious','2021-04-27',NULL,'',NULL,NULL,'/hanuman-jayanti/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',414,NULL,NULL,NULL,NULL),(85,'hindu/bihu-bengali-new-year','Bengali New Year / Bihu','religious','2021-04-15',NULL,'',NULL,NULL,'/bihu-bengali-new-year/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',413,NULL,NULL,NULL,NULL),(86,'hindu/ramanavami','Ramanavami','religious','2021-04-02',NULL,'',NULL,NULL,'/ramanavami/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',411,NULL,NULL,NULL,NULL),(87,'hindu/ugadi-telugu-new-year','Ugadi / Gudi Padwa / Telugu New Year','religious','2021-04-13',NULL,'',NULL,NULL,'/ugadi-telugu-new-year/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',410,NULL,NULL,NULL,NULL),(88,'hindu/hindi-new-year','Hindi New Year','religious','2021-04-12',NULL,'',NULL,NULL,'/hindi-new-year/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',409,NULL,NULL,NULL,NULL),(89,'hindu/tamil-new-year','Tamil New Year','religious','2021-04-14',NULL,'',NULL,NULL,'/tamil-new-year/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',405,NULL,NULL,NULL,NULL),(90,'india/pongal','Makarsankranti / Pongal','religious','2021-01-14',NULL,'',NULL,NULL,'/pongal/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',404,NULL,NULL,NULL,NULL),(91,'hindu/chhath-puja','Chhath Puja','religious','2021-11-11',NULL,'',NULL,NULL,'/chhath-puja/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',655,NULL,NULL,NULL,NULL),(92,'hindu/varalakshmi-vrat','Varalakshmi Vrat','religious','2021-08-20',NULL,'',NULL,NULL,'/varalakshmi-vrat/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',685,NULL,NULL,NULL,NULL),(93,'hindu/vishwakarma-puja','Vishwakarma Puja','religious','2021-09-17',NULL,'',NULL,NULL,'/vishwakarma-puja/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',686,NULL,NULL,NULL,NULL),(94,'hindu/geeta-jayanti','Geeta Jayanti','religious','2021-12-14',NULL,'',NULL,NULL,'/geeta-jayanti/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',687,NULL,NULL,NULL,NULL),(95,'hindu/dhanu-sankranti','Dhanu Sankranti','religious','2021-12-12',NULL,'',NULL,NULL,'/dhanu-sankranti/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',688,NULL,NULL,NULL,NULL),(96,'hindu/thaipusam','Thaipusam','religious','2021-01-28',NULL,'',NULL,NULL,'/thaipusam/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',754,NULL,NULL,NULL,NULL),(97,'jewish/simhat-torah','Simchat Torah','religious','2021-09-29',NULL,'',NULL,NULL,'/simhat-torah/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',459,NULL,NULL,NULL,NULL),(98,'jewish/shemini-atzeret','Shmini Atzeret','religious','2021-09-28',NULL,'',NULL,NULL,'/shemini-atzeret/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',458,NULL,NULL,NULL,NULL),(99,'jewish/fast-of-gedaliah','Fast of Gedaliah','religious','2021-09-09',NULL,'',NULL,NULL,'/fast-of-gedaliah/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',453,NULL,NULL,NULL,NULL),(100,'jewish/tisha-bav','Tish\'a B\'Av','religious','2021-07-18',NULL,'',NULL,NULL,'/tisha-bav/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',450,NULL,NULL,NULL,NULL),(175,'australia/queens-birthday','Queen\'s Birthday','market','2021-06-14',NULL,'',NULL,NULL,'/queens-birthday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2717,NULL,NULL,NULL,NULL),(102,'jewish/yom-yerushalayim','Yom Yerushalayim','religious','2021-05-10',NULL,'',NULL,NULL,'/yom-yerushalayim/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',446,NULL,NULL,NULL,NULL),(103,'jewish/yom-hazikaron','Yom HaZikaron','religious','2021-04-14',NULL,'',NULL,NULL,'/yom-hazikaron/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',443,NULL,NULL,NULL,NULL),(104,'jewish/tu-bishvat','Tu Bishvat','religious','2021-01-28',NULL,'',NULL,NULL,'/tu-bishvat/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',436,NULL,NULL,NULL,NULL),(105,'christian/watch-night','Watch Night','religious','2021-12-31',NULL,'',NULL,NULL,'/watch-night/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',403,NULL,NULL,NULL,NULL),(107,'christian/st-nicholas-day','St. Nicholas Day','religious','2021-12-06',NULL,'Y',NULL,NULL,'/st-nicholas-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',399,NULL,NULL,NULL,NULL),(108,'christian/st-andrews-day','St. Andrew\'s Day','religious','2021-11-30',NULL,'',NULL,NULL,'/st-andrews-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',10550,NULL,NULL,NULL,NULL),(109,'christian/advent-first-sunday','Advent - first Sunday','religious','2021-11-28',NULL,'',NULL,NULL,'/advent-first-sunday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',397,NULL,NULL,NULL,NULL),(111,'christian/michael-and-all-angels','Michael and All Angels','religious','2021-09-29',NULL,'Y',NULL,NULL,'/michael-and-all-angels/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',391,NULL,NULL,NULL,NULL),(112,'christian/holy-cross-day','Holy Cross Day','religious','2021-09-14',NULL,'Y',NULL,NULL,'/holy-cross-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',390,NULL,NULL,NULL,NULL),(113,'christian/lammas','Lammas','religious','2021-08-01',NULL,'Y',NULL,NULL,'/lammas/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',388,NULL,NULL,NULL,NULL),(114,'christian/saint-vladimir','Saint Vladimir','religious','2021-06-15',NULL,'',NULL,NULL,'/saint-vladimir/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',387,NULL,NULL,NULL,NULL),(115,'christian/saints-peter-and-paul','Saints Peter and Paul','religious','2021-06-29',NULL,'Y',NULL,NULL,'/saints-peter-and-paul/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',386,NULL,NULL,NULL,NULL),(116,'christian/trinity-sunday','Trinity Sunday','religious','2021-05-30',NULL,'',NULL,NULL,'/trinity-sunday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',384,NULL,NULL,NULL,NULL),(118,'romania/ascension-day','Ascension of Jesus','religious','2021-05-13',NULL,'',NULL,NULL,'/ascension-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',382,NULL,NULL,NULL,NULL),(119,'christian/st-james-the-great-day','St. James the Great Day','religious','2021-07-25',NULL,'',NULL,NULL,'/st-james-the-great-day-/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',381,NULL,NULL,NULL,NULL),(120,'christian/easter-monday','Easter Monday','religious','2021-04-05',NULL,'',NULL,NULL,'/easter-monday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',10507,NULL,NULL,NULL,NULL),(121,'christian/st-georges-day','St. George\'s Day','religious','2021-04-23',NULL,'',NULL,NULL,'/st-georges-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',378,NULL,NULL,NULL,NULL),(122,'philippines/maundy-thursday','Maundy (Holy) Thursday','religious','2021-04-01',NULL,'',NULL,NULL,'/maundy-thursday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',376,NULL,NULL,NULL,NULL),(123,'christian/st-josephs-day','St. Joseph\'s Day','religious','2021-03-19',NULL,'',NULL,NULL,'/st-josephs-day-/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',374,NULL,NULL,NULL,NULL),(124,'christian/candlemas','Candlemas','religious','2021-02-02',NULL,'',NULL,NULL,'/candlemas/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',371,NULL,NULL,NULL,NULL),(126,'christian/christ-the-king','Christ the King','religious','2021-11-21',NULL,'',NULL,NULL,'/christ-the-king/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',656,NULL,NULL,NULL,NULL),(128,'us/rosa-parks-day','Mrs. Rosa L. Parks Day(Commemoration Only)','state','2021-12-01',NULL,'',NULL,NULL,'/rosa-parks-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4540,NULL,NULL,NULL,NULL),(129,'us/jefferson-davis-birthday','Jefferson Davis\' Birthday','state',NULL,NULL,'',NULL,NULL,'/jefferson-davis-birthday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',0,NULL,NULL,NULL,NULL),(130,'us/confederate-memorial-day','Confederate Memorial Day','state','2021-01-19',NULL,'',NULL,NULL,'/confederate-memorial-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',6581,NULL,NULL,NULL,NULL),(131,'us/mardi-gras','Mardi Gras','state','2021-02-16',NULL,'',NULL,NULL,'/mardi-gras/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4531,NULL,NULL,NULL,NULL),(132,'us/sewards-day','Seward\'s Day','state','2021-03-29',NULL,'',NULL,NULL,'/sewards-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4545,NULL,NULL,NULL,NULL),(133,'us/alaska-day','Alaska Day','state','2021-10-18',NULL,'',NULL,NULL,'/alaska-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4549,NULL,NULL,NULL,NULL),(134,'us/george-washington-day','George Washington\'s Birthday','state','2022-02-21',NULL,'',NULL,'<img src=\"/i/president-day-mount-rushmore.jpg\" alt=\"president day mount rushmore\">\r\n<br>\r\n\r\n<p> President\'s Day celebrates on the third Monday of February each year in the United States to honor George Washington, Abraham Lincoln, and all of the nation\'s presidents. According to some government sources, Indiana celebrates Washington\'s birthday holiday in December. You can see the latest trends for President\'s day. Its celebration is increasing day by day. People search more about President\'s Day to learn basic ideas about this. </p>\r\n\r\n<img src=\"/i/trends-presidents-day.jpg\" alt=\"presidents day trends\">\r\n<br>\r\n\r\n<p>People celebrate the Birthday of Abraham Lincon and George Washington on both February 12 and February 22, until 1971. In 1971, President Richard Nixon declared President\'s Day a federal public holiday to honor all United Nations presidents.</p>\r\n\r\n<h2>Is Presidents\' Day in the US a Federal Holiday?</h2>\r\n<p> Presidents\' Day is a federal holiday in most parts of the United States. Many Americans have a day off from work. People who work in retail stores or restaurants may have fewer days off than those who work in the office or school. Non-essential public servants have their day off, and most government offices remain closed for President\'s Day </p>\r\n\r\n<p>Many main outlets offer sales all through the President\'s weekend as many people have their day off, and new spring patterns are available in the market. Expect to find deals like \"Macy\'s  President\'s Day sales\" at national stores on as women\'s and men\'s apparel.</p>\r\n\r\n<p>There is no delay in the public transportation system and operate on regular schedules on this day. </p>\r\n\r\n<h2>How people celebrate Presidents\' Day?</h2>\r\n<p> Washington\'s Birthday officially celebrates to honors George Washington, the first president of the United States, for his life and work. The day celebrates past presidents of the USA. Washington\'s birthday is sometimes recognized as Presidents\' Day. It is because maximum states have followed Washington\'s Birthday, and some other states officially celebrate Presidents\' Day. Some states pay attention to Abraham Lincoln, as his birthday was also in mid-February. In the weeks or days leading up to the holiday, schools often handle events and lessons for students on the President of the United States, and especially George Washington. It is a big day for shops to start their sales. </p>\r\n\r\n<h2>Are banks and post offices closed on Presidents Day?</h2>\r\n<p>Mostly all the Banks are closed on Presidents\' Day. All the branches of major banks like People\'s United Bank, First Citizens Bank, Bank of America, and Wells Fargo are closed on Presidents\' Day each year. Mostly local branches of small banks and credit unions are also close. But, ATMs and TD Bank remains open and continues their services.</p>\r\n\r\n<p> Washington\'s Birthday is a postal holiday, and the post offices remain closed. Also, there is no mail delivery on this day, because of the holiday. On the other hand, Federal Express and UPS services, and offices are open as usual, and delivery remains open, even if it is President\'s Day. </p>\r\n\r\n<h2>Are schools closed on President\'s Day?</h2>\r\n<p>Practically all public and private schools remain closed in observance of President\'s Day. Some schools closed for the entire week for a mid-week winter holiday. </p>\r\n\r\n<h2>Is the stock market open?</h2>\r\n<p>The stock market remains closed for trading. Nasdaq, the New York Stock Exchange, and other major US exchanges observe off on Monday as President\'s Day.</p>\r\n\r\n\r\n\r\n','/presidents-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2889,NULL,NULL,NULL,NULL),(135,'us/chavez-day','Cesar Chavez Day','state','2021-03-31',NULL,'Y',NULL,NULL,'/cesar-chavez-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',6150,NULL,NULL,NULL,NULL),(136,'us/lincolns-birthday','Lincoln\'s Birthday','state','2021-02-12',NULL,'',NULL,NULL,'/lincolns-birthday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4915,NULL,NULL,NULL,NULL),(137,'us/election-day','Election Day','state','2021-11-02',NULL,'',NULL,NULL,'/election-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4697,NULL,NULL,NULL,NULL),(138,'us/washington-day','Washington Birthday','state','2022-02-21',NULL,'',NULL,'<img src=\"/i/president-day-mount-rushmore.jpg\" alt=\"president day mount rushmore\">\r\n<br>\r\n\r\n<p> President\'s Day celebrates on the third Monday of February each year in the United States to honor George Washington, Abraham Lincoln, and all of the nation\'s presidents. According to some government sources, Indiana celebrates Washington\'s birthday holiday in December. You can see the latest trends for President\'s day. Its celebration is increasing day by day. People search more about President\'s Day to learn basic ideas about this. </p>\r\n\r\n<img src=\"/i/trends-presidents-day.jpg\" alt=\"presidents day trends\">\r\n<br>\r\n\r\n<p>People celebrate the Birthday of Abraham Lincon and George Washington on both February 12 and February 22, until 1971. In 1971, President Richard Nixon declared President\'s Day a federal public holiday to honor all United Nations presidents.</p>\r\n\r\n<h2>Is Presidents\' Day in the US a Federal Holiday?</h2>\r\n<p> Presidents\' Day is a federal holiday in most parts of the United States. Many Americans have a day off from work. People who work in retail stores or restaurants may have fewer days off than those who work in the office or school. Non-essential public servants have their day off, and most government offices remain closed for President\'s Day </p>\r\n\r\n<p>Many main outlets offer sales all through the President\'s weekend as many people have their day off, and new spring patterns are available in the market. Expect to find deals like \"Macy\'s  President\'s Day sales\" at national stores on as women\'s and men\'s apparel.</p>\r\n\r\n<p>There is no delay in the public transportation system and operate on regular schedules on this day. </p>\r\n\r\n<h2>How people celebrate Presidents\' Day?</h2>\r\n<p> Washington\'s Birthday officially celebrates to honors George Washington, the first president of the United States, for his life and work. The day celebrates past presidents of the USA. Washington\'s birthday is sometimes recognized as Presidents\' Day. It is because maximum states have followed Washington\'s Birthday, and some other states officially celebrate Presidents\' Day. Some states pay attention to Abraham Lincoln, as his birthday was also in mid-February. In the weeks or days leading up to the holiday, schools often handle events and lessons for students on the President of the United States, and especially George Washington. It is a big day for shops to start their sales. </p>\r\n\r\n<h2>Are banks and post offices closed on Presidents Day?</h2>\r\n<p>Mostly all the Banks are closed on Presidents\' Day. All the branches of major banks like People\'s United Bank, First Citizens Bank, Bank of America, and Wells Fargo are closed on Presidents\' Day each year. Mostly local branches of small banks and credit unions are also close. But, ATMs and TD Bank remains open and continues their services.</p>\r\n\r\n<p> Washington\'s Birthday is a postal holiday, and the post offices remain closed. Also, there is no mail delivery on this day, because of the holiday. On the other hand, Federal Express and UPS services, and offices are open as usual, and delivery remains open, even if it is President\'s Day. </p>\r\n\r\n<h2>Are schools closed on President\'s Day?</h2>\r\n<p>Practically all public and private schools remain closed in observance of President\'s Day. Some schools closed for the entire week for a mid-week winter holiday. </p>\r\n\r\n<h2>Is the stock market open?</h2>\r\n<p>The stock market remains closed for trading. Nasdaq, the New York Stock Exchange, and other major US exchanges observe off on Monday as President\'s Day.</p>\r\n\r\n\r\n\r\n','/presidents-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',5071,NULL,NULL,NULL,NULL),(139,'us/state-holiday','State Holiday','state','2021-04-26',NULL,'',NULL,NULL,'/state-holiday-georgia/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4706,NULL,NULL,NULL,NULL),(140,'us/kuhio-day','Prince Jonah Kuhio Kalanianaole Day','state','2021-03-26',NULL,'',NULL,NULL,'/kuhio-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4718,NULL,NULL,NULL,NULL),(141,'us/kamehameha-day','King Kamehameha I Day','state','2021-06-11',NULL,'Y',NULL,NULL,'/kamehameha-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4721,NULL,NULL,NULL,NULL),(142,'us/statehood-day','Statehood Day','state','2021-08-20',NULL,'',NULL,NULL,'/statehood-day-hawaii/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4723,NULL,NULL,NULL,NULL),(143,'us/primary-election-day','Primary Election Day','state','2021-11-02',NULL,'',NULL,NULL,'/primary-election-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4697,NULL,NULL,NULL,NULL),(144,'us/general-election-day','General Election Day','state','2021-11-02',NULL,'',NULL,NULL,'/election-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4697,NULL,NULL,NULL,NULL),(145,'us/patriot-day','Patriot\'s Day','state',NULL,NULL,'',NULL,NULL,'/patriots-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',0,NULL,NULL,NULL,NULL),(146,'us/american-indian-heritage-day','American Indian Heritage Day','state','2021-10-11',NULL,'',NULL,NULL,'/american-indian-heritage-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4537,NULL,NULL,NULL,NULL),(147,'us/emancipation-day','Emancipation Day','state','2021-06-19',NULL,'',NULL,NULL,'/emancipation-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',6586,NULL,NULL,NULL,NULL),(148,'us/truman-day','Truman Day','state','2021-05-08',NULL,'',NULL,NULL,'/truman-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4860,NULL,NULL,NULL,NULL),(149,'us/arbor-day','Arbor Day','state','2021-04-30',NULL,'',NULL,NULL,'/arbor-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4883,NULL,NULL,NULL,NULL),(150,'us/nevada-day','Nevada Day','state','2021-10-29',NULL,'',NULL,NULL,'/nevada-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4898,NULL,NULL,NULL,NULL),(151,'us/victory-day','Victory Day','state','2021-08-09',NULL,'',NULL,NULL,'/victory-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4971,NULL,NULL,NULL,NULL),(152,'us/pioneer-day','Pioneer Day','state','2021-07-23',NULL,'',NULL,NULL,'/pioneer-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',5017,NULL,NULL,NULL,NULL),(153,'us/town-meeting-day','Town Meeting Day','state','2021-03-02',NULL,'',NULL,NULL,'/town-meeting-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',5083,NULL,NULL,NULL,NULL),(154,'us/Bennington-day','Bennington Battle Day','state','2021-08-16',NULL,'Y',NULL,NULL,'/bennington-battle-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',5086,NULL,NULL,NULL,NULL),(155,'us/lee-jack-day','Lee-Jackson Day','state','2021-01-15',NULL,'',NULL,NULL,'/lee-jackson-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',5069,NULL,NULL,NULL,NULL),(156,'us/native-americans-day','Native American Heritage Day','state','2021-10-11',NULL,'',NULL,NULL,'/native-americans-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',4537,NULL,NULL,NULL,NULL),(158,'sikh/martyrdom-of-guru-arjan-dev-sahib','Martyrdom of Guru Arjan Dev Sahib','religious','2021-06-16',NULL,'Y',NULL,NULL,'/martyrdom-of-guru-arjan-dev-sahib/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',486,NULL,NULL,NULL,NULL),(159,'sikh/hola-mohalla','Hola Mohalla','religious','2021-03-29',NULL,'',NULL,NULL,'/hola-mohalla/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',484,NULL,NULL,NULL,NULL),(160,'sikh/maghi-lohri','Maghi - Lohri','religious','2021-01-14',NULL,'',NULL,NULL,'/maghi-lohri/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',482,NULL,NULL,NULL,NULL),(161,'sikh/guru-gobind-singh-birthday','Guru Gobind Singh Birthday','religious','2021-01-20',NULL,'',NULL,NULL,'/guru-gobind-singh-birthday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',481,NULL,NULL,NULL,NULL),(162,'sikh/guru-nanak-birthday','Guru Nanak Birthday','religious','2021-11-19',NULL,'',NULL,NULL,'/guru-nanak-birthday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',494,NULL,NULL,NULL,NULL),(163,'sikh/martyrdom-of-guru-tegh-bahadur-sahib','Martyrdom of Guru Tegh Bahadur Sahib','religious','2021-11-24',NULL,'Y',NULL,NULL,'/martyrdom-of-guru-tegh-bahadur-sahib/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',495,NULL,NULL,NULL,NULL),(164,'sikh/birthday-of-guru-angad-dev','Birthday of Guru Angad Dev','religious','2021-04-18',NULL,'Y',NULL,NULL,'/birthday-of-guru-angad-dev/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',661,NULL,NULL,NULL,NULL),(165,'sikh/birth-of-the-guru-granth','Birth of the Guru Granth','religious','2021-10-20',NULL,'Y',NULL,NULL,'/birth-of-the-guru-granth/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',662,NULL,NULL,NULL,NULL),(166,'buddhist/bodhi-day','Bodhi Day','religious','2021-01-20',NULL,'',NULL,NULL,'/bodhi-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',480,NULL,NULL,NULL,NULL),(167,'buddhist/asala-dharma-day','Asala - Dharma Day','religious','2021-07-24',NULL,'',NULL,NULL,'/asala-dharma-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',479,NULL,NULL,NULL,NULL),(168,'singapore/vesak-day','Vesak - Buddha Day','religious','2021-05-26',NULL,'',NULL,NULL,'/vesak-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',478,NULL,NULL,NULL,NULL),(169,'buddhist/theravada-new-year','Theravada New Year','religious','2021-04-27',NULL,'',NULL,NULL,'/theravada-new-year/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',477,NULL,NULL,NULL,NULL),(170,'buddhist/magha-puja-day','Magha Puja Day','religious','2021-02-27',NULL,'',NULL,NULL,'/magha-puja-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',476,NULL,NULL,NULL,NULL),(171,'buddhist/nirvana-day','Nirvana Day','religious','2022-02-15',NULL,'Y',NULL,'<img src=\"/i/when-buddha-got-nirvana.jpg\" alt=\"Nirvana Day\">','/nirvana-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',475,NULL,NULL,NULL,NULL),(172,'buddhist/mahayana-new-year','Mahayana New Year','religious','2022-01-18',NULL,'',NULL,'<img src=\"/i/mahayana-new-year.jpg\" alt=\"Mahayana New Year\">\r\n<br>\r\n<p>The first full moon in January marks the beginning of the new year in the countries which follow the Mahayana Buddhism beliefs. </p>\r\n\r\n<p>Although the Buddhist New Year falls on a different day, it depends upon ethnicity and country. For example, Chinese, Koreans, and Vietnamese hold their celebrations in correspondence with the lunar calendar, either late January or early February. Whereas Tibetans usually celebrate roughly one month later.</p>\r\n\r\n<p>The largest category of Buddhism is Mahayana. Mahayana Buddhists consider that any person can obtain enlightenment in his current lifetime. They think that knowledge can be made not only by nuns and monks but also by ordinary Buddhists. The goal of religion is to help people, achieve understanding through good deeds, and by following the teachings of Buddha.</p>\r\n\r\n<h2>How people celebrate Mahayana New Year?</h2>\r\n <p>People visit this day to the nearest local Buddhist temple, pray and glorify the Buddha. This festival is about his life and new beginnings. You can also make some offerings for the monks and the temple. Just remember the rules of the temple, which they strictly follow. You should pray for a successful year under his guidance.                            \r\nAn everyday activity for this day is to bathe the statue of Buddha. People understand that this method enables one to overcome all negative thoughts. To do this, you can pour water on your Buddha statue and think clearly about your negative thoughts then focus on the right sides.</p>\r\n<p>You can also bring the celebration of this day on social media. You can use the hashtag<a href=\"https://twitter.com/hashtag/MahayanaNewYear\"  target=\"_blank\"  rel=\"nofollow\"> #MahayanaNewYear</a> to tell your friends and followers that you are participating in the celebration of this day.</p>\r\n<ul>\r\n<li>\"May your days be as glittery as a diamond, may your friends be as good as gold, may your heart stay as green as an emerald, and may your soul remain as pure as a pearl.\"</li>\r\n<li>Happy New Year! Always welcome the new morning with a new spirit, a smile on your face, love in your heart, and good thoughts in your mind.\"</li>\r\n<li>\"An idea that is developed and put into action is more important than an idea that exists only as an idea.\" – Buddha</li>\r\n<li>\"The ego\'s root feeling is that if I do not hold myself together, there will be a falling apart into something chaotic and stressful. So there is anxiety, energetic anxiety which is located in the body, in the whole active system of the body and interpersonal turbulence reminds us again and again \'If I don\'t keep it together, I will get in trouble.\'\" – Dalai Lama</li>\r\n<li>\"Do not overrate what you have received, nor envy others. He who envies others does not obtain peace of mind.\" – Buddha</li>\r\n</ul>\r\n\r\n\r\n\r\n','/mahayana-new-year/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',473,NULL,NULL,NULL,NULL),(174,'buddhist/obon','Obon','religious','2021-08-13',NULL,'',NULL,NULL,'/obon/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',659,NULL,NULL,NULL,NULL),(177,'india/ram-navami','Ram Navami','market','2021-04-21',NULL,NULL,NULL,NULL,'/ramanavami/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2493,NULL,NULL,NULL,NULL),(178,'singapore/hari-raya-puasa','Id-ul-Fitr (Ramzan ID)','market','2021-05-13',NULL,NULL,NULL,NULL,'/hari-raya-puasa/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2475,NULL,NULL,NULL,NULL),(179,'india/gandhi-jayanti','Mathatma Gandhi Jayanti','market','2021-10-02',NULL,'Y',NULL,NULL,'/gandhi-jayanti/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2488,NULL,NULL,NULL,NULL),(180,'india/ambedkar-jayanti','Dr.Baba Saheb Ambedkar Jayanti','market','2021-04-14',NULL,'Y',NULL,NULL,'/ambedkar-jayanti/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2516,NULL,NULL,NULL,NULL),(181,'india/maharashtra-din','Maharashtra Day','market','2021-05-01',NULL,'Y',NULL,NULL,'/maharishi-valmikis-birthday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2482,NULL,NULL,NULL,NULL),(182,'india/mahavir-jayanti','Mahavir Jayanti','market','2021-04-25',NULL,'',NULL,NULL,'/mahavir-jayanti/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2502,NULL,NULL,NULL,NULL),(183,'india/republic-day','Republic Day','market','2021-01-26',NULL,'Y',NULL,NULL,'/republic-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2499,NULL,NULL,NULL,NULL),(186,'uk/early-may-bank-holiday','Early May Bank Holiday','market','2021-05-03',NULL,'',NULL,NULL,'/early-may-bank-holiday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',319,NULL,NULL,NULL,NULL),(187,'uk/summer-bank-holiday','Summer Bank Holiday','market','2021-08-30',NULL,'',NULL,NULL,'/summer-bank-holiday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',10533,NULL,NULL,NULL,NULL),(188,'uk/may-spring-bank-holiday','Spring Bank Holiday','market','2021-05-31',NULL,'',NULL,NULL,'/may-spring-bank-holiday/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',10622,NULL,NULL,NULL,NULL),(190,'canada/victoria-day','Victoria/Patriots\' Day','market','2021-05-24',NULL,'',NULL,NULL,'/victory-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2766,NULL,NULL,NULL,NULL),(191,'canada/canada-day','Canada Day','market','2021-07-01',NULL,'Y',NULL,NULL,'/canada-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2767,NULL,NULL,NULL,NULL),(192,'canada/provincial-day','Civic Holiday','market','2021-08-02',NULL,'',NULL,NULL,'/provincial-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2768,NULL,NULL,NULL,NULL),(195,'fun/national-donut-day','National Donut Day','us','2021-06-04',NULL,NULL,NULL,NULL,'/national-donut-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',2453,NULL,NULL,NULL,NULL),(196,'fun/national-cousins-day','National Cousins Day','event','2023-07-24',NULL,'Y',NULL,'<img src=\"/i/national-cousins-day.jpg\" alt=\"National Cousins Day\">\r\n<br><p>Everyone celebrates National Cousins Day on 24 July every year. It is a great time to show our affection for our cousins. The folks that made family gatherings enjoyable, or at least tolerable and less awkward, when we were youngsters were our cousins, whether they were our first best friend or first nemesis. After years have passed, cousins still frequently get in touch with one another to reminisce about their shared past as a family unit, even if that family no longer gets together for formal reunions. Furthermore, you may not need a designated day to keep in touch with your cousins if you\'re like brothers and sisters or if you became close friends as kids.</p>\n\n<p>So, if you need an annual reminder to catch up with your cousins from back in the day, mark National Cousins Day on your calendar. Those who are fortunate enough to have cousins should still take this opportunity to honor them, whether they are close relatives, distant relatives, friends, or rivals.</p>\n\n<h2>When is National Cousins Day?</h2>\n\n<p>On July 24, everyone commemorates National Cousins Day which recognizes the special relationship between cousins.</p>\n\n<h2>National Cousins Day History</h2>\n\n<p>The actual history about who initiated to celebrate National Cousins Day is still a mystery. All matters is that cousins have always played an important role in maintaining family ties. So, it is celebrated every year.</p>\n\n<h2>How to Celebrate National Cousins Day?</h2>\n<p>In honor of National Cousins Day, be sure to let your favorite cousin know how much they mean to you. So let\'s look out below for some amazing ideas to celebrate National Cousins Day.</p>\n\n<h3>Hangout with your Cousins</h3>\n<p>Let\'s take your cousin out for a hangout. If you\'re going to be together, you could enjoy the day. You can get together for lunch, night out or drinks and catch up.</p>\n\n<h3>Swap your wardrobe, music, and movies</h3>\n<p>If you\'re a college student on a tight budget, swap meets are a fantastic alternative to traditional shopping. Have a monthly swap meet with your pals. You and your cousins will get together and swap unwanted stuff, such as clothing, media, and more.</p>\n\n<h3>Text your cousins to feel special</h3>\n<p>If you don\'t see your cousin very often because of where you reside, a message is a great way to let them know they are in your thoughts. You can use some wonderful cousin quotes to convey your affection for your cousin via text message or social media by using hashtags like #nationalcousinsday or #siblings or #cousinsday.</p>\n\n<h3>Video Call them</h3>\n<p>You may contact your cousins by calling them up for a chat. Just let them know you\'re thinking of them by leaving a voicemail. This is the kind of thing that can have a huge impact.</p>\n\n<h3>Make a movie plan</h3>\n<p>Viewing The Fresh Prince of Bel-Air is another enjoyable way to celebrate National Cousins Day. In terms of popularity, this is undoubtedly the most well-known series ever about a group of cousins. We believe that you are familiar with this television show.  If you\'re looking for a funny movie to watch with your family, there are numerous that include zany relatives. One such film is Christmas Vacation, which centers on Eddie, \"the worst cousin ever.\" Mara and Cara Craig from The Great Outdoors and Illinois Gordon from Hoodlum.</p>\n\n<h2>Why Celebrate National Cousins Day?</h2>\n\n<p>National Cousins Day is celebrated to get mending fences with distant relatives by reconnecting with our cousins. There\'s no better time than National Cousins Day to reconnect with distant relatives you may have forgotten about. Some of our earliest and closest pals were our cousins. We would catch up on the latest rumors at family gatherings and sneak extra treats when no one was looking. That\'s why National Cousins Day is celebrated.</p>\n\n<h2>Interesting Facts about National Cousins Day</h2>\n<ul>\n  <li>There are currently 25 states in the US that have outright banned first cousin marriages, though some do make exceptions for adopted cousins. There are 20 other states where it is not illegal to marry a first cousin.</li>\n\n<li>The offspring of two brothers who marry two sets of sisters are said to be double first cousins.</li>\n\n<li>One\'s \"first cousins\" are their aunt and uncle\'s offspring. If you are first cousins, then one of your grandparents is the common ancestor you share with your cousin. While dating a first cousin is not against the law, marriage between first cousins is frowned upon and prohibited in most states in the USA.</li>\n\n<li>People who share a great-grandparent with you but not a grandparent are considered your second cousins.</li>\n\n<li>Queen Elizabeth II and Prince Philip\'s marriage is the most well-known example of a cousin marriage. They share a common ancestor: Queen Victoria of the United Kingdom.</li>\n</ul>\n','/national-cousins-day/',NULL,NULL,NULL,'/i/festival-banner.jpg',NULL,NULL,'Y',14416,NULL,NULL,NULL,NULL),(197,'fun/husband-appreciation-day','Husband Appreciation Day','event','2023-04-15',NULL,NULL,NULL,'<img src=\"/i/husband-appreciation-day.jpg\" alt=\"Husband Appreciation Day\">\r\n<br><p>Husband Appreciation Day is celebrated annually on the third Saturday of April. This day is less stressful than Valentine\'s Day and more romantic than Father\'s Day and Men\'s Day. In honor of all the husbands, we would like to celebrate National Husband Appreciation Day. The husband\'s duty and responsibility in protecting his family, which includes his wife, mother, and any children, remains constant regardless of time.</p>\n\n<p>Every couple should take advantage of this day to do something special for their family. Every wife takes this opportunity to go all out for her husband; many implement novel plans and collaborate with other wives to make this day truly remarkable. In addition, spend this special day with your husband, enjoying each other\'s company and showering him with additional affection. Although the husband\'s place in the home has evolved, that doesn\'t make him less deserving of praise. So, let\'s celebrate this day with your hubby or partner. Moreover, enjoy this special day with your loved ones and make memories to last a lifetime.</p>\n\n<h2>When is Husband Appreciation Day?</h2>\n\n<p>The Husband Appreciation Day takes place on the third Saturday of April every year.</p>\n\n<h2>Husband Appreciation Day History</h2>\n\n<p>Husbands were traditionally the primary providers for their households in many societies. The primary function of a husband, however, has little to do with the bread he brings home or the housework he does. However, the history of celebrating Husband Appreciation Day is quite a mystery but what matters most is how much they care for and encourage their significant others. To them, this emotional component is far more important than everything else, and they work tirelessly to achieve it.</p>\n\n<h2>How to Celebrate Husband Appreciation Day?</h2>\n\n<p>In honor of Husband Appreciation Day, be sure to let your beloved husband know how much he mean to you. So let\'s look out below for some lovable ideas to celebrate Husband Appreciation Day.</p>\n\n<h3>Cook his favorite food</h3>\n<p>As the old adage goes, a man\'s stomach is the gateway to his heart. Cooking his favorite meal is a universal sign of affection, and he will know you\'ve put in extra effort for him and spoken his love language when he tastes the results. This is a great idea for a holiday present for your significant other. This is the nicest gift you could ever give him, and it\'s priceless. Every woman should surprise her spouse with a special meal every once in a while.</p>\n\n<h3>Make him feel special</h3>\n<p>Think about why you married your husband, what keeps you together, and how your husband helps you and your family. Please find out the responses to these questions and wow, amaze, and wow your husband with them. This is a great idea if you want to make your spouse happy and feel appreciated on Husband Appreciation Day. Boo, baby, sweetheart, darling, honey and love are the beautiful words to show your love for him.</p>\n\n<h3>Create a fun environment</h3>\n<p>Participate in something he enjoys. If your spouse enjoys playing games, for example, take advantage of this special day by going to a game with him. Make memories and also you can post it on social media platforms by using hashtags like #husbandappreciationday or #love, #family, or #marriage, #wedding #couple or #couplegoals.</p>\n\n<h3>Go on a vacation</h3> \n<p>Take your sweet husband on vacation to a scenic location where the two of you can relax and reconnect while also demonstrating how much he means to you. Have the most romantic evening of your life by going to a candlelit restaurant.</p>\n\n\n<h2>Why Celebrate Husband Appreciation Day?</h2>\n\n<p>Husband Appreciation day is the day of recognition that marks our affection for our husband when he goes out into the world and makes sacrifices—helping around the house—and as a confidence booster.</p>\n\n<p>Your husband is the person who is constantly thinking of you, who can make you laugh no matter how bad things go, and who will always be there for you. Your husband will always be there to help you through tough times and never leave your side, no matter your difficulties. As a token of our gratitude, we celebrate Husband Appreciation Day.</p>\n\n<h2>Interesting Facts about Husband Appreciation Day</h2>\n\n<p>As a Middle English and Old Norse loanword, husband means \"a householder\" in its original context.</p>\n\n<p>Once upon a time, husbands were responsible for the safety of their families and the household\'s staff and cattle.</p>\n\n<p>Although the wedding ring has become a universal sign of wedded bliss in Western societies, other cultures use a variety of other indicators, such as the husband\'s beard in the Amish community or the tallit in the Jewish community, or even nothing at all in the case of a Muslim husband.</p>\n\n<p>Husband selling, featured in a book by French author François Billetdoux, is when a wife transfers legal ownership of her husband to another woman after divorcing him.</p>\n','/husband-appreciation-day/',NULL,NULL,NULL,NULL,NULL,NULL,'Y',0,NULL,NULL,NULL,NULL),(198,'fun/cyber-monday','Cyber Monday','event','2023-11-27',NULL,NULL,NULL,'<img src=\"/i/cyber-monday.jpg\" alt=\"Cyber Monday\">\r\n<br><p>The Monday after Thanksgiving is recognized as Cyber Monday, a shopping holiday. It\'s a day when many online stores offer customers huge discounts. Therefore, tens of millions of people shop on this day to get the best deal for themselves or the best gift for the upcoming holiday shopping season. Even though it was once thought to be an exclusively American holiday, it is now widely celebrated across the globe.</p>\n\n<p>Neither the states nor the federal government of the United States recognizes Cyber Monday as a legal holiday. That means everything is operating as usual on this day if it is normally open. Some unfortunate shoppers will use their office Internet connections to shop on Cyber Monday. Many companies had to fire workers who used their office computers for shopping on Cyber Monday because of this.</p> \n\n<p>In addition, Many stores offer steep discounts on a limited selection of items on Black Friday and Cyber Monday. Furthermore, many people now believe Cyber Monday is responsible for Black Friday\'s decline because of the convenience it provides shoppers who prefer to avoid crowds. This could be due to the ease of shopping from home or the lower cost of goods on the internet on Monday.</p>\n\n<h2>When is Cyber Monday?</h2>\n\n<p>Cyber Monday is celebrated as the Monday after Thanksgiving.</p>\n\n<h2>Cyber Monday History</h2>\n\n<p>Cyber Monday is widely credited as having been created by the senior vice president of the National Retail Federation for the 2005 holiday shopping season. The term \"Cyber Monday\" was coined after studies revealed that the Monday after Thanksgiving was one of the busiest online shopping days of the holiday season. It was hypothesized that on the Monday after Thanksgiving, people would go online to search for the products they had viewed in stores and buy them at a discount.</p>\n<p>Although it began in the United States, this day dedicated to shopping has quickly become internationally recognized and celebrated. It is celebrated in North America, Asia, the Middle East, South America, Australia, and Europe.</p>\n\n<h2>What is the difference between Cyber Monday and Black Friday?</h2>\n\n<p>Black Friday has been around since the 1950s, while Cyber Monday has only recently emerged. The term \"Cyber Monday\" was coined in 2005 to describe the Monday following \"Black Friday,\" when consumers continued shopping online despite being back at work. The first Monday after Thanksgiving, known as Cyber Monday, is online merchants\' busiest shopping day of the year.</p>\n\n<p>The idea of Black Friday as the beginning of the holiday shopping season is evolving as more consumers opt to begin their search for deals on the internet rather than in stores. Discounts typically increase in magnitude from Black Friday through Cyber Monday, the latter day of which has been dubbed \"Cyber Monday.\" This is a great chance for stores to make room for holiday merchandise and collect valuable information.</p>\n\n<h2>How to Celebrate Cyber Monday?</h2>\n\n<p>On the occasion of Cyber Monday, let your weekend be full of new stuff. So let\'s look out below for some amazing and interesting ideas.</p>\n\n<h3>Create your shopping list</h3>\n<p>We\'re all looking for the best prices on the best presents of the holiday season. Being cautious and savvy online is essential. Create the list ahead of time, and keep it consistent. Maintaining financial discipline is facilitated by this as well. Be wary of spam, scams, and spoofed sites, and stick to reputable sources only.</p>\n\n<h3>Look out for Internet-based local merchants</h3>\n<p>Small businesses are well represented on Cyber Monday. You could stumble upon an incredible bargain.</p>\n\n<h3>Grab the best deal</h3>\n<p>For the best deals, peruse the social media channels of your preferred store. The best way to save money is to use the credit card that offers the most points. When you\'re done with your holiday shopping, it\'s important to keep an eye on your bank and credit card statements for any unusual activity.</p>\n\n<h3>Celebrate on Social Media</h3>\n<p>You can continue your Black Friday online shopping once you return from the office on Monday. In addition, make social media posts with the hashtag #CyberMonday.</p>\n\n<h2>Why Celebrate Cyber Monday?</h2>\n\n<p>In 2005, the first Monday after Thanksgiving was given the moniker \"Cyber Monday\" after retailers discovered it. Cyber Monday is celebrated for the shoppers who look forward to great deals each year. Many people would rather spend Thanksgiving with loved ones than stand in the long lines that form on Black Friday to get a good deal. Cyber Monday allows customers to take advantage of sales without leaving the comfort of their homes. Furthermore, many merchants on Cyber Monday provide free shipping to add to the allure of online purchasing.</p>\n\n<h2>Cyber Monday: Some Fascinating Facts</h2>\n\n<p>Cyber Monday trend has recently begun to shift, though online retailers have historically responded to Black Friday by offering their best holiday deals on Cyber Monday.</p>\n\n<p>Black Friday and Cyber Monday used to be two separate shopping events, but they have become one in recent years.</p>\n\n<p>Advertising on social media platforms is amplified, increasing the volume of online shoppers. This year, online purchases are predicted to increase to $3 billion.</p>\n\n<p>There has been a rise in the use of mobile devices to make purchases, adding to the ease of Cyber Monday purchases.</p>\n\n<p>Technology products, especially wearable tech, and more traditional small appliances, clothing, gift cards, and digital media are likely to be some of the most popular online purchases.</p>\n','/cyber-monday/',NULL,NULL,NULL,NULL,NULL,NULL,'Y',14415,NULL,NULL,NULL,NULL),(199,'fun/black-friday','Black Friday','event','2023-11-24',NULL,NULL,NULL,'<img src=\"/i/black-friday.jpg\" alt=\"Black Friday\">\r\n<br><p>Black Friday is the day in the USA after the Thanksgiving holiday and has historically been treated as a holiday by many employers. The start of the holiday shopping phase, Black Friday is known for its abundance of sales and discounts. Many economists use the amount of money spent on Black Friday as a barometer for consumer confidence and the economy\'s health. One possible reason for the name \"Black Friday\" is the tire marks left by vehicles stuck in heavy traffic on this day after Thanksgiving.</p>\n\n<p>Furthermore, Black Friday became widely recognized as the day to find excellent sales at stores across the country. The best deals of the year wait for you at the stores on this day, as Black Friday encourages you to shop until you drop.</p>\n\n<h2>When is Black Friday?</h2>\n\n<p>Black Friday is the day after Thanksgiving. On this day, many stores have their biggest sales of the year.</p>\n\n<h2>History of Black Friday</h2>\n\n<p>Black Friday was first applied to describe the day of September 24, 1869, when a failed attempt to manipulate the American gold markets led to widespread bankruptcies. However, the most well-known tale about Black Friday is that it was the day stores celebrated their transition from \"in the red\" to \"in the black\" due to the holiday shopping season.</p>\n\n<p>From 1896, many police officers resented working \"Black Friday\" the day after Thanksgiving, because they had to put in extra hours on their off days. Black Friday was a haven for shoplifters and a nightmare for the police to manage due to the influx of people into the city in preparation for the Army-Navy game the following day.</p>\n\n<p>Moreover, an article from 2009 in TIME magazine claims that the term \"Black Friday\" was coined by Philadelphia newspapers in the 1960s to describe the massive outpouring of shoppers on the day after Thanksgiving.</p>\n\n<h2>How can you Celebrate Black Friday?</h2>\n<p>In honor of celebrating Black Friday, let your weekend be full of new stuff. So let\'s look out below for some amazing and interesting ideas.</p>\n\n<h3>Make your Shopping Cart</h3>\n<p>The day following Thanksgiving has come to be known as \"Black Friday,\" marking the beginning of the crucial holiday shopping season. Retailers also provide substantial price cuts on gifts, including electronic gadgets and toys. So, get your cart ready to avoid out of stock situations.</p>\n<p>If you want to grab best mobile deals you can also search on social media sites alongside hashtags like #blackfriday, #blackfridaydeals, and #saleonblackfriday. </p>\n\n<h3>Look out for deep discounts from your favorite offline stores</h3>\n<p>Cyber Monday, the first day back in operation for many consumers after the long holiday weekend, is an important day for online retailers because they can offer deep discounts to lure in new customers. So, you can get a good deep discount on your favorite stuff.</p>\n\n<h3>If you are a seller, build anticipation and excitement for sale</h3>\n<p>Building anticipation for your Black Friday or Cyber Monday sales is a different animal than simply announcing them on the day of the sale. This can be done through sneak peeks, email marketing campaigns, social media promotions, and stunning visuals on your site. You need to make a good website that looks great and works seamlessly across all devices. To avoid running out of stock too quickly during the holiday shopping season, businesses should coordinate with their suppliers, manufacturers, or distributors well in advance of the rush in demand.</p>\n\n<h2>Why Celebrate Black Friday?</h2>\n<p>Black Friday is the day after Thanksgiving, but it is not a nationally recognized holiday. Black Friday is celebrated to start their holiday shopping by looking for sales at local businesses. This is a huge day for the retail industry as the holidays often make up 20% or more of annual sales for stores. Small Business Saturday, Cyber Monday, and Giving Tuesday are just a few of the newer \"financial holidays\" that have emerged around this time.</p>\n\n<p>Many businesses, including toy and game shops, depend on a successful Black Friday. On Thanksgiving Day and Friday morning, many stores remain open for business. Furthermore, Black Friday Weekends are often spent shopping, with some customers even waiting in line for the best deals.</p>\n\n<h2>Interesting Facts About Black Friday</h2>\n\n<p>\"Black Friday\" is the Friday after Thanksgiving in the United States. It marks the beginning of the Christmas shopping season in the United States and is recognized as a legal holiday in over 20 states.</p>\n\n<p>Cyber Monday follows Black Friday and is a marketing event for online retailers. This is not the busiest shopping day of the year. The last Saturday before Christmas is!</p>\n\n<p>An article from 2009 in TIME magazine claims that the term \"Black Friday\" was coined by Philadelphia newspapers in the 1960s to describe the massive outpouring of shoppers on the day after Thanksgiving.</p>\n\n<p>In contrast to losses previously recorded in red ink, many retailers have become profitable or \"in the black\" since \"Black Friday\" became widely used in the 1990s.</p>\n\n<p>More than twenty states in the USA observe a holiday the day after Thanksgiving, which is why Black Friday falls on that day.  All U.S. colleges and universities are off for the entire four-day Thanksgiving holiday.</p>\n\n<p>The regular timetable of public transportation services may be disrupted. On Black Friday, some stores will be open later than normal. It\'s also possible for shoppers to encounter traffic delays on the way to their favorite stores.</p>\n','/black-friday/',NULL,NULL,NULL,NULL,NULL,NULL,'Y',14414,NULL,NULL,NULL,NULL),(200,'fun/candle-day','Candle Day','event','2023-12-02',NULL,NULL,NULL,'<img src=\"/i/candle-day.jpg\" alt=\"Candle Day\">\r\n<br><p>Candle Day is celebrated every year on the first Saturday of December. Candle Day is a lovely way to welcome fall and winter for those who find comfort in the soft light and pleasant aroma of candles, especially during the colder months. Candles, moreover, have hidden powers that can enchant our lives. They can be used for diverse purposes, from a spiritual dinner to a cultural celebration to a quiet night. The purpose of Candle Day is to give candle enthusiasts a day to celebrate the many advantages of using candles.</p>\n\n<h2>When is Candle Day?</h2>\n<p>Candle Day will fall on the first Saturday of December every year.</p>\n\n<h2>Candle Day History</h2>\n\n<p>A popular American retailer, Bath & Body Works, is credited with creating Candle Day. The first Bath & Body Works store opened in 1990 in Cambridge, Massachusetts. Limited Brands is still under the original owners, operating other well-known retail chains like Victoria\'s Secret and Abercrombie & Fitch. As the name would imply, the company\'s primary focus is on physical care products. It has expanded rapidly to the point where it operates over 2000 stores globally, with over 1600 of those located in the United States alone.</p>\n\n<p>Bath & Body Works is a well-loved company because it sells an array of high-quality personal care products, including a line for men, in a variety of masculine and feminine fragrances. Sweet pea, Japanese cherry blossom, cucumber melon, and country apple are some of the most well-liked fragrances.</p>\n\n<p>Candles, room sprays, perfumes, and other beauty products abound among these and other popular fragrance lines. Many people look forward to Candle Day because it coincides with some of Bath & Body Works\' biggest sales of the year. The tradition of exchanging gifts during Christmas and other winter holidays inspired the creation of Candle Day in 2013. This is an excellent opportunity to stock up on candles in preparation for the upcoming cold winter months.</p>\n\n\n<h2>How to Celebrate Candle Day?</h2>\n\n<p>On the occasion of Candle Day, be sure to let your day shine. So let\'s look out below for some fascinating ideas to celebrate Candle Day.</p>\n\n<h3>Celebrate with Fragranced candles</h3>\n<p>Easy preparation is all that\'s required for a successful Candle Day celebration. The tempting sales at Bath & Body Works and other retailers give you every reason to stock up. While we all have our go-to fragrances, we should let that allow us to explore other options. The ridiculously low prices mean you can try many different things without breaking the bank. However, on your return home, you should celebrate Candle Day uniquely.</p>\n\n<h3>Have a candle light dinner</h3>\n<p>You could have supper with the family by candlelight or light some candles in your room and take comfort in the peaceful atmosphere created by their calming aroma. Candles, especially those with a cozy and delicious scent, can make any space feel more welcoming and warm. It\'s lovely to spend the day smelling like a delicious dessert, and fragrances like Champagne Toast, Cinnamon Apple, and Strawberry Pound Cake are perfect for setting the mood.</p>\n\n<h3>Visit a physical store to purchase candles</h3>\n<p>Visit a physical store to take advantage of special Candle Day pricing, or shop online and have your purchases shipped. Every year around this time, the most popular 3-wick candles from the brand are put on sale for a fraction of their regular price. Moreover, you can celebrate it by posting on social media with trending hashtags like #CandleDay or #nationalcandleday.</p>\n\n<h2>Why Celebrate Candle Day?</h2>\n\n<p>Candles are wonderful, and we use them often. Their scent captivates us, and their aesthetic qualities help us unwind. Burning scented wax in your home is relaxing and comforting, especially after a long day at the office.</p>\n\n<p>Moreover, home life can get a little weird due to factors such as pets, kids, and general day-to-day activities. Especially if your apartment is on the smaller side and doesn\'t have a lot of windows. Candles are a great way to get rid of the stale odor that can build up in a room over time. The time to do a thorough cleaning would be helpful, though, and that seems impossible to find.</p>\n\n<p>In addition to providing a delightful aroma, a colorful candle displayed on a coffee table or bookcase can serve as a conversation starter and unifying design element. That\'s why on National Candle Day, go ahead and light some candles and celebrate.</p>\n\n<h2>Interesting Facts About Candle Day</h2>\n<ul>\n<li>In 500 B.C., people were already using candles. To survive, people would eat candle wax.</li>\n<li>The European Union sees an increase in candle production. Poles make more candles than anyone else in the European Union.</li>\n<li>Whenever lit, a candle shouldn\'t give off any smoke.</li>\n<li>Candles with strong fragrances can significantly alter your sense of taste.</li>\n<li>Candle wax used to be primarily produced from beef fat or beeswax.</li>\n<li>Some say that putting a candle in the freezer for a few hours before lighting it will burn for much longer. I wish I could say otherwise, but it\'s not true.</li>\n<li>Candles are damaged by being frozen because the wax cracks.</li>\n</ul>\n','/candle-day/',NULL,NULL,NULL,NULL,NULL,NULL,'Y',0,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `net_articles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `net_locale`
--

DROP TABLE IF EXISTS `net_locale`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `net_locale` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `page_id` varchar(120) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `text_id` varchar(120) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '',
  `lang_id` varchar(2) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '',
  `text_content` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `PAGE_TEXT_LANG` (`page_id`,`text_id`,`lang_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4007 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `net_locale`
--

LOCK TABLES `net_locale` WRITE;
/*!40000 ALTER TABLE `net_locale` DISABLE KEYS */;
INSERT INTO `net_locale` VALUES (1,'GENERIC','CALENDAR','ES','Calendario'),(2,'GENERIC','HOLIDAYS','ES','Vacaciones'),(3,'GENERIC','TEMPLATES','ES','Plantillas'),(4,'GENERIC','CALENDAR_TEMPLATES','ES','Plantillas de calendario'),(5,'GENERIC','LANGUAGES','ES','Idiomas'),(6,'GENERIC','POPULAR_PAGES','ES','Páginas populares'),(7,'GENERIC','PRINTABLE_CALENDAR','ES','Calendario imprimible'),(8,'GENERIC','SUBSCRIBE_CALENDAR','ES','Calendario de suscripción'),(9,'GENERIC','HOLIDAY_NEWS','ES','Noticias de vacaciones'),(10,'GENERIC','TERMS','ES','Términos y Condiciones'),(11,'GENERIC','PRIVACY_POLICY','ES','Política de privacidad'),(12,'GENERIC','ABOUT','ES','Acerca de'),(13,'GENERIC','FAQ','ES','Preguntas más frecuentes'),(14,'GENERIC','SPANISH','ES','Español'),(15,'GENERIC','ENGISH','ES','Inglés'),(16,'GENERIC','COUNTRIES','ES','Países'),(17,'GENERIC','HOLIDAYS_OBSERVENCES','ES','Vacaciones y celebraciones'),(18,'GENERIC','QUICK_FACTS','ES','Hechos rápidos'),(19,'GENERIC','POPULAR_HOLIDAYS','ES','Fiestas populares'),(20,'GENERIC','HOLIDAY_NAMES_IN_LANGUAGE','ES','Nombres de vacaciones en otro idioma'),(21,'GENERIC','CALENDAR','EN','Calendar'),(22,'GENERIC','HOLIDAYS','EN','Holidays'),(23,'GENERIC','TEMPLATES','EN','Templates'),(24,'GENERIC','CALENDAR_TEMPLATES','EN','Calendar Templates'),(25,'GENERIC','LANGUAGES','EN','Languages'),(26,'GENERIC','POPULAR_PAGES','EN','Popular Pages'),(27,'GENERIC','PRINTABLE_CALENDAR','EN','Printable Calendar'),(28,'GENERIC','SUBSCRIBE_CALENDAR','EN','Subscribe Calendar'),(29,'GENERIC','HOLIDAY_NEWS','EN','Holiday News'),(30,'GENERIC','TERMS','EN','Terms and Conditions'),(31,'GENERIC','PRIVACY_POLICY','EN','Privacy Policy'),(32,'GENERIC','ABOUT','EN','About'),(33,'GENERIC','FAQ','EN','FAQ'),(34,'GENERIC','SPANISH','EN','Español'),(35,'GENERIC','ENGISH','EN','English'),(36,'GENERIC','COUNTRIES','EN','Countries'),(37,'GENERIC','HOLIDAYS_OBSERVENCES','EN','Holidays and Observances'),(38,'GENERIC','QUICK_FACTS','EN','Quick Schedules'),(39,'GENERIC','POPULAR_HOLIDAYS','EN','Popular Holidays'),(40,'GENERIC','HOLIDAY_NAMES_IN_LANGUAGE','EN','Holiday Names in Other Language'),(41,'GENERIC','HOLIDAY_LIST','ES','Lista de vacaciones'),(42,'GENERIC','HOLIDAY_LIST','EN','Lista de vacaciones'),(50,'MAHAYANA-NEW-YEAR','SE_DESCRIPTION','EN','Mahayana New Year is a Buddhist holiday. The first full moon in January marks the beginning of the new year. When & how people celebrate Mahayana New Year in ~{SE_YEAR}~? '),(51,'MAHAYANA-NEW-YEAR','SE_TITLE','EN','~{SE_YEAR}~ Mahayana New Year ~{SE_BRAND}~'),(52,'CHINESE-NEW-YEAR','SE_DESCRIPTION','EN','Chinese New Year is also known as Lunar New Year. It celebrates the beginning of the new year on the traditional Chinese calendar. '),(53,'CHINESE-NEW-YEAR','SE_TITLE','EN','~{SE_YEAR}~ Chinese New Year - Buddhist Holiday - ~{SE_BRAND}~'),(54,'NIRVANA-DAY','SE_DESCRIPTION','EN','Nirvana day is a Buddhist holiday celebrated in commemoration of Buddha\'s death. The celebrations and observances of the festival are according to the Buddhist Calendar. \r\n'),(55,'NIRVANA-DAY','SE_TITLE','EN','~{SE_YEAR}~ Nirvana day - Buddhist Holiday - ~{SE_BRAND}~'),(56,'MAGHA-PUJA-DAY','SE_DESCRIPTION','EN','Magha Puja Day is also known as Sangha Day or Fourfold Assembly Day. The festival is in honor of the Sangha and an occasion for people to reaffirm their devotion to Buddhism.'),(57,'MAGHA-PUJA-DAY','SE_TITLE','EN','~{SE_YEAR}~  Magha Puja Day - Buddhist Holiday - ~{SE_BRAND}~'),(58,'THERAVADA-NEW-YEAR','SE_DESCRIPTION','EN','Theravada New Year is one of three Buddhist New Year\'s festivals. Theravada Buddhists mainly celebrate this new year.'),(59,'THERAVADA-NEW-YEAR','SE_TITLE','EN','~{SE_YEAR}~ Theravada New Year - Buddhist Holiday - ~{SE_BRAND}~'),(60,'VESAK-DAY','SE_DESCRIPTION','EN','Vesak Day is also known as Buddha Purnima and a major Buddhist festival celebrated by all the Buddhists throughout the world, with great ceremonial rituals.'),(61,'VESAK-DAY','SE_TITLE','EN','~{SE_YEAR}~ Vesak Day - Buddhist Holidays  - ~{SE_BRAND}~'),(62,'ASALA-DHARMA-DAY','SE_DESCRIPTION','EN','Asala-Dharma Day falls on the first full moon of the 8th lunar month and celebrates the day in which Buddha began teaching.  It is a Theravada Buddhist festival. '),(63,'ASALA-DHARMA-DAY','SE_TITLE','EN','~{SE_YEAR}~ Asala  - Dharma Day - Buddhist Festival - ~{SE_BRAND}~'),(64,'OBON','SE_DESCRIPTION','EN','Obon is a Buddhist festival, celebrates to honor the spirits of ancestors. Lanterns are hung in front of houses to guide the ancestors\' spirits. '),(65,'OBON','SE_TITLE','EN','~{SE_YEAR}~ Obon - Buddhist holiday - ~{SE_BRAND}~'),(66,'BODHI-DAY','SE_DESCRIPTION','EN','Bodhi Day is the Buddhist festival that celebrates the day that the  Siddhartha Gautama experienced enlightenment.'),(67,'BODHI-DAY','SE_TITLE','EN','~{SE_YEAR}~ Bodhi Day - Buddhist Holiday - ~{SE_BRAND}~'),(68,'BUDDHIST-HOLIDAYS','SE_DESCRIPTION','EN','Here, a list of ~{SE_YEAR}~ Buddhist holidays or festivals available. You can get lots of information about the Buddhist holidays. '),(69,'BUDDHIST-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Buddhist Holidays -Calendarholidays.net'),(70,'US-HOLIDAYS','SE_DESCRIPTION','EN','Here you can get lots of information about holidays. We provide the list of ~{SE_YEAR}~ public & regional holidays with breif description.'),(71,'US-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ US holidays  - ~{SE_BRAND}~'),(72,'RELIGIOUS-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of ~{SE_YEAR}~ religious holidays and festivals of six religions including Christian, Hindu,Buddhist, Islam, Jewish, and Sikh.'),(73,'RELIGIOUS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~  Religious holidays  - ~{SE_BRAND}~'),(74,'STATE-HOLIDAYS','SE_DESCRIPTION','EN','We are providing state holiday information with a brief description. You can find out the regional holidays of a specific state easily.'),(75,'STATE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ State Public holidays  - ~{SE_BRAND}~'),(76,'BANK-HOLIDAYS','SE_DESCRIPTION','EN','Here you can find the ~{SE_YEAR}~ Bank holidays or day off for the particular region or state.'),(77,'BANK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Banks Federal holiday - ~{SE_BRAND}~'),(78,'MARKET-HOLIDAYS','SE_DESCRIPTION','EN','Here you can find ~{SE_YEAR}~ Market holidays or trading day off for the stock exchanges of all the regions of the US.'),(79,'MARKET-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Market Holidays  - ~{SE_BRAND}~'),(82,'NEW-YEARS-DAY','SE_DESCRIPTION','EN','New Year\'s Day celebrates on the first of January in the USA, follows the Gregorian calendar. Its a public holiday in many countries.'),(83,'NEW-YEARS-DAY','SE_TITLE','EN','~{SE_YEAR}~ New Years Day - ~{SE_BRAND}~'),(84,'MARTIN-LUTHER-KING-DAY','SE_DESCRIPTION','EN','Martin Luther King Day observed on the 3rd Monday of January every year. It is celebrated on the birthday of the skilled leader and a great man, Dr. Martin Luther King, Jr.'),(85,'MARTIN-LUTHER-KING-DAY','SE_TITLE','EN','~{SE_YEAR}~ Martin Luter King Day - Public Holiday - ~{SE_BRAND}~'),(86,'VALENTINES-DAY','SE_DESCRIPTION','EN','Valentine\'s Day celebrates on February 14 every year in the USA. Pope Gelasius announced February 14 as Valentine\'s Day at the end of the 5th century. '),(87,'VALENTINES-DAY','SE_TITLE','EN','~{SE_YEAR}~ Valentines Day - ~{SE_BRAND}~'),(88,'PRESIDENTS-DAY','SE_DESCRIPTION','EN','President\'s Day marks on the third Monday of February each year in the United States to honor George Washington, Abraham Lincoln, and all of the nation\'s presidents.'),(89,'PRESIDENTS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Presidents Day - ~{SE_BRAND}~'),(90,'GOOD-FRIDAY','SE_DESCRIPTION','EN','Good Friday is a time of fasting and penance, commemorating the anniversary of Jesus Christ\'s death on the Cross. It falls 2 Days before Easter Day.\n'),(91,'GOOD-FRIDAY','SE_TITLE','EN','~{SE_YEAR}~ Good Friday-National Holiday - ~{SE_BRAND}~'),(92,'EASTER','SE_DESCRIPTION','EN','Easter celebrates by Christians to commemorate the resurrection of Jesus Christ and considered as a rebirth of Christianity. '),(93,'EASTER','SE_TITLE','EN','~{SE_YEAR}~ Easter - ~{SE_BRAND}~'),(94,'MOTHERS-DAY','SE_DESCRIPTION','EN','Mother\'s Day commemorated every year in the USA in honor of mothers, motherhood, and maternity bonds, as well as the positive contributions they have made to society. '),(95,'MOTHERS-DAY','SE_TITLE','EN','~{SE_YEAR}~  Mothers Day - ~{SE_BRAND}~'),(96,'NATIONAL-MEMORIAL-DAY','SE_DESCRIPTION','EN','National Memorial Day is marked on the last Monday of May in the United States. On this day, people pay tribute to all the soldiers who died while in the military service.'),(97,'NATIONAL-MEMORIAL-DAY','SE_TITLE','EN','~{SE_YEAR}~ National Memorial Day - ~{SE_BRAND}~'),(98,'FATHERS-DAY','SE_DESCRIPTION','EN',' Father\'s day celebrates to honors the contribution of fathers, and fathers figure to make the children\'s lives. It falls on the third Sunday of June.'),(99,'FATHERS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Fathers Day - ~{SE_BRAND}~'),(100,'INDEPENDENCE-DAY','SE_DESCRIPTION','EN','Independence Day honors the birthday of the US. On ~{SE_DATE}~, the United States claimed its independence from England by signing the Declaration of Independence and Democracy.\n'),(101,'INDEPENDENCE-DAY','SE_TITLE','EN','~{SE_YEAR}~ Independence Day - ~{SE_BRAND}~'),(102,'LABOR-DAY','SE_DESCRIPTION','EN','Labor Day celebrates on the first Monday of September. It honors the workers and their various labor unions that contribute to the growing American economy. '),(103,'LABOR-DAY','SE_TITLE','EN','~{SE_YEAR}~ Labor Day - ~{SE_BRAND}~'),(104,'COLUMBUS-DAY','SE_DESCRIPTION','EN','Columbus Day observed in most states of the United States, a federal holiday celebrating the arrival of Christopher Columbus in the country who discovered America in October 1942. '),(105,'COLUMBUS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Columbus Day - ~{SE_BRAND}~'),(106,'ALL-HALLOWS-EVE','SE_DESCRIPTION','EN','Halloween is a holiday observed each year on October 31, which is the evening before the Christian feast of All Saint\'s Day. It is a trick-or-treat festival.'),(107,'ALL-HALLOWS-EVE','SE_TITLE','EN','~{SE_YEAR}~ Halloween - ~{SE_BRAND}~'),(108,'VETERANS-DAY','SE_DESCRIPTION','EN','Veterans Day is celebrated to honor and thank all military personnel who served the United States in all wars, mainly surviving veterans.'),(109,'VETERANS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Veterans Day - ~{SE_BRAND}~'),(110,'THANKSGIVING-DAY','SE_DESCRIPTION','EN','Thanksgiving Day owes its origin to the harvest festival. Usually, Americans give thanks to God for their autumn harvest and every other success they have obtained in the year.'),(111,'THANKSGIVING-DAY','SE_TITLE','EN',' Thanksgiving Day ~{SE_YEAR}~ - ~{SE_BRAND}~'),(112,'CHRISTMAS','SE_DESCRIPTION','EN','Christmas is a Christian holiday admiring the birth of Jesus. Christians believe that Jesus is the son of God, the Messiah sent from Heaven to save the world. '),(113,'CHRISTMAS','SE_TITLE','EN','~{SE_YEAR}~ Christmas Holiday - ~{SE_BRAND}~'),(114,'CHRISTIAN-HOLIDAYS','SE_DESCRIPTION','EN','List of the ~{SE_YEAR}~ Christian holidays or festivals is mention here. All the dates are provided for each of the significant holidays which are celebrated by Christians.'),(115,'CHRISTIAN-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Christian Holidays  - ~{SE_BRAND}~'),(116,'EPIPHANY','SE_DESCRIPTION','EN','Epiphany Day is a Christian celebration that marks the day when the Three Kings visited Jesus by following a star to reach him. It marks 12 days after Christmas on the 6th of January.'),(117,'EPIPHANY','SE_TITLE','EN','~{SE_YEAR}~ Epiphany - A Christian Festivals  - ~{SE_BRAND}~'),(118,'BAPTISM-OF-THE-JESUS','SE_DESCRIPTION','EN','Baptism of Christ is a Christian Festival celebrated every year in the month of January'),(119,'BAPTISM-OF-THE-JESUS','SE_TITLE','EN','~{SE_YEAR}~ Baptism of Jesus  - A Christian Festivals  - ~{SE_BRAND}~'),(120,'CANDLEMAS','SE_DESCRIPTION','EN','Candlemas celebrates three moments according to Christian belief: the child Jesus\'s presentation, the first entry of Jesus into the temple, and it symbolizes the purification of the Virgin Mary.'),(121,'CANDLEMAS','SE_TITLE','EN','~{SE_YEAR}~ Candlemas  - A Christian Festivals  - ~{SE_BRAND}~'),(124,'ASH-WEDNESDAY','SE_DESCRIPTION','EN','Ash Wednesday is a sacred day of fasting and prayer. It is headed by Shrove Tuesday and falls on the Lent\'s first day, the six weeks of repentance before Easter. '),(125,'ASH-WEDNESDAY','SE_TITLE','EN','~{SE_YEAR}~ Ash Wednesday  - A Christian Festivals  - ~{SE_BRAND}~'),(126,'ST-PATRICKS-DAY','SE_DESCRIPTION','EN','St. Patrick\'s day celebrates to honors the arrival of St. Patrick and Christianity in Ireland. It also celebrates the culture and customs of the Irish community.'),(127,'ST-PATRICKS-DAY','SE_TITLE','EN','~{SE_YEAR}~ St Patricks Day  - A Christian Festivals  - ~{SE_BRAND}~'),(128,'ST-JOSEPHS-DAY','SE_DESCRIPTION','EN','St. Joseph\'s Day falls on 19 March each year. Saint Joseph is believed to have been the husband of the Blessed Virgin Mary and the legal father of Jesus Christ.'),(129,'ST-JOSEPHS-DAY','SE_TITLE','EN','~{SE_YEAR}~ St Josephs Day - A Christian Festivals  - ~{SE_BRAND}~'),(130,'EASTER-MONDAY','SE_DESCRIPTION','EN','Easter Monday is celebrated after Easter Sunday, which the first Sunday after the Paschal full moon. It marks the death and resurrection of Christ. '),(131,'EASTER-MONDAY','SE_TITLE','EN','~{SE_YEAR}~ Easter Monday  - A Christian Festivals  - ~{SE_BRAND}~'),(132,'ST-GEORGES-DAY','SE_DESCRIPTION','EN','St. George\'s Day in England commemorates St. George, the patron saint of England. It normally marked on his death anniversary which falls on 23 April .'),(133,'ST-GEORGES-DAY','SE_TITLE','EN','~{SE_YEAR}~ St Georges  - A Christian Festivals  - ~{SE_BRAND}~'),(134,'ASCENSION-DAY','SE_DESCRIPTION','EN','Ascension Day is observed on the 40th day of Easter. It is a Christian holiday that commemorates the arrival of Jesus Christ to heaven, according to Christianity.'),(135,'ASCENSION-DAY','SE_TITLE','EN','~{SE_YEAR}~ Ascension Day - A Christian Festivals  - ~{SE_BRAND}~'),(136,'PENTECOST','SE_DESCRIPTION','EN','Pentecost is a Christian festival that commemorates the gift of the Holy Spirit. The day used to recognize as Whitsun, a Christian holiday. '),(137,'PENTECOST','SE_TITLE','EN','~{SE_YEAR}~  Pentecost  -  A Christian Festivals  - ~{SE_BRAND}~'),(138,'TRINITY-SUNDAY','SE_DESCRIPTION','EN','Trinity Sunday is the first Sunday to honor the Holy Trinity after Pentecost - the Father, Son, and Holy Spirit describing that there are three elements of one God.'),(139,'TRINITY-SUNDAY','SE_TITLE','EN','~{SE_YEAR}~ Trinty Sunday - A Christian Festivals  - ~{SE_BRAND}~'),(140,'CORPUS-CHRISTI','SE_DESCRIPTION','EN','Corpus Christi is a festival where Christians honor the Holy Body of Christ. A Latin phrase of Corpus Christi refers to the body and blood of Christ.'),(141,'CORPUS-CHRISTI','SE_TITLE','EN','~{SE_YEAR}~ Corpus Christ - A Christian Festivals  - ~{SE_BRAND}~'),(142,'SAINT-VLADIMIR','SE_DESCRIPTION','EN','Saint Vladimir is a Christian festival that celebrates on 15 June every year.'),(143,'SAINT-VLADIMIR','SE_TITLE','EN','~{SE_YEAR}~ Saint Vladimir - A Christian Festivals  - ~{SE_BRAND}~'),(144,'SAINTS-PETER-AND-PAUL','SE_DESCRIPTION','EN','St. Peter and St. Paul are two well-known saints, and they are most responsible for spreading the Christian message in the days of the early church.\n'),(145,'SAINTS-PETER-AND-PAUL','SE_TITLE','EN','~{SE_YEAR}~ Saint Peter and Paul -  A Christian Festivals  - ~{SE_BRAND}~'),(146,'ST-JAMES-THE-GREAT-DAY','SE_DESCRIPTION','EN','James the Great is also known as James or as Saint James the Greater. James is described as one of the first disciples to join Jesus.'),(147,'ST-JAMES-THE-GREAT-DAY','SE_TITLE','EN','~{SE_YEAR}~ St James the great day -  A Christian Festivals  - ~{SE_BRAND}~'),(148,'LAMMAS','SE_DESCRIPTION','EN','Lamma is a celebration to mark the annual wheat harvest. It is the first harvest festival of the year. It was customary to bring loaf made from the new crop to the church.'),(149,'LAMMAS','SE_TITLE','EN','~{SE_YEAR}~ Lammas  -  A Christian Festivals  - ~{SE_BRAND}~'),(150,'THE-ASSUMPTION-OF-MARY','SE_DESCRIPTION','EN','Assumption of Mary is a Christian festival that celebrates  every year on 15th August. Christians belief that God accepted the Virgin Mary into heaven after her death.'),(151,'THE-ASSUMPTION-OF-MARY','SE_TITLE','EN','~{SE_YEAR}~ The assumption of marry -  A Christian Festivals  - ~{SE_BRAND}~'),(152,'HOLY-CROSS-DAY','SE_DESCRIPTION','EN','Holy Cross Day is celebrated every year on 14 September. It is a day that honors and commemorates Jesus Christ\'s sacrifice for our salvation.'),(153,'HOLY-CROSS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Holy Cross Day -  A Christian Festivals  - ~{SE_BRAND}~'),(154,'MICHAEL-AND-ALL-ANGELS','SE_DESCRIPTION','EN','Michael and All Angels is celebrated in the Western churches on September 29 every year.'),(155,'MICHAEL-AND-ALL-ANGELS','SE_TITLE','EN','~{SE_YEAR}~ Michael and all angles  -  A Christian Festivals  - ~{SE_BRAND}~'),(156,'ALL-SAINTS-DAY','SE_DESCRIPTION','EN','All Saints\' Day is also known as the Feast of All Saints, Hallowmas, or Solemnity of All Saints. It is a Christian festival celebrated in honour of all the saints.'),(157,'ALL-SAINTS-DAY','SE_TITLE','EN','~{SE_YEAR}~ All Saints Day -  A Christian Festivals  - ~{SE_BRAND}~'),(158,'ALL-SOULS-DAY','SE_DESCRIPTION','EN','All Souls\' Day was initially founded in the monastery in Cluny in 993 CE and quickly expanded everywhere in the Christian world. All Souls\' Day celebrates and honors the dead.'),(159,'ALL-SOULS-DAY','SE_TITLE','EN','~{SE_YEAR}~ All Soul Day -  A Christian Festivals  - ~{SE_BRAND}~'),(160,'CHRIST-THE-KING','SE_DESCRIPTION','EN','Christ the King is the title of Christ referring to the idea of the kingdom of God, in which Christ is seated at the right hand of God.'),(161,'CHRIST-THE-KING','SE_TITLE','EN','~{SE_YEAR}~ Christ the King -  A Christian Festivals  - ~{SE_BRAND}~'),(162,'ADVENT-FIRST-SUNDAY','SE_DESCRIPTION','EN','Advent -First Sunday is the first day of the liturgical year and the start of the season of Advent, which marks the beginning of the Christian year.\n'),(163,'ADVENT-FIRST-SUNDAY','SE_TITLE','EN','~{SE_YEAR}~ Advent first Sunday -  A Christian Festivals  - ~{SE_BRAND}~'),(164,'ST-ANDREWS-DAY','SE_DESCRIPTION','EN','St. Andrew\'s Day is observed on 30 November every year.  It is the feast day of Andrew the Apostle.  Saint Andrew was one of the twelve disciples of Jesus Christ.'),(165,'ST-ANDREWS-DAY','SE_TITLE','EN','~{SE_YEAR}~ St Andrews Day -  A Christian Festivals  - ~{SE_BRAND}~'),(166,'HOLY-INNOCENTS','SE_DESCRIPTION','EN','Holy Innocents Day annually observed on December 28. The purpose of this festival is to commemorate the massacre of the innocent male children by King Herod in Bethlehem.'),(167,'HOLY-INNOCENTS','SE_TITLE','EN','~{SE_YEAR}~ Holy Innocents  -  A Christian Festivals  - ~{SE_BRAND}~'),(168,'WATCH-NIGHT','SE_DESCRIPTION','EN','Watch Night is also known as Freedom Eve, is a Christian religious service held on New Year\'s Eve. It provides the opportunity for Christians to review the year that has passed and made a confession.'),(169,'WATCH-NIGHT','SE_TITLE','EN','~{SE_YEAR}~ Watch Night -  A Christian Festivals  - ~{SE_BRAND}~'),(170,'HINDU-HOLIDAYS','SE_DESCRIPTION','EN','Here you can get lots of information about holidays. We provide the list of ~{SE_YEAR}~ Hindu holidays with breif description.'),(171,'HINDU-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Hindu Holiday - ~{SE_BRAND}~'),(172,'PONGAL','SE_DESCRIPTION','EN','Pongal is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Pongal in ~{SE_YEAR}~.'),(173,'PONGAL','SE_TITLE','EN','~{SE_YEAR}~ Pongal  - Hindu Festival - ~{SE_BRAND}~'),(174,'VASANT-PANCHAMI','SE_DESCRIPTION','EN','Vasant Panchami is celebrated on ~{SE_DATE}~.  Find information, history, facts, and how to celebrate Vasant Panchami in ~{SE_YEAR}~.'),(175,'VASANT-PANCHAMI','SE_TITLE','EN','~{SE_YEAR}~ Vasant Panchami - Hindu Festival - ~{SE_BRAND}~'),(176,'THAIPUSAM','SE_DESCRIPTION','EN','Thaipusam is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Thaipusam in ~{SE_YEAR}~.'),(177,'THAIPUSAM','SE_TITLE','EN','~{SE_YEAR}~ Thaipusam - Hindu Festival - ~{SE_BRAND}~'),(178,'MAHA-SHIVRATRI','SE_DESCRIPTION','EN','Maha Shivaratri is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Maha Shivratri in ~{SE_YEAR}~.'),(179,'MAHA-SHIVRATRI','SE_TITLE','EN','~{SE_YEAR}~ Maha Shivaratri - Hindu Festival - ~{SE_BRAND}~'),(180,'HOLI','SE_DESCRIPTION','EN','Holi is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Holi in ~{SE_YEAR}~.'),(181,'HOLI','SE_TITLE','EN','~{SE_YEAR}~ Holi - Hindu Festival  - ~{SE_BRAND}~'),(182,'UGADI-TELUGU-NEW-YEAR','SE_DESCRIPTION','EN','Ugadi Telugu New Year is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Ugadi Telugu New Year in ~{SE_YEAR}~.'),(183,'UGADI-TELUGU-NEW-YEAR','SE_TITLE','EN','~{SE_YEAR}~ Ugadi/ Telgu New Year  - Hindu Festival - ~{SE_BRAND}~'),(184,'HINDI-NEW-YEAR','SE_DESCRIPTION','EN','Hindi New Year is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Hindi New Year in ~{SE_YEAR}~.'),(185,'HINDI-NEW-YEAR','SE_TITLE','EN','~{SE_YEAR}~ Hindi New Year - Hindu Festival - ~{SE_BRAND}~'),(186,'RAMANAVAMI','SE_DESCRIPTION','EN','Ramanavami is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Ramanavami in ~{SE_YEAR}~.'),(187,'RAMANAVAMI','SE_TITLE','EN','~{SE_YEAR}~ Ramanavami - Hindu Festival - ~{SE_BRAND}~'),(188,'HANUMAN-JAYANTI','SE_DESCRIPTION','EN','Hanuman Jayanti is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Hanuman Jayanti in ~{SE_YEAR}~.'),(189,'HANUMAN-JAYANTI','SE_TITLE','EN','~{SE_YEAR}~ Hanuman Jayanti - Hindu Festival - ~{SE_BRAND}~'),(190,'VISHU','SE_DESCRIPTION','EN','Vishu is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Vishu in ~{SE_YEAR}~.'),(191,'VISHU','SE_TITLE','EN','~{SE_YEAR}~ Vishu - Hindu Festival - ~{SE_BRAND}~'),(192,'BIHU-BENGALI-NEW-YEAR','SE_DESCRIPTION','EN','Bihu Bengali New Year is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Bihu Bengali New Year in ~{SE_YEAR}~.'),(193,'BIHU-BENGALI-NEW-YEAR','SE_TITLE','EN','~{SE_YEAR}~ Bihu/ Bengali New Year - Hindu Festival - ~{SE_BRAND}~'),(194,'TAMIL-NEW-YEAR','SE_DESCRIPTION','EN','Tamil New Year is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Tamil New Year in ~{SE_YEAR}~.'),(195,'TAMIL-NEW-YEAR','SE_TITLE','EN','~{SE_YEAR}~ Tamil New Year - Hindu Festival - ~{SE_BRAND}~'),(196,'AKSHAYA-TRITIYA','SE_DESCRIPTION','EN','Akshaya Tritiya is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Akshaya Tritiya in ~{SE_YEAR}~.'),(197,'AKSHAYA-TRITIYA','SE_TITLE','EN','~{SE_YEAR}~ Akshaya Tritiya - Hindu Festival - ~{SE_BRAND}~'),(198,'SAVITRI-POOJA','SE_DESCRIPTION','EN','Savitri Pooja is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Savitri Pooja in ~{SE_YEAR}~.'),(199,'SAVITRI-POOJA','SE_TITLE','EN','~{SE_YEAR}~ Savitri Pooja - Hindu Festival - ~{SE_BRAND}~'),(200,'RATH-YATRA','SE_DESCRIPTION','EN','Rath Yatra is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Rath Yatra in ~{SE_YEAR}~.'),(201,'RATH-YATRA','SE_TITLE','EN','~Year~ Rath Yatra - Hindu Festival - ~{SE_BRAND}~'),(202,'GURU-PURNIMA','SE_DESCRIPTION','EN','Guru Purnima is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Guru Purnima in ~{SE_YEAR}~.'),(203,'GURU-PURNIMA','SE_TITLE','EN','~{SE_YEAR}~ Guru Purnima - Hindu Festival - ~{SE_BRAND}~'),(204,'NAG-PANCHAMI','SE_DESCRIPTION','EN','Nag Panchami is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Nag Panchami in ~{SE_YEAR}~.'),(205,'NAG-PANCHAMI','SE_TITLE','EN','~{SE_YEAR}~ Nag Panchmi - Hindu Holiday - ~{SE_BRAND}~'),(206,'VARALAKSHMI-VRAT','SE_DESCRIPTION','EN','Varalakshmi Vrat is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Varalakshmi Vrat in ~{SE_YEAR}~.'),(207,'VARALAKSHMI-VRAT','SE_TITLE','EN','~{SE_YEAR}~ Varalakshmi Vrat - Hindu Holiday - ~{SE_BRAND}~'),(208,'RAKSHA-BANDHAN','SE_DESCRIPTION','EN','Raksha Bandhan is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Raksha Bandhan in ~{SE_YEAR}~.'),(209,'RAKSHA-BANDHAN','SE_TITLE','EN','~{SE_YEAR}~ Raksha Bandhan - Hindu Holiday - ~{SE_BRAND}~'),(210,'JANMASHTAMI','SE_DESCRIPTION','EN','Janmashtami is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Janmashtami in ~{SE_YEAR}~.'),(211,'JANMASHTAMI','SE_TITLE','EN','~{SE_YEAR}~ Janmashtami - Hindu Holiday - ~{SE_BRAND}~'),(212,'GANESH-CHATURTHI','SE_DESCRIPTION','EN','Ganesh Chaturthi is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Ganesh Chaturthi in ~{SE_YEAR}~.'),(213,'GANESH-CHATURTHI','SE_TITLE','EN','~{SE_YEAR}~ Ganesh Chaturthi - Hindu Holiday - ~{SE_BRAND}~'),(214,'ONAM','SE_DESCRIPTION','EN','Onam is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Onam in ~{SE_YEAR}~.'),(215,'ONAM','SE_TITLE','EN','~{SE_YEAR}~ Onam - Hindu Holiday - ~{SE_BRAND}~'),(216,'VISHWAKARMA-PUJA','SE_DESCRIPTION','EN','Vishwakarma Puja is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Vishwakarma Puja in ~{SE_YEAR}~.'),(217,'VISHWAKARMA-PUJA','SE_TITLE','EN','~{SE_YEAR}~ Vishwakarama Puja - Hindu Holiday - ~{SE_BRAND}~'),(218,'MAHALAYA-AMAVASYA','SE_DESCRIPTION','EN','Mahalaya Amavasya is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Mahalaya Amavasya in ~{SE_YEAR}~.'),(219,'MAHALAYA-AMAVASYA','SE_TITLE','EN','~{SE_YEAR}~ Mahalaya Amavasya - Hindu Holiday - ~{SE_BRAND}~'),(220,'NAVARATRI','SE_DESCRIPTION','EN','Navaratri is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Navaratri in ~{SE_YEAR}~.'),(221,'NAVARATRI','SE_TITLE','EN','~{SE_YEAR}~ Navaratri - Hindu Holiday - ~{SE_BRAND}~'),(222,'DUSSEHRA','SE_DESCRIPTION','EN','Dussehra is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Dussehra in ~{SE_YEAR}~.'),(223,'DUSSEHRA','SE_TITLE','EN','~{SE_YEAR}~ Dussehra - Hindu Holiday - ~{SE_BRAND}~'),(224,'SHARAD-PURNIMA','SE_DESCRIPTION','EN','Sharad Purnima is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Sharad Purnima in ~{SE_YEAR}~.'),(225,'SHARAD-PURNIMA','SE_TITLE','EN','~{SE_YEAR}~ Sharad Purnima - Hindu Holiday - ~{SE_BRAND}~'),(226,'KARVA-CHAUTH','SE_DESCRIPTION','EN','Karva Chauth is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Karva Chauth in ~{SE_YEAR}~.'),(227,'KARVA-CHAUTH','SE_TITLE','EN','~{SE_YEAR}~ Karva Chauth - Hindu Holiday - ~{SE_BRAND}~'),(228,'DHANTERAS','SE_DESCRIPTION','EN','Dhanteras is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Dhanteras in ~{SE_YEAR}~.'),(229,'DHANTERAS','SE_TITLE','EN','~{SE_YEAR}~ Dhanteras  - Hindu Holiday - ~{SE_BRAND}~'),(230,'DIWALI','SE_DESCRIPTION','EN','Diwali is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Diwali in ~{SE_YEAR}~.'),(231,'DIWALI','SE_TITLE','EN','~{SE_YEAR}~ Diwali - Hindu Holiday - ~{SE_BRAND}~'),(232,'BHAI-DOOJ','SE_DESCRIPTION','EN','Bhai Dooj is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Bhai Dooj in ~{SE_YEAR}~.'),(233,'BHAI-DOOJ','SE_TITLE','EN','~{SE_YEAR}~ Bhai Dooj - Hindu Holiday - ~{SE_BRAND}~'),(234,'CHHATH-PUJA','SE_DESCRIPTION','EN','Chhath Puja is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Chhath Puja in ~{SE_YEAR}~.'),(235,'CHHATH-PUJA','SE_TITLE','EN','~{SE_YEAR}~ Chhath Puja - Hindu Holiday - ~{SE_BRAND}~'),(236,'KARTIK-POORNIMA','SE_DESCRIPTION','EN','Kartik Poornima is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Kartik Poornima in ~{SE_YEAR}~.'),(237,'KARTIK-POORNIMA','SE_TITLE','EN','~{SE_YEAR}~ Kartik Poornima - Hindu Holiday - ~{SE_BRAND}~'),(238,'DHANU-SANKRANTI','SE_DESCRIPTION','EN','Dhanu Sankranti is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Dhanu Sankranti in ~{SE_YEAR}~.'),(239,'DHANU-SANKRANTI/','SE_TITLE','EN','~{SE_YEAR}~ Dhanu Sankranti - Hindu Holiday - ~{SE_BRAND}~'),(240,'GEETA-JAYANTI','SE_DESCRIPTION','EN','Geeta Jayanti is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Geeta Jayanti in ~{SE_YEAR}~.'),(241,'GEETA-JAYANTI','SE_TITLE','EN','~{SE_YEAR}~ Geeta Jayanti - Hindu Holiday - ~{SE_BRAND}~'),(242,'ISLAM-HOLIDAYS','SE_DESCRIPTION','EN','Here you can get lots of information about holidays. We provide the list of ~{SE_YEAR}~ Islam holidays with breif description.'),(243,'ISLAM-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Islam Holidays  - ~{SE_BRAND}~'),(244,'LAILAT-AL-MIRAJ','SE_DESCRIPTION','EN','Lailat al Miraj reminded the Prophet Muhammad\'s exile in heaven. Muslims assume that on this night, an angel came to the Prophet, washed his abdomen with the water of Zamzam water, and filled his heart with wisdom and faith.'),(245,'LAILAT-AL-MIRAJ','SE_TITLE','EN','~{SE_YEAR}~ Lailat al Miraj - Islam Holidays  - ~{SE_BRAND}~'),(246,'LAILAT-AL-BARAAH','SE_DESCRIPTION','EN','The Lailat-ul Barat is an essential night for the Muslims and also popularly known as Shab-e-Barat. It is regarded as one of the most sacred nights on the Islamic calendar.'),(247,'LAILAT-AL-BARAAH','SE_TITLE','EN','~{SE_YEAR}~ Lailat al Baraah - Islam Holidays  - ~{SE_BRAND}~'),(248,'RAMADAN-START','SE_DESCRIPTION','EN','Ramadan is the ninth month of the Islamic calendar. The word \"Ramadan\" originated from an Arabic name, which is identified by intense heat, scorched grounds, and a shortage of food and drink. '),(249,'RAMADAN-START','SE_TITLE','EN','~{SE_YEAR}~ Ramadan - Islam Holidays  - ~{SE_BRAND}~'),(250,'LAYLAT-AL-KADR','SE_DESCRIPTION','EN','Lailat al Qadr marks the time when the first verses of the Koran were revealed to the Islamic Prophet Muhammad. '),(251,'LAYLAT-AL-KADR','SE_TITLE','EN','~{SE_YEAR}~ Layal al Kadr - Islam Holidays  - ~{SE_BRAND}~'),(252,'RAMADAN-END','SE_DESCRIPTION','EN','Eid al-Fitr also recognized as the festival of fast-breaking or Lesser feast. It signifies the end of Ramadan and the beginning of a three-day feast in some countries.'),(253,'RAMADAN-END','SE_TITLE','EN','~{SE_YEAR}~ Eid al Fitr - Islam Holidays  - ~{SE_BRAND}~'),(254,'HARI-RAYA-HAJI','SE_DESCRIPTION','EN','Eid al-Adha, also recognized as the Festival of Sacrifice or Feast of Sacrifice, celebrates accomplishment. Eid al-Adha also reminds of a time when Ibrahim was willing to sacrifice his son for God.'),(255,'HARI-RAYA-HAJI','SE_TITLE','EN','~{SE_YEAR}~ Hari Raya Hanji - Islam Holidays  - ~{SE_BRAND}~'),(256,'WAQF-AL-ARAFA-HAJJ','SE_DESCRIPTION','EN',' Waqf al Arafa is an Islamic holiday that falls on the 9th day of Dhu al-Hijjah of the Islamic calendar. It is the second day of the Haj pilgrimage after eid al Adha.'),(257,'WAQF-AL-ARAFA-HAJJ','SE_TITLE','EN','~{SE_YEAR}~ Waqf al Arafa Hajj - Islam Holidays  - ~{SE_BRAND}~'),(258,'MUHARRAM','SE_DESCRIPTION','EN','Muharram is the first Islamic month and is a time of mourning and peace. It is one of the four holy months of the year, during which warfare is forbidden.'),(259,'MUHARRAM','SE_TITLE','EN','~{SE_YEAR}~ Muharram  - ~{SE_BRAND}~'),(260,'MILAD-UN-NABI','SE_DESCRIPTION','EN','Milad un-Nabi is a festival that commemorates the Prophet Muhammad\'s birthday and celebrates his teachings. It is also known as Mawlid an-Nabawī, Havliye, Donba, and Gani.'),(261,'MILAD-UN-NABI','SE_TITLE','EN','~{SE_YEAR}~ Milad un Nabi - Islam Holidays  - ~{SE_BRAND}~'),(262,'JEWISH-HOLIDAYS','SE_DESCRIPTION','EN','Here you can get lots of information about holidays. We provide the list of ~{SE_YEAR}~ Jewish holidays with breif description.'),(263,'JEWISH-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Jewish Holidays  - ~{SE_BRAND}~'),(264,'TU-BISHVAT','SE_DESCRIPTION','EN','Tu Bishvat is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Tu Bishvat in ~{SE_YEAR}~.'),(265,'TU-BISHVAT','SE_TITLE','EN','~{SE_YEAR}~ Tu Bishvat - Jewish Holidays  - ~{SE_BRAND}~'),(266,'PURIM','SE_DESCRIPTION','EN','Purim is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Purim in ~{SE_YEAR}~.'),(267,'PURIM','SE_TITLE','EN','~{SE_YEAR}~ Purim - Jewish Holidays  - ~{SE_BRAND}~'),(268,'PASSOVER','SE_DESCRIPTION','EN','Passover is an important Jewish holiday and one of the most widely celebrated Jewish holidays, and it usually lasts for eight days in the United States. '),(269,'PASSOVER','SE_TITLE','EN','~{SE_YEAR}~ Passover - Jewish Holidays  - ~{SE_BRAND}~'),(270,'PASSOVER-FINAL-DAY','SE_DESCRIPTION','EN','Many Jews in the United States mark the last day of Passover as the end of a Jewish holiday that remembers the rescue of Jewish people from slavery in Egypt. '),(271,'PASSOVER-FINAL-DAY','SE_TITLE','EN','~{SE_YEAR}~ Passover Final Day - Jewish Holidays  - ~{SE_BRAND}~'),(272,'YOM-HASHOAH','SE_DESCRIPTION','EN','Yom HaShoah is also recognized as Holocaust Memorial Day and a remembrance day to honor the six million Jewish people who died during the Holocaust. '),(273,'YOM-HASHOAH','SE_TITLE','EN','~{SE_YEAR}~ Yom Hoshoah - Jewish Holidays  - ~{SE_BRAND}~'),(274,'YOM-HAZIKARON','SE_DESCRIPTION','EN','Yom Hazikaron is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Yom Hazikaron in ~{SE_YEAR}~.'),(275,'YOM-HAZIKARON','SE_TITLE','EN','~{SE_YEAR}~ Yom Hazikaron - Jewish Holidays  - ~{SE_BRAND}~'),(276,'YOM-HAATZMAUT','SE_DESCRIPTION','EN','Many American Jewish remembers Israel\'s Independence Day, also known as Yom Ha\'Atzmaut (or Yom HaAtzmaut). Israel declared independence on May 14th, 1948. '),(277,'YOM-HAATZMAUT','SE_TITLE','EN','~{SE_YEAR}~ Yom Haatzmaut - Jewish Holidays  - ~{SE_BRAND}~'),(278,'PASSOVER-SECOND-DAY','SE_DESCRIPTION','EN','Passover Second Day is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Passover Second Day in ~{SE_YEAR}~.'),(279,'PASSOVER-SECOND-DAY','SE_TITLE','EN','~{SE_YEAR}~ Passover Second Day - Jewish Holidays  - ~{SE_BRAND}~'),(280,'LAG-BOMER','SE_DESCRIPTION','EN','According to the Jewish calendar, many Jews celebrate Lag B\'Omer on the 18th day of Iyar month and also known as Lag BaOmer.'),(281,'LAG-BOMER','SE_TITLE','EN','~{SE_YEAR}~ Lag Bomer-Jewish Holidays  - ~{SE_BRAND}~'),(282,'YOM-YERUSHALAYIM','SE_DESCRIPTION','EN','Yom Yerushalayim is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Yom Yerushalayim in ~{SE_YEAR}~.'),(283,'YOM-YERUSHALAYIM','SE_TITLE','EN','~{SE_YEAR}~ Yom Yerushalayim - Jewish Holidays  - ~{SE_BRAND}~'),(284,'SHAVUOT','SE_DESCRIPTION','EN','Shavuot is the second main Jewish festival that concentrates on historical and agricultural importance. Shavuot follows Passover by 50 days.'),(285,'SHAVUOT','SE_TITLE','EN','~{SE_YEAR}~ Shavuot - Jewish Holidays  - ~{SE_BRAND}~'),(286,'TISHA-BAV','SE_DESCRIPTION','EN','Tisha Bav is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Tisha Bav in ~{SE_YEAR}~.'),(287,'TISHA-BAV','SE_TITLE','EN','~{SE_YEAR}~ Tisha Bav - Jewish Holidays  - ~{SE_BRAND}~'),(288,'ROSH-HASHANAH','SE_DESCRIPTION','EN','Many Jewish Americans commemorate Rosh Hashanah, which is recognized as the Jewish New Year. It originates on the first day of Tishrei, which is the seventh month.'),(289,'ROSH-HASHANAH','SE_TITLE','EN','~{SE_YEAR}~ Rosh Hashanah - Jewish Holidays  - ~{SE_BRAND}~'),(290,'FAST-OF-GEDALIAH','SE_DESCRIPTION','EN','Fast Of Gedaliah is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Fast Of Gedaliah in ~{SE_YEAR}~.'),(291,'FAST-OF-GEDALIAH','SE_TITLE','EN','~{SE_YEAR}~ Fast of Gedaliah - Jewish Holidays  - ~{SE_BRAND}~'),(292,'YOM-KIPPUR','SE_DESCRIPTION','EN','Yom Kippur are the holiest day in the Jewish calendar, which recognized as the Day of Atonement. It falls on the tenth day of the Tishrei, a Jewish month.'),(293,'YOM-KIPPUR','SE_TITLE','EN','~{SE_YEAR}~ Yom Kippur - Jewish Holidays  - ~{SE_BRAND}~'),(294,'SUKKOT','SE_DESCRIPTION','EN','Sukkot is a biblical Jewish holiday celebrated during the week starting on the 15th day of Tishri, the first month of the year, according to the Jewish calendar.'),(295,'SUKKOT','SE_TITLE','EN','~{SE_YEAR}~ Sukkot - Jewish Holidays  - ~{SE_BRAND}~'),(296,'SUKKOT-END','SE_DESCRIPTION','EN','The Sukkot session is a moment to recognize the Jews traveling in the desert for 40 years, leading their exodus from Egypt.  Its seventh day is known as Hoshana Rabbah.'),(297,'SUKKOT-END','SE_TITLE','EN','~{SE_YEAR}~ Sukkot Ends  - Jewish Holidays  - ~{SE_BRAND}~'),(298,'SHEMINI-ATZERET','SE_DESCRIPTION','EN','Shemini Atzeret is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Shemini Atzeret in ~{SE_YEAR}~.'),(299,'SHEMINI-ATZERET','SE_TITLE','EN','~{SE_YEAR}~ Shemini Atzeret - Jewish Holidays  - ~{SE_BRAND}~'),(300,'SIMHAT-TORAH','SE_DESCRIPTION','EN','Simhat Torah is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Simhat Torah in ~{SE_YEAR}~.'),(301,'SIMHAT-TORAH','SE_TITLE','EN','~{SE_YEAR}~ Simhat Torah - Jewish Holidays  - ~{SE_BRAND}~'),(302,'HANUKKAH','SE_DESCRIPTION','EN','Hanukkah is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Hanukkah in ~{SE_YEAR}~.'),(303,'HANUKKAH','SE_TITLE','EN','~{SE_YEAR}~ Hanukkah - Jewish Holidays  - ~{SE_BRAND}~'),(304,'HANUKKAH-END','SE_DESCRIPTION','EN','Hanukkah End is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Hanukkah End in ~{SE_YEAR}~.'),(305,'HANUKKAH-END','SE_TITLE','EN','~{SE_YEAR}~ Hanukkah Ends  - Jewish Holidays  - ~{SE_BRAND}~'),(306,'SIKH-HOLIDAYS','SE_DESCRIPTION','EN','Here you can get lots of information about holidays. We provide the list of ~{SE_YEAR}~ Sikh holidays with breif description.'),(307,'SIKH-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Sikh Holidays  - ~{SE_BRAND}~'),(308,'GURU-GOBIND-SINGH-BIRTHDAY','SE_DESCRIPTION','EN','Guru Govind Singh Ji was the 10th Sikh Guru. He was born in Patna, Bihar, India. The annual celebration of Guru\'s birthday is based on the Nanakshahi calendar.'),(309,'GURU-GOBIND-SINGH-BIRTHDAY','SE_TITLE','EN','~{SE_YEAR}~ Guru Gobind Singh Birthday - Sikh Holidays'),(310,'MAGHI-LOHRI','SE_DESCRIPTION','EN','Maghi is an annual festival and one of the seasonal gathering of Sikhs. It is celebrated in Muktsar in memory of forty Sikh martyrs. It follows the festival of Lohri in North India.'),(311,'MAGHI-LOHRI','SE_TITLE','EN','~{SE_YEAR}~ Maghi Lohri - Sikh Holidays  - ~{SE_BRAND}~'),(312,'HOLA-MOHALLA','SE_DESCRIPTION','EN','Hola Mohalla is a Sikh festival celebrated in the month of Phalgun after Holi. An annual festival is celebrated for three days at Anandpur Sahib in Punjab.'),(313,'HOLA-MOHALLA','SE_TITLE','EN','~{SE_YEAR}~ Hola Mohalla - Sikh Holidays  - ~{SE_BRAND}~'),(314,'VAISAKHI','SE_DESCRIPTION','EN','Vaisakhi is also known as Baisakhi. It is usually celebrated every year on 13 or 14 April, which commemorates the formation of the Khalsa Panth of warriors in 1699 under Guru Govind Singh.'),(315,'VAISAKHI','SE_TITLE','EN','~{SE_YEAR}~ Vaisakhi - Sikh Holidays  - ~{SE_BRAND}~'),(316,'BIRTHDAY-OF-GURU-ANGAD-DEV','SE_DESCRIPTION','EN','Guru Angad Dev Ji was an Indian religious leader and the second Sikh Guru. He was born in a Hindu family, with birth name as Lehna, in Harike village.'),(317,'BIRTHDAY-OF-GURU-ANGAD-DEV','SE_TITLE','EN','~{SE_YEAR}~ Guru Angad Dev Ji Bithday - Sikh Holidays'),(318,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','SE_DESCRIPTION','EN','Guru Arjan Dev Ji is the fifth Sikh Guru. The Mughal emperor Jahangir ordered that Guru Arjan Dev ji be tortured and beheaded because the Guru refused to stop preaching his message to God.'),(319,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','SE_TITLE','EN','~{SE_YEAR}~ Martyrdom of Guru Arjan Dev Ji - Sikh Holidays  - ~{SE_BRAND}~'),(320,'BIRTH-OF-THE-GURU-GRANTH','SE_DESCRIPTION','EN','Guru Granth Sahib Ji is the religious scripture of Sikhism, which is considered by Sikhs as the last, sovereign and eternal living Guru after the descent of ten human gurus of religion.'),(321,'BIRTH-OF-THE-GURU-GRANTH','SE_TITLE','EN','~{SE_YEAR}~ Bith of the Guru Granth Sahib Ji - Sikh Holidays'),(322,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','SE_DESCRIPTION','EN','Guru Tegh Bahadur Ji was the ninth Guru of Sikhism. He was publicly beheaded in 1675 on the orders of Mughal Emperor Aurangzeb in Delhi for refusing to convert to Islam and to save Hindu Kashmiri Pandits and other non-Muslims.'),(323,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','SE_TITLE','EN','~{SE_YEAR}~ Martyrdom of Guru Tegh Bahadur Ji - Sikh Holidays'),(324,'GURU-NANAK-BIRTHDAY','SE_DESCRIPTION','EN','Guru Nanak Dev ji is also known as Baba Nanak, the founder of Sikhism and the first Sikh Guru. His birth is celebrated on the day of Kartik Purnima as Guru Nanak Gurupurab worldwide.'),(325,'GURU-NANAK-BIRTHDAY','SE_TITLE','EN','~{SE_YEAR}~ Guru Nanank Dev Ji Birthday - Sikh Holidays'),(326,'ST-NICHOLAS-DAY','SE_DESCRIPTION','EN','Saint Nicholas Day observed on December 6 in the US. The legendary personality of St. Nicholas is derived from Nicholas of Myra, who directed as a bishop in the 4th century. '),(327,'ST-NICHOLAS-DAY','SE_TITLE','EN','~{SE_YEAR}~ St Nicholas Day - A Christian Festival - ~{SE_BRAND}~'),(328,'ALABAMA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Alabama State Holidays  - ~{SE_BRAND}~'),(329,'ALASKA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Alaska State Holidays  - ~{SE_BRAND}~'),(330,'ARIZONA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Arizona State Holidays  - ~{SE_BRAND}~'),(331,'ARKANSAS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Arkansas State Holidays  - ~{SE_BRAND}~'),(332,'CALIFORNIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ California State Holidays  - ~{SE_BRAND}~'),(333,'COLORADO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Colorado State Holidays  - ~{SE_BRAND}~'),(334,'CONNECTICUT-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Connecticut State Holidays  - ~{SE_BRAND}~'),(335,'DELAWARE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Delaware State Holidays  - ~{SE_BRAND}~'),(336,'FLORIDA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Florida State Holidays  - ~{SE_BRAND}~'),(337,'GEORGIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Georgia State Holidays  - ~{SE_BRAND}~'),(338,'HAWAII-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Hawaii State Holidays  - ~{SE_BRAND}~'),(339,'IDAHO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Idaho State Holidays  - ~{SE_BRAND}~'),(340,'ILLINOIS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Illinois State Holidays  - ~{SE_BRAND}~'),(341,'INDIANA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Indiana State Holidays  - ~{SE_BRAND}~'),(342,'IOWA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Iowa State Holidays  - ~{SE_BRAND}~'),(343,'KANSAS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Kansas State Holidays  - ~{SE_BRAND}~'),(344,'KENTUCKY-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Kentucky State Holidays  - ~{SE_BRAND}~'),(345,'LOUISIANA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Louisiana State Holidays  - ~{SE_BRAND}~'),(346,'MAINE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Maine State Holidays  - ~{SE_BRAND}~'),(347,'MARYLAND-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Maryland State Holidays  - ~{SE_BRAND}~'),(348,'MASSACHUSETTS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Massachusetts State Holidays  - ~{SE_BRAND}~'),(349,'MICHIGAN-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Michigan State Holidays  - ~{SE_BRAND}~'),(350,'MINNESOTA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Minnesota State Holidays  - ~{SE_BRAND}~'),(351,'MISSISSIPPI-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Mississippi State Holidays  - ~{SE_BRAND}~'),(352,'MISSOURI-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Missouri State Holidays  - ~{SE_BRAND}~'),(353,'MONTANA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Montana State Holidays  - ~{SE_BRAND}~'),(354,'NEBRASKA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Nebraska State Holidays  - ~{SE_BRAND}~'),(355,'NEVADA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Nevada State Holidays  - ~{SE_BRAND}~'),(356,'NEW-HAMPSHIRE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New Hampshire State Holidays  - ~{SE_BRAND}~'),(357,'NEW-JERSEY-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New Jersey State Holidays  - ~{SE_BRAND}~'),(358,'NEW-MEXICO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New Mexico State Holidays  - ~{SE_BRAND}~'),(359,'NEW-YORK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New York State Holidays  - ~{SE_BRAND}~'),(360,'NORTH-CAROLINA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ North Carolina State Holidays  - ~{SE_BRAND}~'),(361,'NORTH-DAKOTA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ North Dakota State Holidays  - ~{SE_BRAND}~'),(362,'OHIO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Ohio State Holidays  - ~{SE_BRAND}~'),(363,'OKLAHOMA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Oklahoma State Holidays  - ~{SE_BRAND}~'),(364,'OREGON-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Oregon State Holidays  - ~{SE_BRAND}~'),(365,'PENNSYLVANIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Pennsylvania State Holidays  - ~{SE_BRAND}~'),(366,'RHODE-ISLAND-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Rhode Island State Holidays  - ~{SE_BRAND}~'),(367,'SOUTH-CAROLINA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ South Carolina State Holidays  - ~{SE_BRAND}~'),(368,'SOUTH-DAKOTA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ South Dakota State Holidays  - ~{SE_BRAND}~'),(369,'TENNESSEE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Tennessee State Holidays  - ~{SE_BRAND}~'),(370,'TEXAS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Texas State Holidays  - ~{SE_BRAND}~'),(371,'UTAH-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Utah State Holidays  - ~{SE_BRAND}~'),(372,'VERMONT-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Vermont State Holidays  - ~{SE_BRAND}~'),(373,'VIRGINIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Virginia State Holidays  - ~{SE_BRAND}~'),(374,'WASHINGTON-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Washington State Holidays  - ~{SE_BRAND}~'),(375,'WEST-VIRGINIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ West Virginia State Holidays  - ~{SE_BRAND}~'),(376,'WISCONSIN-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Wisconsin State Holidays  - ~{SE_BRAND}~'),(377,'WYOMING-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Wyoming State Holidays  - ~{SE_BRAND}~'),(378,'ALABAMA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Alabama, USA. Check upcoming Alabama holidays and plan accordingly.'),(379,'ALASKA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Alaska, USA. Check upcoming Alaska holidays and plan accordingly.'),(380,'ARIZONA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Arizona, USA. Check upcoming Arizona holidays and plan accordingly.'),(381,'ARKANSAS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Arkansas, USA. Check upcoming Arkansas holidays and plan accordingly.'),(382,'CALIFORNIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in California, USA. Check upcoming California holidays and plan accordingly.'),(383,'COLORADO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Colorado, USA. Check upcoming Colorado holidays and plan accordingly.'),(384,'CONNECTICUT-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Connecticut, USA. Check upcoming Connecticut holidays and plan accordingly.'),(385,'DELAWARE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Delaware, USA. Check upcoming Delaware holidays and plan accordingly.'),(386,'FLORIDA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Florida, USA. Check upcoming Florida holidays and plan accordingly.'),(387,'GEORGIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Georgia, USA. Check upcoming Georgia holidays and plan accordingly.'),(388,'HAWAII-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Hawaii, USA. Check upcoming Hawaii holidays and plan accordingly.'),(389,'IDAHO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Idaho, USA. Check upcoming Idaho holidays and plan accordingly.'),(390,'ILLINOIS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Illinois, USA. Check upcoming Illinois holidays and plan accordingly.'),(391,'INDIANA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Indiana, USA. Check upcoming Indiana holidays and plan accordingly.'),(392,'IOWA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Iowa, USA. Check upcoming Iowa holidays and plan accordingly.'),(393,'KANSAS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Kansas, USA. Check upcoming Kansas holidays and plan accordingly.'),(394,'KENTUCKY-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Kentucky, USA. Check upcoming Kentucky holidays and plan accordingly.'),(395,'LOUISIANA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Louisiana, USA. Check upcoming Louisiana holidays and plan accordingly.'),(396,'MAINE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Maine, USA. Check upcoming Maine holidays and plan accordingly.'),(397,'MARYLAND-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Maryland, USA. Check upcoming Maryland holidays and plan accordingly.'),(398,'MASSACHUSETTS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Massachusetts, USA. Check upcoming Massachusetts holidays and plan accordingly.'),(399,'MICHIGAN-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Michigan, USA. Check upcoming Michigan holidays and plan accordingly.'),(400,'MINNESOTA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Minnesota, USA. Check upcoming Minnesota holidays and plan accordingly.'),(401,'MISSISSIPPI-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Mississippi, USA. Check upcoming Mississippi holidays and plan accordingly.'),(402,'MISSOURI-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Missouri, USA. Check upcoming Missouri holidays and plan accordingly.'),(403,'MONTANA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Montana, USA. Check upcoming Montana holidays and plan accordingly.'),(404,'NEBRASKA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Nebraska, USA. Check upcoming Nebraska holidays and plan accordingly.'),(405,'NEVADA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Nevada, USA. Check upcoming Nevada holidays and plan accordingly.'),(406,'NEW-HAMPSHIRE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in New Hampshire, USA. Check upcoming New Hampshire holidays and plan accordingly.'),(407,'NEW-JERSEY-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in New Jersey, USA. Check upcoming New Jersey holidays and plan accordingly.'),(408,'NEW-MEXICO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in New Mexico, USA. Check upcoming New Mexico holidays and plan accordingly.'),(409,'NEW-YORK-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in New York, USA. Check upcoming New York holidays and plan accordingly.'),(410,'NORTH-CAROLINA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in North Carolina, USA. Check upcoming North Carolina holidays and plan accordingly.'),(411,'NORTH-DAKOTA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in North Dakota, USA. Check upcoming North Dakota holidays and plan accordingly.'),(412,'OHIO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Ohio, USA. Check upcoming Ohio holidays and plan accordingly.'),(413,'OKLAHOMA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Oklahoma, USA. Check upcoming Oklahoma holidays and plan accordingly.'),(414,'OREGON-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Oregon, USA. Check upcoming Oregon holidays and plan accordingly.'),(415,'PENNSYLVANIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Pennsylvania, USA. Check upcoming Pennsylvania holidays and plan accordingly.'),(416,'RHODE-ISLAND-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Rhode Island, USA. Check upcoming Rhode Island holidays and plan accordingly.'),(417,'SOUTH-CAROLINA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in South Carolina, USA. Check upcoming South Carolina holidays and plan accordingly.'),(418,'SOUTH-DAKOTA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in South Dakota, USA. Check upcoming South Dakota holidays and plan accordingly.'),(419,'TENNESSEE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Tennessee, USA. Check upcoming Tennessee holidays and plan accordingly.'),(420,'TEXAS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Texas, USA. Check upcoming Texas holidays and plan accordingly.'),(421,'UTAH-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Utah, USA. Check upcoming Utah holidays and plan accordingly.'),(422,'VERMONT-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Vermont, USA. Check upcoming Vermont holidays and plan accordingly.'),(423,'VIRGINIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Virginia, USA. Check upcoming Virginia holidays and plan accordingly.'),(424,'WASHINGTON-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Washington, USA. Check upcoming Washington holidays and plan accordingly.'),(425,'WEST-VIRGINIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in West Virginia, USA. Check upcoming West Virginia holidays and plan accordingly.'),(426,'WISCONSIN-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Wisconsin, USA. Check upcoming Wisconsin holidays and plan accordingly.'),(427,'WYOMING-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Wyoming, USA. Check upcoming Wyoming holidays and plan accordingly.'),(428,'BANK-OF-AMERICA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Bank of America Holidays  - ~{SE_BRAND}~'),(429,'CAPITAL-ONE-BANK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Capital One Bank Holidays  - ~{SE_BRAND}~'),(430,'CHASE-BANK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Chase Bank Holidays  - ~{SE_BRAND}~'),(431,'CITIBANK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ CITIBANK Holidays  - ~{SE_BRAND}~'),(432,'HSBC-BANK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ HSBC Bank Holidays  - ~{SE_BRAND}~'),(433,'WELLS-FARGO-BANK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Wells Fargo Bank Holidays  - ~{SE_BRAND}~'),(434,'SUNTRUST-BANK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ SunTrust Bank Holidays  - ~{SE_BRAND}~'),(435,'BANK-OF-AMERICA-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of Bank of America holidays for the year ~{SE_YEAR}~.  Check when Bank of America is open or closed for business and plan accordingly.'),(436,'CAPITAL-ONE-BANK-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of Capital One Bank holidays for the year ~{SE_YEAR}~.  Check when Capital One Bank is open or closed for business and plan accordingly.'),(437,'CHASE-BANK-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of Chase Bank holidays for the year ~{SE_YEAR}~.  Check when Chase Bank is open or closed for business and plan accordingly.'),(438,'CITIBANK-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of CitiBank holidays for the year ~{SE_YEAR}~.  Check when Citi Bank is open or closed for business and plan accordingly.'),(439,'HSBCB-BANK-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of HSBC Bank holidays for the year ~{SE_YEAR}~.  Check when HSBC Bank is open or closed for business and plan accordingly.'),(440,'WELLS-FARGO-BANK-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of Wells Fargo Bank holidays for the year ~{SE_YEAR}~.  Check when Wells Fargo Bank is open or closed for business and plan accordingly.'),(441,'SUNTRUST-BANK-HOLIDAYS','SE_DESCRIPTION','EN','Here is the list of SunTrust Bank holidays for the year ~{SE_YEAR}~.  Check when SunTrust Bank is open or closed for business and plan accordingly.'),(442,'ASX-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ ASX Market Holidays  - ~{SE_BRAND}~'),(443,'BSE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ BSE Market Holidays  - ~{SE_BRAND}~'),(444,'DAX-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ DAX Market Holidays  - ~{SE_BRAND}~'),(445,'EURONEXT-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ EURONEXT Market Holidays  - ~{SE_BRAND}~'),(446,'LSE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ LSE Market Holidays  - ~{SE_BRAND}~'),(447,'MCX-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ MCX Market Holidays  - ~{SE_BRAND}~'),(448,'NASDAQ-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ NASDAQ Market Holidays  - ~{SE_BRAND}~'),(449,'NSE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ NSE Market Holidays  - ~{SE_BRAND}~'),(450,'NYSE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ NYSE Market Holidays  - ~{SE_BRAND}~'),(451,'TSX-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ TSX Market Holidays  - ~{SE_BRAND}~'),(452,'ASX-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the ASX (Australian Securities Exchange) - Australia market will be closed. Plan your trading activities as per the ASX holiday schedules.'),(453,'BSE-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the BSE (Bombay Stock Exchange) - India market will be closed. Plan your trading activities as per the BSE holiday schedules.'),(454,'DAX-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the DAX (Frankfurt Stock Exchange) - Germany market will be closed. Plan your trading activities as per the DAX holiday schedules.'),(455,'EURONEXT-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the EURONEXT - Paris, France market will be closed. Plan your trading activities as per the EURONEXT holiday schedules.'),(456,'LSE-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the LSE (London Stock Exchange) - UK market will be closed. Plan your trading activities as per the LSE holiday schedules.'),(457,'MCX-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the MCX (Multi Commodity Exchange) - India market will be closed. Plan your trading activities as per the MCX holiday schedules.'),(458,'NASDAQ-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the NASDAQ (NASDAQ Stock Exchange) - US market will be closed. Plan your trading activities as per the NASDAQ holiday schedules.'),(459,'NSE-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the NSE (National Stock Exchange) - India market will be closed. Plan your trading activities as per the NSE holiday schedules.'),(460,'NYSE-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the NYSE (New York Stock Exchange) - US market will be closed. Plan your trading activities as per the NYSE holiday schedules.'),(461,'TSX-HOLIDAYS','SE_DESCRIPTION','EN','Check the list of ~{SE_YEAR}~ holidays when the TSX (Toronto Stock Exchange) - Canada market will be closed. Plan your trading activities as per the TSX holiday schedules.'),(462,'USPS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Post Office Holidays | USPS Holidays  - ~{SE_BRAND}~'),(463,'USPS-HOLIDAYS','SE_DESCRIPTION','EN','Find the list of ~{SE_YEAR}~ post office holidays or the USPS holidays. Check and know when the mail will come and go. '),(464,'CALENDAR-ALABAMA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Alabama State Holidays Calendar  - ~{SE_BRAND}~'),(466,'CALENDAR-ALASKA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Alaska State Holidays Calendar  - ~{SE_BRAND}~'),(467,'CALENDAR-ARIZONA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Arizona State Holidays Calendar  - ~{SE_BRAND}~'),(468,'CALENDAR-ARKANSAS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Arkansas State Holidays Calendar  - ~{SE_BRAND}~'),(469,'CALENDAR-CALIFORNIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ California State Holidays Calendar  - ~{SE_BRAND}~'),(470,'CALENDAR-COLORADO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Colorado State Holidays Calendar  - ~{SE_BRAND}~'),(471,'CALENDAR-CONNECTICUT-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Connecticut State Holidays Calendar  - ~{SE_BRAND}~'),(472,'CALENDAR-DELAWARE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Delaware State Holidays Calendar  - ~{SE_BRAND}~'),(473,'CALENDAR-FLORIDA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Florida State Holidays Calendar  - ~{SE_BRAND}~'),(474,'CALENDAR-GEORGIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Georgia State Holidays Calendar  - ~{SE_BRAND}~'),(475,'CALENDAR-HAWAII-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Hawaii State Holidays Calendar  - ~{SE_BRAND}~'),(476,'CALENDAR-IDAHO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Idaho State Holidays Calendar  - ~{SE_BRAND}~'),(477,'CALENDAR-ILLINOIS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Illinois State Holidays Calendar  - ~{SE_BRAND}~'),(478,'CALENDAR-INDIANA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Indiana State Holidays Calendar  - ~{SE_BRAND}~'),(479,'CALENDAR-IOWA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Iowa State Holidays Calendar  - ~{SE_BRAND}~'),(480,'CALENDAR-KANSAS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Kansas State Holidays Calendar  - ~{SE_BRAND}~'),(481,'CALENDAR-KENTUCKY-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Kentucky State Holidays Calendar  - ~{SE_BRAND}~'),(482,'CALENDAR-LOUISIANA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Louisiana State Holidays Calendar  - ~{SE_BRAND}~'),(483,'CALENDAR-MAINE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Maine State Holidays Calendar  - ~{SE_BRAND}~'),(484,'CALENDAR-MARYLAND-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Maryland State Holidays Calendar  - ~{SE_BRAND}~'),(485,'CALENDAR-MASSACHUSETTS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Massachusetts State Holidays Calendar  - ~{SE_BRAND}~'),(486,'CALENDAR-MICHIGAN-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Michigan State Holidays Calendar  - ~{SE_BRAND}~'),(487,'CALENDAR-MINNESOTA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Minnesota State Holidays Calendar  - ~{SE_BRAND}~'),(488,'CALENDAR-MISSISSIPPI-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Mississippi State Holidays Calendar  - ~{SE_BRAND}~'),(489,'CALENDAR-MISSOURI-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Missouri State Holidays Calendar  - ~{SE_BRAND}~'),(490,'CALENDAR-MONTANA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Montana State Holidays Calendar  - ~{SE_BRAND}~'),(491,'CALENDAR-NEBRASKA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Nebraska State Holidays Calendar  - ~{SE_BRAND}~'),(492,'CALENDAR-NEVADA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Nevada State Holidays Calendar  - ~{SE_BRAND}~'),(493,'CALENDAR-NEW-HAMPSHIRE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New Hampshire State Holidays Calendar  - ~{SE_BRAND}~'),(494,'CALENDAR-NEW-JERSEY-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New Jersey State Holidays Calendar  - ~{SE_BRAND}~'),(495,'CALENDAR-NEW-MEXICO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New Mexico State Holidays Calendar  - ~{SE_BRAND}~'),(496,'CALENDAR-NEW-YORK-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ New York State Holidays Calendar  - ~{SE_BRAND}~'),(497,'CALENDAR-NORTH-CAROLINA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ North Carolina State Holidays Calendar  - ~{SE_BRAND}~'),(498,'CALENDAR-NORTH-DAKOTA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ North Dakota State Holidays Calendar  - ~{SE_BRAND}~'),(499,'CALENDAR-OHIO-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Ohio State Holidays Calendar  - ~{SE_BRAND}~'),(500,'CALENDAR-OKLAHOMA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Oklahoma State Holidays Calendar  - ~{SE_BRAND}~'),(501,'CALENDAR-OREGON-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Oregon State Holidays Calendar  - ~{SE_BRAND}~'),(502,'CALENDAR-PENNSYLVANIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Pennsylvania State Holidays Calendar  - ~{SE_BRAND}~'),(503,'CALENDAR-RHODE-ISLAND-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Rhode Island State Holidays Calendar  - ~{SE_BRAND}~'),(504,'CALENDAR-SOUTH-CAROLINA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ South Carolina State Holidays Calendar  - ~{SE_BRAND}~'),(505,'CALENDAR-SOUTH-DAKOTA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ South Dakota State Holidays Calendar  - ~{SE_BRAND}~'),(506,'CALENDAR-TENNESSEE-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Tennessee State Holidays Calendar  - ~{SE_BRAND}~'),(507,'CALENDAR-TEXAS-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Texas State Holidays Calendar  - ~{SE_BRAND}~'),(508,'CALENDAR-UTAH-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Utah State Holidays Calendar  - ~{SE_BRAND}~'),(509,'CALENDAR-VERMONT-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Vermont State Holidays Calendar  - ~{SE_BRAND}~'),(510,'CALENDAR-VIRGINIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Virginia State Holidays Calendar  - ~{SE_BRAND}~'),(511,'CALENDAR-WASHINGTON-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Washington State Holidays Calendar  - ~{SE_BRAND}~'),(512,'CALENDAR-WEST-VIRGINIA-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ West Virginia State Holidays Calendar  - ~{SE_BRAND}~'),(513,'CALENDAR-WISCONSIN-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Wisconsin State Holidays Calendar  - ~{SE_BRAND}~'),(514,'CALENDAR-WYOMING-HOLIDAYS','SE_TITLE','EN','~{SE_YEAR}~ Wyoming State Holidays Calendar  - ~{SE_BRAND}~'),(515,'CALENDAR-ALABAMA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Alabama, USA. Check upcoming Alabama holidays calendar and plan accordingly.'),(516,'CALENDAR-ALASKA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Alaska, USA. Check upcoming Alaska holidays calendar and plan accordingly.'),(517,'CALENDAR-ARIZONA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Arizona, USA. Check upcoming Arizona holidays calendar and plan accordingly.'),(518,'CALENDAR-ARKANSAS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Arkansas, USA. Check upcoming Arkansas holidays calendar and plan accordingly.'),(519,'CALENDAR-CALIFORNIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in California, USA. Check upcoming California holidays calendar and plan accordingly.'),(520,'CALENDAR-COLORADO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Colorado, USA. Check upcoming Colorado holidays calendar and plan accordingly.'),(521,'CALENDAR-CONNECTICUT-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Connecticut, USA. Check upcoming Connecticut holidays calendar and plan accordingly.'),(522,'CALENDAR-DELAWARE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Delaware, USA. Check upcoming Delaware holidays calendar and plan accordingly.'),(523,'CALENDAR-FLORIDA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Florida, USA. Check upcoming Florida holidays calendar and plan accordingly.'),(524,'CALENDAR-GEORGIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Georgia, USA. Check upcoming Georgia holidays calendar and plan accordingly.'),(525,'CALENDAR-HAWAII-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Hawaii, USA. Check upcoming Hawaii holidays calendar and plan accordingly.'),(526,'CALENDAR-IDAHO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Idaho, USA. Check upcoming Idaho holidays calendar and plan accordingly.'),(527,'CALENDAR-ILLINOIS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Illinois, USA. Check upcoming Illinois holidays calendar and plan accordingly.'),(528,'CALENDAR-INDIANA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Indiana, USA. Check upcoming Indiana holidays calendar and plan accordingly.'),(529,'CALENDAR-IOWA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Iowa, USA. Check upcoming Iowa holidays calendar and plan accordingly.'),(530,'CALENDAR-KANSAS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Kansas, USA. Check upcoming Kansas holidays calendar and plan accordingly.'),(531,'CALENDAR-KENTUCKY-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Kentucky, USA. Check upcoming Kentucky holidays calendar and plan accordingly.'),(532,'CALENDAR-LOUISIANA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Louisiana, USA. Check upcoming Louisiana holidays calendar and plan accordingly.'),(533,'CALENDAR-MAINE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Maine, USA. Check upcoming Maine holidays calendar and plan accordingly.'),(534,'CALENDAR-MARYLAND-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Maryland, USA. Check upcoming Maryland holidays calendar and plan accordingly.'),(535,'CALENDAR-MASSACHUSETTS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Massachusetts, USA. Check upcoming Massachusetts holidays calendar and plan accordingly.'),(536,'CALENDAR-MICHIGAN-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Michigan, USA. Check upcoming Michigan holidays calendar and plan accordingly.'),(537,'CALENDAR-MINNESOTA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Minnesota, USA. Check upcoming Minnesota holidays calendar and plan accordingly.'),(538,'CALENDAR-MISSISSIPPI-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Mississippi, USA. Check upcoming Mississippi holidays calendar and plan accordingly.'),(539,'CALENDAR-MISSOURI-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Missouri, USA. Check upcoming Missouri holidays calendar and plan accordingly.'),(540,'CALENDAR-MONTANA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Montana, USA. Check upcoming Montana holidays calendar and plan accordingly.'),(541,'CALENDAR-NEBRASKA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Nebraska, USA. Check upcoming Nebraska holidays calendar and plan accordingly.'),(542,'CALENDAR-NEVADA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Nevada, USA. Check upcoming Nevada holidays calendar and plan accordingly.'),(543,'CALENDAR-NEW-HAMPSHIRE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in New Hampshire, USA. Check upcoming New Hampshire holidays calendar and plan accordingly.'),(544,'CALENDAR-NEW-JERSEY-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in New Jersey, USA. Check upcoming New Jersey holidays calendar and plan accordingly.'),(545,'CALENDAR-NEW-MEXICO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in New Mexico, USA. Check upcoming New Mexico holidays calendar and plan accordingly.'),(546,'CALENDAR-NEW-YORK-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in New York, USA. Check upcoming New York holidays calendar and plan accordingly.'),(547,'CALENDAR-NORTH-CAROLINA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in North Carolina, USA. Check upcoming North Carolina holidays calendar and plan accordingly.'),(548,'CALENDAR-NORTH-DAKOTA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in North Dakota, USA. Check upcoming North Dakota holidays calendar and plan accordingly.'),(549,'CALENDAR-OHIO-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Ohio, USA. Check upcoming Ohio holidays calendar and plan accordingly.'),(550,'CALENDAR-OKLAHOMA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Oklahoma, USA. Check upcoming Oklahoma holidays calendar and plan accordingly.'),(551,'CALENDAR-OREGON-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Oregon, USA. Check upcoming Oregon holidays calendar and plan accordingly.'),(552,'CALENDAR-PENNSYLVANIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Pennsylvania, USA. Check upcoming Pennsylvania holidays calendar and plan accordingly.'),(553,'CALENDAR-RHODE-ISLAND-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Rhode Island, USA. Check upcoming Rhode Island holidays calendar and plan accordingly.'),(554,'CALENDAR-SOUTH-CAROLINA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in South Carolina, USA. Check upcoming South Carolina holidays calendar and plan accordingly.'),(555,'CALENDAR-SOUTH-DAKOTA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in South Dakota, USA. Check upcoming South Dakota holidays calendar and plan accordingly.'),(556,'CALENDAR-TENNESSEE-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Tennessee, USA. Check upcoming Tennessee holidays calendar and plan accordingly.'),(557,'CALENDAR-TEXAS-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Texas, USA. Check upcoming Texas holidays calendar and plan accordingly.'),(558,'CALENDAR-UTAH-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Utah, USA. Check upcoming Utah holidays calendar and plan accordingly.'),(559,'CALENDAR-VERMONT-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Vermont, USA. Check upcoming Vermont holidays calendar and plan accordingly.'),(560,'CALENDAR-VIRGINIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Virginia, USA. Check upcoming Virginia holidays calendar and plan accordingly.'),(561,'CALENDAR-WASHINGTON-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Washington, USA. Check upcoming Washington holidays calendar and plan accordingly.'),(562,'CALENDAR-WEST-VIRGINIA-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in West Virginia, USA. Check upcoming West Virginia holidays calendar and plan accordingly.'),(563,'CALENDAR-WISCONSIN-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Wisconsin, USA. Check upcoming Wisconsin holidays calendar and plan accordingly.'),(564,'CALENDAR-WYOMING-HOLIDAYS','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional holidays calendar and festivals observed in Wyoming, USA. Check upcoming Wyoming holidays calendar and plan accordingly.'),(597,'BUDDHIST-HOLIDAYS','SE_HERO','EN','Buddhist Festivals'),(598,'CHRISTIAN-HOLIDAYS','SE_HERO','EN','Christian Festivals'),(599,'HINDU-HOLIDAYS','SE_HERO','EN','Hindu Festivals'),(600,'ISLAM-HOLIDAYS','SE_HERO','EN','Islam Festivals'),(601,'JEWISH-HOLIDAYS','SE_HERO','EN','Jewish Festivals'),(602,'SIKH-HOLIDAYS','SE_HERO','EN','Sikh Festivals'),(604,'MAHAYANA-NEW-YEAR','SE_AREA_TITLE','EN','Mahayana New Year'),(605,'CHINESE-NEW-YEAR','SE_AREA_TITLE','EN','Chinese New Year'),(606,'NIRVANA-DAY','SE_AREA_TITLE','EN','Nirvana Day'),(607,'MAGHA-PUJA-DAY','SE_AREA_TITLE','EN','Magha Puja Day'),(608,'THERAVADA-NEW-YEAR','SE_AREA_TITLE','EN','Theravada New Year'),(609,'VESAK-BUDDHA-DAY','SE_AREA_TITLE','EN','Vesak Day'),(610,'ASALA-DHARMA-DAY','SE_AREA_TITLE','EN','Asala Dharma Day'),(611,'OBON','SE_AREA_TITLE','EN','Obon'),(612,'BODHI-DAY','SE_AREA_TITLE','EN','Bodhi Day'),(613,'BUDDHIST-HOLIDAYS','SE_AREA_TITLE','EN','Buddhist Holidays'),(614,'US-HOLIDAYS','SE_AREA_TITLE','EN','United States Holidays'),(615,'RELIGIOUS-HOLIDAYS','SE_AREA_TITLE','EN','Religious Holidays'),(616,'STATE-HOLIDAYS','SE_AREA_TITLE','EN','State Holidays'),(617,'BANK-HOLIDAYS','SE_AREA_TITLE','EN','Bank Holidays'),(618,'MARKET-HOLIDAYS','SE_AREA_TITLE','EN','Market Holidays'),(619,'NEW-YEARS-DAY','SE_AREA_TITLE','EN','New Years Day'),(620,'MARTIN-LUTHER-KING-DAY','SE_AREA_TITLE','EN','Martin Luther King Day'),(621,'VALENTINES-DAY','SE_AREA_TITLE','EN','Valentines Day'),(622,'PRESIDENTS-DAY','SE_AREA_TITLE','EN','Presidents Day'),(623,'GOOD-FRIDAY','SE_AREA_TITLE','EN','Good Friday'),(624,'EASTER','SE_AREA_TITLE','EN','Easter'),(625,'MOTHERS-DAY','SE_AREA_TITLE','EN','Mother\'s Day'),(626,'NATIONAL-MEMORIAL-DAY','SE_AREA_TITLE','EN','National Memorial Day'),(627,'FATHERS-DAY','SE_AREA_TITLE','EN','Fathers Day'),(628,'INDEPENDENCE-DAY','SE_AREA_TITLE','EN','Independence Day'),(629,'LABOR-DAY','SE_AREA_TITLE','EN','Labor Day'),(630,'COLUMBUS-DAY','SE_AREA_TITLE','EN','Columbus Day'),(631,'ALL-HALLOWS-EVE','SE_AREA_TITLE','EN','Halloween'),(632,'VETERANS-DAY','SE_AREA_TITLE','EN','Veterans Day'),(633,'THANKSGIVING-DAY','SE_AREA_TITLE','EN','Thanksgiving Day'),(634,'CHRISTMAS-EVE','SE_AREA_TITLE','EN','Christmas Eve'),(635,'CHRISTIAN-HOLIDAYS','SE_AREA_TITLE','EN','Christian Holidays'),(636,'EPIPHANY','SE_AREA_TITLE','EN','Epiphany'),(637,'BAPTISM-OF-THE-JESUS','SE_AREA_TITLE','EN','Baptism Of The Lord'),(638,'CANDLEMAS','SE_AREA_TITLE','EN','Candlemas'),(639,'ASH-WEDNESDAY','SE_AREA_TITLE','EN','Ash Wednesday'),(640,'ST-PATRICKS-DAY','SE_AREA_TITLE','EN','St Patricks Day'),(641,'ST-JOSEPHS-DAY','SE_AREA_TITLE','EN','St Josephs Day '),(642,'EASTER-MONDAY','SE_AREA_TITLE','EN','Easter Monday'),(643,'ST-GEORGES-DAY','SE_AREA_TITLE','EN','St Georges Day'),(644,'ASCENSION-DAY','SE_AREA_TITLE','EN','Ascension Day'),(645,'PENTECOST','SE_AREA_TITLE','EN','Pentecost'),(646,'TRINITY-SUNDAY','SE_AREA_TITLE','EN','Trinity Sunday'),(647,'CORPUS-CHRISTI','SE_AREA_TITLE','EN','Corpus Christi'),(648,'SAINT-VLADIMIR','SE_AREA_TITLE','EN','Saint Vladimir'),(649,'SAINTS-PETER-AND-PAUL','SE_AREA_TITLE','EN','Saints Peter And Paul'),(650,'ST-JAMES-THE-GREAT-DAY','SE_AREA_TITLE','EN','St James The Great Day '),(651,'LAMMAS','SE_AREA_TITLE','EN','Lammas'),(652,'THE-ASSUMPTION-OF-MARY','SE_AREA_TITLE','EN','The Assumption Of Mary'),(653,'HOLY-CROSS-DAY','SE_AREA_TITLE','EN','Holy Cross Day'),(654,'MICHAEL-AND-ALL-ANGELS','SE_AREA_TITLE','EN','Michael And All Angels'),(655,'ALL-SAINTS-DAY','SE_AREA_TITLE','EN','All Saints Day'),(656,'ALL-SOULS-DAY','SE_AREA_TITLE','EN','All Souls Day'),(657,'CHRIST-THE-KING','SE_AREA_TITLE','EN','Christ The King'),(658,'ADVENT-FIRST-SUNDAY','SE_AREA_TITLE','EN','Advent First Sunday'),(659,'ST-ANDREWS-DAY','SE_AREA_TITLE','EN','St Andrews Day'),(660,'HOLY-INNOCENTS','SE_AREA_TITLE','EN','Holy Innocents'),(661,'WATCH-NIGHT','SE_AREA_TITLE','EN','Watch Night'),(662,'HINDU-HOLIDAYS','SE_AREA_TITLE','EN','Hindu Holidays'),(663,'PONGAL','SE_AREA_TITLE','EN','Pongal'),(664,'VASANT-PANCHAMI','SE_AREA_TITLE','EN','Vasant Panchami'),(665,'THAIPUSAM','SE_AREA_TITLE','EN','Thaipusam'),(666,'MAHA-SHIVRATRI','SE_AREA_TITLE','EN','Maha Shivaratri'),(667,'HOLI','SE_AREA_TITLE','EN','Holi'),(668,'UGADI-TELUGU-NEW-YEAR','SE_AREA_TITLE','EN','Ugadi Telugu New Year'),(669,'HINDI-NEW-YEAR','SE_AREA_TITLE','EN','Hindi New Year'),(670,'RAMANAVAMI','SE_AREA_TITLE','EN','Ramanavami'),(671,'HANUMAN-JAYANTI','SE_AREA_TITLE','EN','Hanuman Jayanti'),(672,'VISHU','SE_AREA_TITLE','EN','Vishu'),(673,'BIHU-BENGALI-NEW-YEAR','SE_AREA_TITLE','EN','Bihu Bengali New Year'),(674,'TAMIL-NEW-YEAR','SE_AREA_TITLE','EN','Tamil New Year'),(675,'AKSHAYA-TRITIYA','SE_AREA_TITLE','EN','Akshaya Tritiya'),(676,'SAVITRI-POOJA','SE_AREA_TITLE','EN','Savitri Pooja'),(677,'RATH-YATRA','SE_AREA_TITLE','EN','Rath Yatra'),(678,'GURU-PURNIMA','SE_AREA_TITLE','EN','Guru Purnima'),(679,'NAG-PANCHAMI','SE_AREA_TITLE','EN','Nag Panchami'),(680,'VARALAKSHMI-VRAT','SE_AREA_TITLE','EN','Varalakshmi Vrat'),(681,'RAKSHA-BANDHAN','SE_AREA_TITLE','EN','Raksha Bandhan'),(682,'JANMASHTAMI','SE_AREA_TITLE','EN','Janmashtami'),(683,'GANESH-CHATURTHI','SE_AREA_TITLE','EN','Ganesh Chaturthi'),(684,'ONAM','SE_AREA_TITLE','EN','Onam'),(685,'VISHWAKARMA-PUJA','SE_AREA_TITLE','EN','Vishwakarma Puja'),(686,'MAHALAYA-AMAVASYA','SE_AREA_TITLE','EN','Mahalaya Amavasya'),(687,'NAVARATRI','SE_AREA_TITLE','EN','Navaratri'),(688,'DUSSEHRA','SE_AREA_TITLE','EN','Dussehra'),(689,'SHARAD-PURNIMA','SE_AREA_TITLE','EN','Sharad Purnima'),(690,'KARVA-CHAUTH','SE_AREA_TITLE','EN','Karva Chauth'),(691,'DHANTERAS','SE_AREA_TITLE','EN','Dhanteras'),(692,'DIWALI','SE_AREA_TITLE','EN','Diwali'),(693,'BHAI-DOOJ','SE_AREA_TITLE','EN','Bhai Dooj'),(694,'CHHATH-PUJA','SE_AREA_TITLE','EN','Chhath Puja'),(695,'KARTIK-POORNIMA','SE_AREA_TITLE','EN','Kartik Purnima'),(696,'DHANU-SANKRANTI','SE_AREA_TITLE','EN','Dhanu Sankranti'),(697,'DHANU-SANKRANTI/','SE_AREA_TITLE','EN','Dhanu Sankranti/'),(698,'GEETA-JAYANTI','SE_AREA_TITLE','EN','Geeta Jayanti'),(699,'ISLAM-HOLIDAYS','SE_AREA_TITLE','EN','Islam Holidays'),(700,'LAILAT-AL-MIRAJ','SE_AREA_TITLE','EN','Lailat Al Miraj'),(701,'LAILAT-AL-BARAAH','SE_AREA_TITLE','EN','Lailat Al Baraah'),(702,'RAMADAN-START','SE_AREA_TITLE','EN','Ramadan Start'),(703,'LAYLAT-AL-KADR','SE_AREA_TITLE','EN','Laylat Al Kadr'),(704,'RAMADAN-END','SE_AREA_TITLE','EN','Ramadan End'),(705,'HARI-RAYA-HAJI','SE_AREA_TITLE','EN','Hari Raya Haji'),(706,'WAQF-AL-ARAFA-HAJJ','SE_AREA_TITLE','EN','Waqf Al Arafa Hajj'),(707,'MUHARRAM','SE_AREA_TITLE','EN','Muharram'),(708,'MILAD-UN-NABI','SE_AREA_TITLE','EN','Milad Un Nabi'),(709,'JEWISH-HOLIDAYS','SE_AREA_TITLE','EN','Jewish Holidays'),(710,'TU-BISHVAT','SE_AREA_TITLE','EN','Tu Bishvat'),(711,'PURIM','SE_AREA_TITLE','EN','Purim'),(712,'PASSOVER','SE_AREA_TITLE','EN','Passover (Jewish Festival)'),(713,'PASSOVER-FINAL-DAY','SE_AREA_TITLE','EN','Passover Final Day'),(714,'YOM-HASHOAH','SE_AREA_TITLE','EN','Yom Hashoah'),(715,'YOM-HAZIKARON','SE_AREA_TITLE','EN','Yom Hazikaron'),(716,'YOM-HAATZMAUT','SE_AREA_TITLE','EN','Yom Haatzmaut'),(717,'PASSOVER-SECOND-DAY','SE_AREA_TITLE','EN','Passover Second Day'),(718,'LAG-BOMER','SE_AREA_TITLE','EN','Lag Bomer'),(719,'YOM-YERUSHALAYIM','SE_AREA_TITLE','EN','Yom Yerushalayim'),(720,'SHAVUOT','SE_AREA_TITLE','EN','Shavuot'),(721,'TISHA-BAV','SE_AREA_TITLE','EN','Tisha Bav'),(722,'ROSH-HASHANAH','SE_AREA_TITLE','EN','Rosh Hashanah'),(723,'FAST-OF-GEDALIAH','SE_AREA_TITLE','EN','Fast Of Gedaliah'),(724,'YOM-KIPPUR','SE_AREA_TITLE','EN','Yom Kippur'),(725,'SUKKOT','SE_AREA_TITLE','EN','Sukkot'),(726,'SUKKOT-ENDS','SE_AREA_TITLE','EN','Sukkot End'),(727,'SHEMINI-ATZERET','SE_AREA_TITLE','EN','Shemini Atzeret'),(728,'SIMHAT-TORAH','SE_AREA_TITLE','EN','Simhat Torah'),(729,'HANUKKAH','SE_AREA_TITLE','EN','Hanukkah'),(730,'HANUKKAH-END','SE_AREA_TITLE','EN','Hanukkah End'),(731,'SIKH-HOLIDAYS','SE_AREA_TITLE','EN','Sikh Holidays'),(732,'GURU-GOBIND-SINGH-BIRTHDAY','SE_AREA_TITLE','EN','Guru Gobind Singh Birthday'),(733,'MAGHI-LOHRI','SE_AREA_TITLE','EN','Maghi Lohri'),(734,'HOLA-MOHALLA','SE_AREA_TITLE','EN','Hola Mohalla'),(735,'VAISAKHI','SE_AREA_TITLE','EN','Vaisakhi'),(736,'BIRTHDAY-OF-GURU-ANGAD-DEV','SE_AREA_TITLE','EN','Birthday Of Guru Angad Dev'),(737,'MARTYRDOM-OF-GURU-ARJAN-DEV-SAHIB','SE_AREA_TITLE','EN','Martyrdom Of Guru Arjan Dev Sahib'),(738,'BIRTH-OF-THE-GURU-GRANTH','SE_AREA_TITLE','EN','Birth Of The Guru Granth'),(739,'MARTYRDOM-OF-GURU-TEGH-BAHADUR-SAHIB','SE_AREA_TITLE','EN','Martyrdom Of Guru Tegh Bahadur Sahib'),(740,'GURU-NANAK-BIRTHDAY','SE_AREA_TITLE','EN','Guru Nanak Birthday'),(741,'ST-NICHOLAS-DAY','SE_AREA_TITLE','EN','St Nicholas Day'),(742,'ALABAMA-HOLIDAYS','SE_AREA_TITLE','EN','Alabama Holidays'),(743,'ALASKA-HOLIDAYS','SE_AREA_TITLE','EN','Alaska Holidays'),(744,'ARIZONA-HOLIDAYS','SE_AREA_TITLE','EN','Arizona Holidays'),(745,'ARKANSAS-HOLIDAYS','SE_AREA_TITLE','EN','Arkansas Holidays'),(746,'CALIFORNIA-HOLIDAYS','SE_AREA_TITLE','EN','California Holidays'),(747,'COLORADO-HOLIDAYS','SE_AREA_TITLE','EN','Colorado Holidays'),(748,'CONNECTICUT-HOLIDAYS','SE_AREA_TITLE','EN','Connecticut Holidays'),(749,'DELAWARE-HOLIDAYS','SE_AREA_TITLE','EN','Delaware Holidays'),(750,'FLORIDA-HOLIDAYS','SE_AREA_TITLE','EN','Florida Holidays'),(751,'GEORGIA-HOLIDAYS','SE_AREA_TITLE','EN','Georgia Holidays'),(752,'HAWAII-HOLIDAYS','SE_AREA_TITLE','EN','Hawaii Holidays'),(753,'IDAHO-HOLIDAYS','SE_AREA_TITLE','EN','Idaho Holidays'),(754,'ILLINOIS-HOLIDAYS','SE_AREA_TITLE','EN','Illinois Holidays'),(755,'INDIANA-HOLIDAYS','SE_AREA_TITLE','EN','Indiana Holidays'),(756,'IOWA-HOLIDAYS','SE_AREA_TITLE','EN','Iowa Holidays'),(757,'KANSAS-HOLIDAYS','SE_AREA_TITLE','EN','Kansas Holidays'),(758,'KENTUCKY-HOLIDAYS','SE_AREA_TITLE','EN','Kentucky Holidays'),(759,'LOUISIANA-HOLIDAYS','SE_AREA_TITLE','EN','Louisiana Holidays'),(760,'MAINE-HOLIDAYS','SE_AREA_TITLE','EN','Maine Holidays'),(761,'MARYLAND-HOLIDAYS','SE_AREA_TITLE','EN','Maryland Holidays'),(762,'MASSACHUSETTS-HOLIDAYS','SE_AREA_TITLE','EN','Massachusetts Holidays'),(763,'MICHIGAN-HOLIDAYS','SE_AREA_TITLE','EN','Michigan Holidays'),(764,'MINNESOTA-HOLIDAYS','SE_AREA_TITLE','EN','Minnesota Holidays'),(765,'MISSISSIPPI-HOLIDAYS','SE_AREA_TITLE','EN','Mississippi Holidays'),(766,'MISSOURI-HOLIDAYS','SE_AREA_TITLE','EN','Missouri Holidays'),(767,'MONTANA-HOLIDAYS','SE_AREA_TITLE','EN','Montana Holidays'),(768,'NEBRASKA-HOLIDAYS','SE_AREA_TITLE','EN','Nebraska Holidays'),(769,'NEVADA-HOLIDAYS','SE_AREA_TITLE','EN','Nevada Holidays'),(770,'NEW-HAMPSHIRE-HOLIDAYS','SE_AREA_TITLE','EN','New Hampshire Holidays'),(771,'NEW-JERSEY-HOLIDAYS','SE_AREA_TITLE','EN','New Jersey Holidays'),(772,'NEW-MEXICO-HOLIDAYS','SE_AREA_TITLE','EN','New Mexico Holidays'),(773,'NEW-YORK-HOLIDAYS','SE_AREA_TITLE','EN','New York Holidays'),(774,'NORTH-CAROLINA-HOLIDAYS','SE_AREA_TITLE','EN','North Carolina Holidays'),(775,'NORTH-DAKOTA-HOLIDAYS','SE_AREA_TITLE','EN','North Dakota Holidays'),(776,'OHIO-HOLIDAYS','SE_AREA_TITLE','EN','Ohio Holidays'),(777,'OKLAHOMA-HOLIDAYS','SE_AREA_TITLE','EN','Oklahoma Holidays'),(778,'OREGON-HOLIDAYS','SE_AREA_TITLE','EN','Oregon Holidays'),(779,'PENNSYLVANIA-HOLIDAYS','SE_AREA_TITLE','EN','Pennsylvania Holidays'),(780,'RHODE-ISLAND-HOLIDAYS','SE_AREA_TITLE','EN','Rhode Island Holidays'),(781,'SOUTH-CAROLINA-HOLIDAYS','SE_AREA_TITLE','EN','South Carolina Holidays'),(782,'SOUTH-DAKOTA-HOLIDAYS','SE_AREA_TITLE','EN','South Dakota Holidays'),(783,'TENNESSEE-HOLIDAYS','SE_AREA_TITLE','EN','Tennessee Holidays'),(784,'TEXAS-HOLIDAYS','SE_AREA_TITLE','EN','Texas Holidays'),(785,'UTAH-HOLIDAYS','SE_AREA_TITLE','EN','Utah Holidays'),(786,'VERMONT-HOLIDAYS','SE_AREA_TITLE','EN','Vermont Holidays'),(787,'VIRGINIA-HOLIDAYS','SE_AREA_TITLE','EN','Virginia Holidays'),(788,'WASHINGTON-HOLIDAYS','SE_AREA_TITLE','EN','Washington Holidays'),(789,'WEST-VIRGINIA-HOLIDAYS','SE_AREA_TITLE','EN','West Virginia Holidays'),(790,'WISCONSIN-HOLIDAYS','SE_AREA_TITLE','EN','Wisconsin Holidays'),(791,'WYOMING-HOLIDAYS','SE_AREA_TITLE','EN','Wyoming Holidays'),(792,'BANK-OF-AMERICA-HOLIDAYS','SE_AREA_TITLE','EN','Bank Of America Holidays'),(793,'CAPITAL-ONE-BANK-HOLIDAYS','SE_AREA_TITLE','EN','Capital One Bank Holidays'),(794,'CHASE-BANK-HOLIDAYS','SE_AREA_TITLE','EN','Chase Bank Holidays'),(795,'CITIBANK-HOLIDAYS','SE_AREA_TITLE','EN','Citibank Holidays'),(796,'HSBC-BANK-HOLIDAYS','SE_AREA_TITLE','EN','Hsbc Bank Holidays'),(797,'WELLS-FARGO-BANK-HOLIDAYS','SE_AREA_TITLE','EN','Wells Fargo Bank Holidays'),(798,'SUNTRUST-BANK-HOLIDAYS','SE_AREA_TITLE','EN','Suntrust Bank Holidays'),(799,'HSBCB-BANK-HOLIDAYS','SE_AREA_TITLE','EN','Hsbcb Bank Holidays'),(859,'ASX-HOLIDAYS','SE_AREA_TITLE','EN','ASX Holidays'),(860,'BSE-HOLIDAYS','SE_AREA_TITLE','EN','BSE Holidays'),(861,'DAX-HOLIDAYS','SE_AREA_TITLE','EN','DAX Holidays'),(862,'EURONEXT-HOLIDAYS','SE_AREA_TITLE','EN','EURONEXT Hoidays'),(863,'LSE-HOLIDAYS','SE_AREA_TITLE','EN','LSE Hoidays'),(864,'MCX-HOLIDAYS','SE_AREA_TITLE','EN','MCX Holidays'),(865,'NASDAQ-HOLIDAYS','SE_AREA_TITLE','EN','NASDAQ Holidays'),(866,'NSE-HOLIDAYS','SE_AREA_TITLE','EN','NSE Holidays'),(867,'NYSE-HOLIDAYS','SE_AREA_TITLE','EN','NYSE Holidays'),(868,'TSX-HOLIDAYS','SE_AREA_TITLE','EN','TSX Holidays'),(875,'POST-OFFICE-HOLIDAYS','SE_AREA_TITLE','EN','Post Office Holidays'),(877,'USPS-HOLIDAYS','SE_AREA_TITLE','EN','USPS Holidays'),(878,'DAILY-PLANNER-TEMPLATES','SE_AREA_TITLE','EN','Daily Planner Templates'),(879,'MONTHLY-CALENDAR-TEMPLATES','SE_AREA_TITLE','EN','Monthly Calendar Templates'),(880,'QUARTERLY-CALENDAR-TEMPLATES','SE_AREA_TITLE','EN','Quarterly Calendar Templates'),(881,'YEARLY-CALENDAR-TEMPLATES','SE_AREA_TITLE','EN','Yearly Calendar Templates'),(882,'GENERIC','HOLIDAYS_CATEGORIES','EN','Holidays Categories'),(883,'GENERIC','FACTS','EN','Facts'),(884,'GENERIC','THIS_YEAR','EN','This Year'),(885,'GENERIC','LAST_YEAR','EN','Last Year'),(886,'GENERIC','NEXT_YEAR','EN','Next Year'),(887,'GENERIC','TYPE','EN','Type'),(888,'GENERIC','OBSERVENCE','EN','Observence'),(889,'PASSOVER-FIRST-DAY','SE_AREA_TITLE','EN','Passover First Day'),(890,'PASSOVER-LAST-DAY','SE_AREA_TITLE','EN','Passover Last Day'),(891,'SHUSHAN-PURIM','SE_AREA_TITLE','EN','Shushan Purim'),(892,'SHUSHAN-PURIM','SE_TITLE','EN','~{SE_YEAR}~ Shushan Purim - Jewish Holidays  - ~{SE_BRAND}~'),(893,'SHUSHAN-PURIM','SE_DESCRIPTION','EN','Shushan Purim is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Shushan Purim in ~{SE_YEAR}~.'),(894,'SEWARDS-DAY','SE_AREA_TITLE','EN','Seward\'s Day'),(896,'SEWARDS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Sewards Day  - Alaska State Holidays  - ~{SE_BRAND}~'),(898,'SEWARDS-PURIM','SE_DESCRIPTION','EN','Full list of ~{SE_YEAR}~ federal and regional public holidays and festivals observed in Alaska, USA. Check upcoming Alaska holidays and plan accordingly.'),(899,'CHAVEZ-DAY','SE_TITLE','EN','~{SE_YEAR}~ Cesar Chavez Day - ~{SE_BRAND}~'),(917,'CHAVEZ-DAY','SE_DESCRIPTION','EN','Chavez Day is a US federal memorial holiday, declared in 2014 by President Barack Obama to mark the birth and legacy of civil rights & labor movement activist Chavez.'),(920,'CHAVEZ-DAY','SE_AREA_TITLE','EN','Cesar Chavez Day'),(923,'ROSA-PARKS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Mrs. Rosa L. Parks Day(Commemoration Only) - ~{SE_BRAND}~'),(924,'JEFFERSON-DAVIS-BIRTHDAY','SE_TITLE','EN','~{SE_YEAR}~ Jefferson Davis\' Birthday - ~{SE_BRAND}~'),(925,'CONFEDERATE-MEMORIAL-DAY','SE_TITLE','EN','~{SE_YEAR}~ Confederate Memorial Day - ~{SE_BRAND}~'),(926,'MARDI-GRAS','SE_TITLE','EN','~{SE_YEAR}~ Mardi Gras - ~{SE_BRAND}~'),(927,'ALASKA-DAY','SE_TITLE','EN','~{SE_YEAR}~ Alaska Day - ~{SE_BRAND}~'),(928,'GEORGE-WASHINGTON-DAY','SE_TITLE','EN','~{SE_YEAR}~ George Washington\'s Birthday - ~{SE_BRAND}~'),(929,'LINCOLNS-BIRTHDAY','SE_TITLE','EN','~{SE_YEAR}~ Lincoln\'s Birthday - ~{SE_BRAND}~'),(930,'ELECTION-DAY','SE_TITLE','EN','~{SE_YEAR}~ Election Day - ~{SE_BRAND}~'),(931,'WASHINGTON-DAY','SE_TITLE','EN','~{SE_YEAR}~ Washington Birthday - ~{SE_BRAND}~'),(932,'STATE-HOLIDAY','SE_TITLE','EN','~{SE_YEAR}~ State Holiday - ~{SE_BRAND}~'),(933,'KUHIO-DAY','SE_TITLE','EN','~{SE_YEAR}~ Prince Jonah Kuhio Kalanianaole Day - ~{SE_BRAND}~'),(934,'KAMEHAMEHA-DAY','SE_TITLE','EN','~{SE_YEAR}~ King Kamehameha I Day - ~{SE_BRAND}~'),(935,'STATEHOOD-DAY-HAWAII','SE_TITLE','EN','~{SE_YEAR}~ Statehood Day - ~{SE_BRAND}~'),(936,'PRIMARY-ELECTION-DAY','SE_TITLE','EN','~{SE_YEAR}~ Primary Election Day - ~{SE_BRAND}~'),(937,'GENERAL-ELECTION-DAY','SE_TITLE','EN','~{SE_YEAR}~ General Election Day - ~{SE_BRAND}~'),(938,'PATRIOT-DAY','SE_TITLE','EN','~{SE_YEAR}~ Patriot\'s Day - ~{SE_BRAND}~'),(939,'AMERICAN-INDIAN-HERITAGE-DAY','SE_TITLE','EN','~{SE_YEAR}~ American Indian Heritage Day - ~{SE_BRAND}~'),(940,'EMANCIPATION-DAY','SE_TITLE','EN','~{SE_YEAR}~ Emancipation Day - ~{SE_BRAND}~'),(941,'TRUMAN-DAY','SE_TITLE','EN','~{SE_YEAR}~ Truman Day - ~{SE_BRAND}~'),(942,'ARBOR-DAY','SE_TITLE','EN','~{SE_YEAR}~ Arbor Day - ~{SE_BRAND}~'),(943,'NEVADA-DAY','SE_TITLE','EN','~{SE_YEAR}~ Nevada Day - ~{SE_BRAND}~'),(944,'VICTORY-DAY','SE_TITLE','EN','~{SE_YEAR}~ Victory Day - ~{SE_BRAND}~'),(945,'PIONEER-DAY','SE_TITLE','EN','~{SE_YEAR}~ Pioneer Day - ~{SE_BRAND}~'),(946,'TOWN-MEETING-DAY','SE_TITLE','EN','~{SE_YEAR}~ Town Meeting Day - ~{SE_BRAND}~'),(947,'BENNINGTON-DAY','SE_TITLE','EN','~{SE_YEAR}~ Bennington Battle Day - ~{SE_BRAND}~'),(948,'LEE-JACK-DAY','SE_TITLE','EN','~{SE_YEAR}~ Lee-Jackson Day - ~{SE_BRAND}~'),(949,'HERITAGE-DAY','SE_TITLE','EN','~{SE_YEAR}~ Native American Heritage Day - ~{SE_BRAND}~'),(954,'ROSA-PARKS-DAY','SE_DESCRIPTION','EN','Rosa Parks Day is an American holiday, founded by the California State Legislature in honor of civil rights leader Rosa Parks and first celebrated in 2000.'),(955,'JEFFERSON-DAVIS-BIRTHDAY','SE_DESCRIPTION','EN','Jefferson Davis Birthday is celebrated in Alabama with an official state holiday. He was a Confederate leader during the American Civil War in the 1860s.'),(956,'CONFEDERATE-MEMORIAL-DAY','SE_DESCRIPTION','EN','Confederate Memorial Day is a state holiday, and it provides an opportunity to honor and remember soldiers killed or wounded during the American Civil War during 1860.'),(957,'MARDI-GRAS','SE_DESCRIPTION','EN','Mardi Gas is a Carnival celebration, which begins on the Christian Feast of the Epiphany and concludes on the day before Ash Wednesday, which is known as Shrove Tuesday.'),(958,'SEWARDS-DAY','SE_DESCRIPTION','EN','Seward\'s day falls on the last Monday in March and commemorates the signing of the Alaska Purchase Agreement on March 30, 1867. It is a legal holiday in Alaska state.'),(959,'ALASKA-DAY','SE_DESCRIPTION','EN','Alaska Day is observed on October 18 and a legal holiday in Alaska State of the US. On this day, Russia formally transferred Alaska Territory to the United States.'),(960,'GEORGE-WASHINGTON-DAY','SE_DESCRIPTION','EN','Washington\'s Birthday commemorates on the third Monday of February in respect of George Washington, the first President of the US. It is a federal holiday in the US.'),(961,'LINCOLNS-BIRTHDAY','SE_DESCRIPTION','EN','Lincoln\'s Birthday is observed on the anniversary of Abraham Lincoln\'s birth on February 12, 1809. It is a legal, public holiday in some US states.'),(962,'ELECTION-DAY','SE_DESCRIPTION','EN','Election Day is the annual day set by law in the United States for the general elections of federal public officials. '),(963,'WASHINGTON-DAY','SE_DESCRIPTION','EN','George Washington\'s Birthday is a federal holiday in the US. It marks on the third Monday of February in respect of George Washington, the first President of the US. '),(964,'STATE-HOLIDAY','SE_DESCRIPTION','EN','State holiday is celebrated on ~{SE_DATE}~  in the Georgia state of  the United States. '),(965,'KUHIO-DAY','SE_DESCRIPTION','EN','Prince Kuhio Day is celebrated annually on March 26, to mark the birth of Prince Jonah Kuhio Kalanianaole. It is an official holiday in the Hawaii state of the US.'),(966,'KAMEHAMEHA-DAY','SE_DESCRIPTION','EN','King Kamehameha I Day is celebrated on June 11 as a public holiday in Hawaii state. It honors Kamehameha the Great, who established the unified Kingdom of Hawaii.'),(967,'STATEHOOD-DAY-HAWAII','SE_DESCRIPTION','EN','Statehood Day is a legal holiday and celebrated on the third Friday in August every year to memorize the anniversary of the state\'s 1959 admission to the Union.'),(968,'PRIMARY-ELECTION-DAY','SE_DESCRIPTION','EN','Primary election is a process by which voters can indicate their choice for their party\'s candidate in the upcoming elections.'),(969,'GENERAL-ELECTION-DAY','SE_DESCRIPTION','EN','A general election is a political voting election where all or most of the members of a given legislative body are usually elected.'),(970,'PATRIOT-DAY','SE_DESCRIPTION','EN','Patriots Day is an annual event, ceremonially celebrated as several state holidays, in memory of the Battle of Lexington and Concord, and the Battle of Menotomy.'),(971,'AMERICAN-INDIAN-HERITAGE-DAY','SE_DESCRIPTION','EN','American Indian Heritage Day is a civil holiday observed to honors native Americans in the United States after the Day of Thanksgiving.'),(972,'EMANCIPATION-DAY','SE_DESCRIPTION','EN','Emancipation Day is celebrated in many former European colonies of the Caribbean and area of the US to commemorate the emancipation of enslaved people of African descent.'),(973,'TRUMAN-DAY','SE_DESCRIPTION','EN','Truman Day is a memorial holiday to celebrate the birth of Harry S. Truman, the 33rd President of the US. It is celebrated on May 8 in Missouri as a state holiday.'),(974,'ARBOR-DAY','SE_DESCRIPTION','EN','Arbor Day is a festival in which people and groups are encouraged to plant trees. Usually, it observed in the spring, and the date varies depending on climate.'),(975,'NEVADA-DAY','SE_DESCRIPTION','EN','Nevada Day is a legal holiday in the Nevada state of the United States. It celebrated the state\'s admission into the Union on October 31, 1864.'),(976,'VICTORY-DAY','SE_DESCRIPTION','EN','Victory Day is a holiday observed on the second Monday of August in the state of Rhode Island. It reminded of the end of the Second World War when Japan\'s surrender was announced.'),(977,'PIONEER-DAY','SE_DESCRIPTION','EN','Pioneer Day is an official holiday celebrated in the Utah state on July 24 and commemorates the entry of Brigham Young and the first group of Mormon pioneers.'),(978,'TOWN-MEETING-DAY','SE_DESCRIPTION','EN','A town meeting is a form of direct democratic governance in which all members of a community come together to form policy and budgets for local government.'),(979,'BENNINGTON-DAY','SE_DESCRIPTION','EN','Bennington Battle Day is a state holiday for Vermont, commemorating the American victory over the British Army at the Battle of Bennington.'),(980,'LEE-JACK-DAY','SE_DESCRIPTION','EN','Lee-Jackson Day is a state holiday in the US Commonwealth of Virginia, in memory of Confederate generals Robert E. Lee and Thomas J. Stonewell Jackson.'),(981,'HERITAGE-DAY','SE_DESCRIPTION','EN','Native American Heritage Day is a state holiday commemorated to honors native Americans in the United States after the Day of Thanksgiving. '),(985,'ROSA-PARKS-DAY','SE_AREA_TITLE','EN','Mrs. Rosa L. Parks Day(Commemoration Only)'),(986,'JEFFERSON-DAVIS-BIRTHDAY','SE_AREA_TITLE','EN','Jefferson Davis Birthday'),(987,'CONFEDERATE-MEMORIAL-DAY','SE_AREA_TITLE','EN','Confederate Memorial Day'),(988,'MARDI-GRAS','SE_AREA_TITLE','EN','Mardi Gras'),(989,'ALASKA-DAY','SE_AREA_TITLE','EN','Alaska Day'),(990,'GEORGE-WASHINGTON-DAY','SE_AREA_TITLE','EN','George Washington\'s Birthday'),(991,'LINCOLNS-BIRTHDAY','SE_AREA_TITLE','EN','Lincoln\'s Birthday'),(992,'ELECTION-DAY','SE_AREA_TITLE','EN','Election Day'),(993,'WASHINGTON-DAY','SE_AREA_TITLE','EN','Washington Birthday'),(994,'STATE-HOLIDAY','SE_AREA_TITLE','EN','State Holiday'),(995,'KUHIO-DAY','SE_AREA_TITLE','EN','Prince Jonah Kuhio Kalanianaole Day'),(996,'KAMEHAMEHA-DAY','SE_AREA_TITLE','EN','King Kamehameha I Day'),(997,'STATEHOOD-DAY-HAWAII','SE_AREA_TITLE','EN','Statehood Day'),(998,'PRIMARY-ELECTION-DAY','SE_AREA_TITLE','EN','Primary Election Day'),(999,'GENERAL-ELECTION-DAY','SE_AREA_TITLE','EN','General Election Day'),(1000,'PATRIOT-DAY','SE_AREA_TITLE','EN','Patriot\'s Day'),(1001,'AMERICAN-INDIAN-HERITAGE-DAY','SE_AREA_TITLE','EN','American Indian Heritage Day'),(1002,'EMANCIPATION-DAY','SE_AREA_TITLE','EN','Emancipation Day'),(1003,'TRUMAN-DAY','SE_AREA_TITLE','EN','Truman Day'),(1004,'ARBOR-DAY','SE_AREA_TITLE','EN','Arbor Day'),(1005,'NEVADA-DAY','SE_AREA_TITLE','EN','Nevada Day'),(1006,'VICTORY-DAY','SE_AREA_TITLE','EN','Victory Day'),(1007,'PIONEER-DAY','SE_AREA_TITLE','EN','Pioneer Day'),(1008,'TOWN-MEETING-DAY','SE_AREA_TITLE','EN','Town Meeting Day'),(1009,'BENNINGTON-DAY','SE_AREA_TITLE','EN','Bennington Battle Day'),(1010,'LEE-JACK-DAY','SE_AREA_TITLE','EN','Lee-Jackson Day'),(1011,'HERITAGE-DAY','SE_AREA_TITLE','EN','Native American Heritage Day'),(1016,'HOLIKA-DAHAN','SE_AREA_TITLE','EN','Holika Dahan'),(1017,'HOLIKA-DAHAN','SE_DESCRIPTION','EN','Holi is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Holika Dhan in ~{SE_YEAR}~.'),(1018,'HOLIKA-DAHAN','SE_TITLE','EN','~{SE_YEAR}~ Holika Dahan  - Hindu Festival - ~{SE_BRAND}~'),(1019,'GENERIC','JANUARY','EN','January'),(1020,'GENERIC','FEBRUARY','EN','Febraury'),(1021,'GENERIC','MARCH','EN','March'),(1022,'GENERIC','APRIL','EN','April'),(1023,'GENERIC','MAY','EN','May'),(1024,'GENERIC','JUNE','EN','June'),(1025,'GENERIC','JULY','EN','July'),(1026,'GENERIC','AUGUST','EN','August'),(1027,'GENERIC','SEPTEMBER','EN','September'),(1028,'GENERIC','OCTOBER','EN','October'),(1029,'GENERIC','NOVEMBER','EN','November'),(1030,'GENERIC','DECEMBER','EN','December'),(1031,'GENERIC','JAN','EN','Jan'),(1032,'GENERIC','FEB','EN','Feb'),(1033,'GENERIC','MAR','EN','Mar'),(1034,'GENERIC','APR','EN','Apr'),(1036,'GENERIC','JUN','EN','Jun'),(1037,'GENERIC','JUL','EN','Jul'),(1038,'GENERIC','AUG','EN','Aug'),(1039,'GENERIC','SEP','EN','Sep'),(1040,'GENERIC','OCT','EN','Oct'),(1041,'GENERIC','NOV','EN','Nov'),(1042,'GENERIC','DEC','EN','Dec'),(1046,'GENERIC','SUNDAY','EN','Sunday'),(1047,'GENERIC','SATURDAY','EN','Saturday'),(1049,'GENERIC','MONDAY','EN','Monday'),(1050,'GENERIC','TUESDAY','EN','Tuesday'),(1051,'GENERIC','WEDNESDAY','EN','Wednesday'),(1052,'GENERIC','THURSDAY','EN','Thursday'),(1053,'GENERIC','FRIDAY','EN','Friday'),(1055,'GENERIC','SU','EN','Su'),(1056,'GENERIC','SA','EN','Sa'),(1057,'GENERIC','MO','EN','Mo'),(1058,'GENERIC','TU','EN','Tu'),(1059,'GENERIC','WE','EN','We'),(1060,'GENERIC','TH','EN','Th'),(1061,'GENERIC','FR','EN','Fr'),(1062,'GENERIC','SUN','EN','Sun'),(1063,'GENERIC','SAT','EN','Sat'),(1064,'GENERIC','MON','EN','Mon'),(1065,'GENERIC','TUE','EN','Tue'),(1066,'GENERIC','WED','EN','Wed'),(1067,'GENERIC','THU','EN','Thu'),(1068,'GENERIC','FRI','EN','Fri'),(1069,'GENERIC','NO','EN','No'),(1070,'GENERIC','NATIONAL_HOLIDAYS','EN','National Holidays'),(1071,'GENERIC','REGIONAL_HOLIDAYS','EN','Regional Holidays'),(1072,'GENERIC','RELIGIOUS_HOLIDAYS','EN','Religious Holidays'),(1074,'EASTER-SUNDAY','SE_TITLE','EN','~{SE_YEAR}~ Easter Sunday- ~{SE_BRAND}~'),(1077,'EASTER-SUNDAY','SE_DESCRIPTION','EN','Many Christians commemorate the resurrection of Jesus Christ on Easter Sunday. It is considered as a rebirth of Christianity and falls on Sunday, ~{SE_DATE}~.'),(1080,'EASTER-SUNDAY','SE_AREA_TITLE','EN','Easter Sunday'),(1083,'GENERIC','YEAR','EN','Year'),(1084,'GENERIC','DATE','EN','Date'),(1085,'GENERIC','DAY','EN','Day'),(1086,'GENERIC','HOLIDAY','EN','Holiday'),(1087,'GENERIC','CALENDAR_HOLIDAYS_SERVICES','EN','&nbsp;CALENDAR HOLIDAYS SERVICES'),(1088,'GENERIC','BUDDHIST','EN','Buddhist'),(1089,'GENERIC','CHRISTIAN','EN','Christian'),(1091,'GENERIC','HINDU','EN','Hindu'),(1092,'GENERIC','ISLAM','EN','Islam'),(1093,'GENERIC','JEWISH','EN','Jewish'),(1094,'GENERIC','SIKH','EN','Sikh'),(1095,'BANK-HOLIDAYS','LIST_OF_REGION','EN','LIST OF REGION / STATE FOR'),(1096,'BANK-HOLIDAYS','BANK-OF-AMERICA','EN','Bank of America'),(1097,'BANK-HOLIDAYS','CAPITAL-ONE-BANK','EN','Capital One Bank'),(1098,'BANK-HOLIDAYS','CHASE-BANK','EN','Chase Bank'),(1099,'BANK-HOLIDAYS','CITIBANK','EN','Citibank'),(1100,'BANK-HOLIDAYS','HSBC-BANK','EN','HSBC Bank'),(1101,'BANK-HOLIDAYS','SUNTRUST-BANK','EN','Suntrust Bank'),(1102,'BANK-HOLIDAYS','WELLS-FARGO-BANK','EN','Wells Fargo Bank'),(1104,'MARKET-HOLIDAYS','ASX-ABBR','EN','The Australian Securities Exchange'),(1105,'MARKET-HOLIDAYS','BSE-ABBR','EN','The Bombay Stock Exchange'),(1106,'MARKET-HOLIDAYS','DAX-ABBR','EN','German Stock Exchange'),(1107,'MARKET-HOLIDAYS','EURONEXT-ABBR','EN','European New Exchange Technology'),(1108,'MARKET-HOLIDAYS','LSE-ABBR','EN','London Stock Exchange'),(1109,'MARKET-HOLIDAYS','NASDAQ-ABBR','EN','National Association of Securities Dealers Automated Quotations'),(1110,'MARKET-HOLIDAYS','NSE-ABBR','EN','National Stock Exchange'),(1111,'MARKET-HOLIDAYS','NYSE-ABBR','EN','The New York Stock Exchange'),(1112,'MARKET-HOLIDAYS','TSX-ABBR','EN','Toronto Stock Exchange'),(1113,'MARKET-HOLIDAYS','MCX-ABBR','EN','Multi Commodity Exchange'),(1114,'POST','HEADING','EN','WHEN ARE NEXT ~{AREA}~ HOLIDAYS'),(1115,'RELIGIOUS','HEADING','EN','WHEN ARE NEXT ~{AREA}~ HOLIDAYS'),(1116,'BANK-ORG','HEADING','EN','WHEN ARE NEXT ~{AREA}~ HOLIDAYS'),(1117,'BANK-GEO','HEADING','EN','WHEN ARE NEXT ~{AREA}~ HOLIDAYS'),(1118,'COUNTRY','HEADING','EN','WHEN ARE NEXT PUBLIC HOLIDAYS IN ~{AREA}~'),(1119,'STATE','HEADING','EN','WHEN ARE NEXT PUBLIC HOLIDAYS IN ~{AREA}~'),(1120,'MEMORIAL-DAY','SE_DESCRIPTION','EN','Memorial Day is marked on the last Monday of May in the United States. On this day, people pay tribute to all the soldiers who died while in the military service.'),(1121,'MEMORIAL-DAY','SE_TITLE','EN','~{SE_YEAR}~ Memorial Day - ~{SE_BRAND}~'),(1122,'MEMORIAL-DAY','SE_AREA_TITLE','EN','Memorial Day'),(1123,'ST-VALENTINES-DAY','SE_DESCRIPTION','EN','St Valentine\'s Day celebrates on February 14 every year in the USA. Pope Gelasius announced February 14 as St Valentine\'s Day at the end of the 5th century. '),(1124,'ST-VALENTINES-DAY','SE_TITLE','EN','~{SE_YEAR}~ St Valentines Day - ~{SE_BRAND}~'),(1125,'ST-VALENTINES-DAY','SE_AREA_TITLE','EN','St Valentines Day'),(1126,'PALM-SUNDAY','SE_AREA_TITLE','EN','Palm Sunday'),(1129,'PALM-SUNDAY','SE_TITLE','EN','~{SE_YEAR}~ Palm Sunday - ~{SE_BRAND}~'),(1132,'PALM-SUNDAY','SE_DESCRIPTION','EN','Palm Sunday is a Christian feast that falls on the Sunday before Easter. The feast remembers Jesus\' triumphal entry into Jerusalem.'),(1135,'MAUNDY-HOLY-THURSDAY','SE_TITLE','EN','~{SE_YEAR}~ Maundy Holy Thursday - ~{SE_BRAND}~'),(1137,'MAUNDY-HOLY-THURSDAY','SE_DESCRIPTION','EN','MaundyThursday is the holy day held on the Thursday before Easter. It celebrates the washing of the feet and final feasts of Jesus Christ with the apostles.'),(1138,'MAUNDY-HOLY-THURSDAY','SE_AREA_TITLE','EN','Maundy Holy Thursday'),(1139,'ASCENSION-OF-JESUS','SE_DESCRIPTION','EN','Ascension of Jesus is observed on the 40th day of Easter. It is a Christian holiday that commemorates the arrival of Jesus Christ to heaven, according to Christianity.'),(1140,'ASCENSION-OF-JESUS','SE_TITLE','EN','~{SE_YEAR}~ Ascension of Jesus - A Christian Festivals  - ~{SE_BRAND}~'),(1141,'ASCENSION-OF-JESUS','SE_AREA_TITLE','EN','Ascension of Jesus'),(1142,'THANKSGIVING-USA','SE_DESCRIPTION','EN','Thanksgiving (USA) owes its origin to the harvest festival. Usually, Americans give thanks to God for their autumn harvest and every other success they have obtained in the year.'),(1143,'THANKSGIVING-USA','SE_AREA_TITLE','EN','Thanksgiving (USA)'),(1144,'THANKSGIVING-USA','SE_TITLE','EN',' ~{SE_YEAR}~ Thanksgiving (USA)  - ~{SE_BRAND}~'),(1145,'CHRISTMAS-EVE','SE_DESCRIPTION','EN','Christmas Eve is a Christian holiday admiring the birth of Jesus. Christians believe that Jesus is the son of God, the Messiah sent from Heaven to save the world. '),(1146,'CHRISTMAS-EVE','SE_TITLE','EN','~{SE_YEAR}~ Christmas Eve Holiday - ~{SE_BRAND}~'),(1147,'CHRISTMAS','SE_AREA_TITLE','EN','Christmas'),(1148,'VESAK-DAY','SE_AREA_TITLE','EN','Vesak Day'),(1149,'BAPTISM-OF-THE-LORD','SE_AREA_TITLE','EN','Baptism Of The Lord'),(1150,'MAUNDY-THURSDAY','SE_AREA_TITLE','EN','Maundy Holy Thursday'),(1151,'HALLOWEEN','SE_AREA_TITLE','EN','Halloween'),(1152,'UGADI-GUDI-PADWA-TELUGU-NEW-YEAR','SE_AREA_TITLE','EN','Ugadi Padwa Telugu New Year'),(1153,'UGADI','SE_TITLE','EN','~{SE_YEAR}~ Ugadi  - Hindu Festival - ~{SE_BRAND}~'),(1154,'UGADI','SE_DESCRIPTION','EN','Ugadi is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Ugadi Telugu New Year in ~{SE_YEAR}~.'),(1155,'UGADI','SE_AREA_TITLE','EN','Ugadi'),(1156,'MAKAR-SANKRANTI','SE_AREA_TITLE','EN','Makarasankranti'),(1157,'MAKAR-SANKRANTI','SE_DESCRIPTION','EN','Makarasankranti is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Pongal in ~{SE_YEAR}~.'),(1159,'MAKARSANKRANTI-PONGAL','SE_AREA_TITLE','EN','Makarasankranti'),(1160,'VAISAKHI-BAISAKHI-VISHU','SE_AREA_TITLE','EN','Vaisakhi / Baisakhi / Vishu'),(1161,'BENGALI-NEW-YEAR-BIHU','SE_AREA_TITLE','EN','Bihu Bengali New Year'),(1165,'PURI-RATH-YATRA','SE_AREA_TITLE','EN','Puri Rath Yatra'),(1166,'KRISHNA-JANMASHTAMI','SE_AREA_TITLE','EN','Krishna Janmashtami'),(1167,'NAVARATRI-BEGINS','SE_AREA_TITLE','EN','Navaratri Begins'),(1168,'NAVARATRI-ENDS-MAHA-NAVAMI','SE_AREA_TITLE','EN','Navaratri ends / Maha Navami'),(1169,'KARWA-CHAUTH','SE_AREA_TITLE','EN','Karva Chauth'),(1170,'DHAN-TERAS','SE_AREA_TITLE','EN','Dhanteras'),(1171,'MAHA-SHIVARATRI','SE_AREA_TITLE','EN','Maha Shivaratri'),(1172,'EID-AL-FITR-END-OF-RAMADAN','SE_AREA_TITLE','EN','End of Ramadan'),(1174,'EID-AL-ADHA','SE_AREA_TITLE','EN','Eid al-Adha'),(1175,'EID-UL-ADHA','SE_AREA_TITLE','EN','Bakri Id / Eid ul-Adha'),(1176,'HIJRA-ISLAMIC-NEW-YEAR','SE_AREA_TITLE','EN','Hijra - Islamic New Year'),(1177,'DAY-OF-ASHURA-MUHARRAM','SE_AREA_TITLE','EN','Day of Ashura Muharram'),(1178,'MILAD-UN-NABI-SHIA','SE_AREA_TITLE','EN','Milad un Nabi (Shia)'),(1179,'EID-E-MILAD','SE_AREA_TITLE','EN','Eid-e-Milad'),(1180,'LAG-BAOMER','SE_AREA_TITLE','EN','Lag Baomer'),(1181,'SHAVUOT-1ST-DAY','SE_AREA_TITLE','EN','Shavuot 1st Day'),(1182,'ROSH-HASHANAH-STARTS','SE_AREA_TITLE','EN','Rosh HaShana Starts'),(1183,'ROSH-HASHANAH-ENDS','SE_AREA_TITLE','EN','Rosh HaShana Ends'),(1184,'SUKKOT-STARTS','SE_AREA_TITLE','EN','Sukkot Starts'),(1186,'SUKKOT-END','SE_AREA_TITLE','EN','Sukkot End'),(1187,'HANUKKAH-STARTS','SE_AREA_TITLE','EN','Hanukkah Starts'),(1188,'HANUKKAH-ENDS','SE_AREA_TITLE','EN','Hanukkah Ends'),(1189,'WASHINGTONS-DAY','SE_AREA_TITLE','EN','Washington\'s Birthday'),(1190,'GEORGE-WASHINGTON','SE_AREA_TITLE','EN','President\'s Day (George Washington\'s Birthday)'),(1191,'FOURTH-DAY-OF-JULY','SE_AREA_TITLE','EN','Independence Day'),(1192,'THANKSGIVING-HOLIDAY','SE_AREA_TITLE','EN','Thanksgiving Holiday'),(1193,'WASHINGTONS-BIRTHDAY','SE_AREA_TITLE','EN','Washington Birthday'),(1194,'KUHIO-KALANIANAOLE-DAY','SE_AREA_TITLE','EN','Prince Jonah Kuhio Kalanianaole Day'),(1195,'KING-KAMEHAMEHA-DAY','SE_AREA_TITLE','EN','King Kamehameha I Day'),(1196,'LINCOLNS-DAY','SE_AREA_TITLE','EN','Lincoln\'s Birthday'),(1197,'PRESEDENTIAL-ELECTION','SE_AREA_TITLE','EN','Presidential Election'),(1198,'THANKSGIVING-FRIDAY','SE_AREA_TITLE','EN','Thanksgiving Friday'),(1199,'NEW-YEARS-EVE','SE_AREA_TITLE','EN','New Year\'s Eve'),(1200,'INDIGENOUS-PEOPLE-DAY','SE_AREA_TITLE','EN','Indigenous Peoples\' Day'),(1201,'AMERICANS-DAY','SE_AREA_TITLE','EN','Columbus Day'),(1202,'WEST-VIRGINIA-DAY','SE_AREA_TITLE','EN','West Virginia Day'),(1203,'AMERICAN-HERITAGE-DAY','SE_AREA_TITLE','EN','Native American Heritage Day'),(1204,'LEE-JACKSON-DAY','SE_AREA_TITLE','EN','Lee-Jackson Day'),(1206,'BENNINGTON-BATTLE-DAY','SE_AREA_TITLE','EN','Bennington Battle Day'),(1207,'RELIGIOUS','SUB-HEADING','EN','~{AREA}~ Festivals and Holidays in ~{SE_YEAR}~'),(1208,'BANK-ORG','SUB-HEADING','EN','~{AREA}~ HOLIDAYS IN ~{SE_YEAR}~'),(1209,'BANK-GEO','SUB-HEADING','EN','~{AREA}~ HOLIDAYS IN ~{SE_YEAR}~'),(1210,'STATE','SUB-HEADING','EN','NATIONAL AND REGIONAL PUBLIC HOLIDAYS IN ~{AREA}~ ~{SE_YEAR}~'),(1211,'POST','SUB-HEADING','EN','~{AREA}~ HOLIDAYS LIST ~{SE_YEAR}~'),(1212,'COUNTRY','SUB-HEADING','EN','~{AREA}~ HOLIDAYS LIST ~{SE_YEAR}~'),(1213,'MARKET','SUB-HEADING','EN','~{AREA}~ HOLIDAY SCHEDULE ~{SE_YEAR}~'),(1214,'MARKET','HEADING','EN','WHEN ARE NEXT ~{AREA}~'),(1215,'RAM-NAVAMI','SE_AREA_TITLE','EN','Ramanavami'),(1216,'MAHAVIR-JAYANTI','SE_TITLE','EN','~{SE_YEAR}~ Mahavir Jayanti - ~{SE_BRAND}~'),(1217,'MAHAVIR-JAYANTI','SE_AREA_TITLE','EN','Mahavir Jayanthi'),(1218,'MAHAVIR-JAYANTI','SE_DESCRIPTION','EN','Mahavir Jayanti is most important religious festivals in Jainism. It commemorates the birth of Mahavira, the twenty-fourth and last Tirthankara of the present Avasarpari.'),(1219,'REPUBLIC-DAY','SE_TITLE','EN','~{SE_YEAR}~ Republic Day - ~{SE_BRAND}~'),(1220,'REPUBLIC-DAY','SE_AREA_TITLE','EN','Republic Day'),(1221,'REPUBLIC-DAY','SE_DESCRIPTION','EN','Republic Day is a public holiday in India. It honors the date on which the Constitution of India came into force on January 26, 1950.'),(1222,'AMBEDKAR-JAYANTI','SE_TITLE','EN','~{SE_YEAR}~ Ambedkar Jayanti - ~{SE_BRAND}~'),(1223,'AMBEDKAR-JAYANTI','SE_AREA_TITLE','EN','Ambedkar Jayanti'),(1225,'AMBEDKAR-JAYANTI','SE_DESCRIPTION','EN','Ambedkar Jayanti is a festival observed on ~{SE_DATE}~ to commemorate the memory of B. R. Ambedkar. Since 2015, it has been noted as a public holiday throughout India.'),(1226,'MAHARASHTRA-DIN','SE_TITLE','EN','~{SE_YEAR} ~Maharashra Din - ~{SE_BRAND}~'),(1228,'MAHARASHTRA-DIN','SE_DESCRIPTION','EN','Maharashtra Din is a state holiday in the Indian state of Maharashtra, commemorating the formation of the state of Maharashtra from the division of the Bombay State on May 1, 1960.'),(1229,'MAHARASHTRA-DIN','SE_AREA_TITLE','EN','Maharashtra Din'),(1230,'HARI-RAYA-PUASA','SE_DESCRIPTION','EN','Hari Raya Puasa is a famous religious festival celebrated by Muslims. This marks the end of Ramadan, which is a month of fasting.'),(1231,'EID-AL-FITR','SE_AREA_TITLE','EN','EID AL FITR'),(1232,'HARI-RAYA-PUASA','SE_TITLE','EN','~{SE_YEAR}~ EID AL FITR - ~{SE_BRAND}~'),(1233,'HARI-RAYA-PUASA','SE_AREA_TITLE','EN','EID AL FITR'),(1234,'GANDHI-JAYANTI','SE_AREA_TITLE','EN','Gandhi Jayanti'),(1235,'GANDHI-JAYANTI','SE_DESCRIPTION','EN','Gandhi Jayanti is celebrated in India to mark the birth anniversary of Mahatma Gandhi. It is celebrated on ~{SE_DATE}~, and it is one of the three national holidays of India.'),(1236,'GANDHI-JAYANTI','SE_TITLE','EN','~{SE_YEAR}~ Gandhi Jayanti - ~{SE_BRAND}~'),(1237,'GURU-NANAKS-BIRTHDAY','SE_AREA_TITLE','EN','Guru Nanak\'s Birthday'),(1239,'GURU-NANAKS-BIRTHDAY','SE_TITLE','EN','~{SE_YEAR}~ Guru Nanak\'s Birthday - ~{SE_BRAND}~'),(1240,'GURU-NANAKS-BIRTHDAY','SE_DESCRIPTION','EN','Guru Nanak Dev ji is also known as Baba Nanak, the founder of Sikhism and the first Sikh Guru. His birth is celebrated on the day of Kartik Purnima as Gurupurab worldwide.'),(1244,'BOXING-DAY','SE_TITLE','EN','~{SE_YEAR}~ Boxing Day - ~{SE_BRAND}~'),(1245,'CHRISTMAS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Christmas Day - ~{SE_BRAND}~'),(1246,'QUEENS-BIRTHDAY-QLD','SE_TITLE','EN','~{SE_YEAR}~ Queen\'s Birthday - ~{SE_BRAND}~'),(1247,'AUSTRALIA-DAY','SE_TITLE','EN','~{SE_YEAR}~ Australia Day OBS - ~{SE_BRAND}~'),(1251,'BOXING-DAY','SE_DESCRIPTION','EN','Boxing Day is a holiday celebrated the next day of Christmas Day and falls on ~{SE_DATE}~.'),(1252,'CHRISTMAS-DAY','SE_DESCRIPTION','EN','Christmas is a Christian holiday admiring the birth of Jesus. Christians believe that Jesus is the son of God, the Messiah sent from Heaven to save the world. '),(1253,'QUEENS-BIRTHDAY-QLD','SE_DESCRIPTION','EN','The Queen\'s birthday is an Australian popular holiday, but the date may different across states and territories. '),(1254,'AUSTRALIA-DAY','SE_DESCRIPTION','EN','Australia Day is the official federal day of Australia. It is celebrated on ~{SE_DATE}~ to mark the anniversary of the arrival of the first fleet of British ships.'),(1258,'BOXING-DAY','SE_AREA_TITLE','EN','Boxing Day'),(1259,'CHRISTMAS-DAY','SE_AREA_TITLE','EN','Christmas Day'),(1260,'QUEENS-BIRTHDAY-QLD','SE_AREA_TITLE','EN','Queen\'s Birthday'),(1261,'AUSTRALIA-DAY','SE_AREA_TITLE','EN','Australia Day OBS'),(1266,'QUEENS-BIRTHDAY','SE_AREA_TITLE','EN','Queen\'s Birthday'),(1267,'WHIT-MONDAY','SE_AREA_TITLE','EN','Whit Monday'),(1268,'PENTECOST-MONDAY','SE_DESCRIPTION','EN','Pentecost Monday is a Christian festival that commemorates the gift of the Holy Spirit. The day used to recognize as Whitsun, a Christian holiday. '),(1269,'PENTECOST-MONDAY','SE_AREA_TITLE','EN','Pentecost Monday'),(1270,'PENTECOST-MONDAY','SE_TITLE','EN','~{SE_YEAR}~  Pentecost Monday  - ~{SE_BRAND}~'),(1271,'EARLY-MAY-BANK-HOLIDAY','SE_AREA_TITLE','EN','Early May Bank Holiday'),(1272,'SUMMER-BANK-HOLIDAY','SE_AREA_TITLE','EN','Summer Bank Holiday'),(1273,'SPRING-BANK-HOLIDAY','SE_AREA_TITLE','EN','Spring Bank Holiday'),(1274,'EARLY-MAY-BANK-HOLIDAY','SE_DESCRIPTION','EN','Early May Bank Holiday is celebrated on the first Monday of May and it is a bank holiday. It is also known as May Day.'),(1275,'NEW-YEARS-EVE','SE_DESCRIPTION','EN','New Year\'s Eve is the last day of year falls on ~{SE_DATE}~  in the USA, follows the Gregorian calendar. Its not a public holiday in many countries.'),(1276,'SUMMER-BANK-HOLIDAY','SE_DESCRIPTION','EN','Summer Bank Holiday is celebrated on the last Monday of August. It marks the end of the summer holidays for many people who return to work or school in the autumn.'),(1277,'SPRING-BANK-HOLIDAY','SE_DESCRIPTION','EN','Spring Bank Holiday is a day job or school for people. It falls on the last Monday of May but used to be on the Monday after Pentecost.'),(1281,'EARLY-MAY-BANK-HOLIDAY','SE_TITLE','EN','~{SE_YEAR}~ Early May Bank Holiday - ~{SE_BRAND}~'),(1282,'NEW-YEARS-EVE','SE_TITLE','EN','~{SE_YEAR}~ New Year\'s Eve - ~{SE_BRAND}~'),(1283,'SUMMER-BANK-HOLIDAY','SE_TITLE','EN','~{SE_YEAR}~ Summer Bank Holiday - ~{SE_BRAND}~'),(1284,'SPRING-BANK-HOLIDAY','SE_TITLE','EN','~{SE_YEAR}~ Spring Bank Holiday - ~{SE_BRAND}~'),(1288,'MAY-SPRING-BANK-HOLIDAY','SE_AREA_TITLE','EN','May Spring Bank Holiday'),(1289,'THANKSGIVING','SE_AREA_TITLE','EN','Thanksgiving'),(1290,'FAMILY-DAY','SE_TITLE','EN','~{SE_YEAR}~ Family Day - ~{SE_BRAND}~'),(1291,'VICTORIA-DAY','SE_TITLE','EN','~{SE_YEAR}~ Victoria/Patriots\' Day - ~{SE_BRAND}~'),(1292,'CANADA-DAY','SE_TITLE','EN','~{SE_YEAR}~ Canada Day - ~{SE_BRAND}~'),(1293,'CIVIC-HOLIDAY','SE_TITLE','EN','~{SE_YEAR}~ Civic Holiday - ~{SE_BRAND}~'),(1294,'THANKSGIVING','SE_TITLE','EN','~{SE_YEAR}~ Thanksgiving - ~{SE_BRAND}~'),(1297,'FAMILY-DAY','SE_AREA_TITLE','EN','Family Day'),(1298,'VICTORIA-DAY','SE_AREA_TITLE','EN','Victoria/Patriots\' Day'),(1299,'CANADA-DAY','SE_AREA_TITLE','EN','Canada Day'),(1300,'CIVIC-HOLIDAY','SE_AREA_TITLE','EN','Civic Holiday'),(1304,'FAMILY-DAY','SE_DESCRIPTION','EN','Family day is a public holiday in many countries which falls on ~{SE_DATE}~.'),(1305,'VICTORIA-DAY','SE_DESCRIPTION','EN','Victoria Day is a national Canadian public holiday celebrated on last Monday to commemorate Queen Victoria\'s Birthday.'),(1306,'CANADA-DAY','SE_DESCRIPTION','EN','Canada Day is the governmental day of Canada. It celebrates the July 1, 1867 anniversary, the effective date of the Constitution Act, 1867, which united the three separate colonies. '),(1307,'CIVIC-HOLIDAY','SE_DESCRIPTION','EN','The Civic Holiday is the most widely used name for a public holiday commemorate on the first Monday in August in most of Canada.'),(1308,'THANKSGIVING','SE_DESCRIPTION','EN','Thanksgiving Day has its origin to the harvest festival. Usually, Americans give thanks to God for their autumn harvest and success they have made in the year.'),(1311,'PROVINCIAL-DAY','SE_AREA_TITLE','EN','Porivical Day'),(1312,'M-L-KING-DAY','SE_AREA_TITLE','EN','Martin Luther King Day'),(1319,'CALENDAR','SE_TITLE','EN','~{SE_YEAR}~ US Calendar Holidays - ~{SE_BRAND}~'),(1320,'CALENDAR','SE_DESCRIPTION','EN','Here we provide an online calendar to plan your business and personal issues and even check on long weekends when you can take a deserved vacation.'),(1321,'CALENDAR','SE_AREA_TITLE','EN','United States Holidays Calendar'),(1322,'GENERIC','DAYS_LEFT','EN','~{HOLIDAY}~ in ~{YEARKEY}~ is on the ~{DAYNAME}~, ~{DAY}~ of ~{MONTH}~ (~{DATEKEY}~)\n</br>~{HOLIDAY}~ is on the ~{DAY}~ day of ~{YEARKEY}~. There are ~{DAYS}~ days left in the year.'),(1324,'CONTACT-US','SE_AREA_TITLE','EN','Contact us'),(1325,'CONTACT-US','SE_TITLE','EN','Contact us @ ~{SE_BRAND}~'),(1326,'CONTACT-US','SE_DESCRIPTION','EN','In case of any queries of feedback please shoot us a email on contact@CalendarHolidays.net'),(1327,'CONTACT-US','TEXT','EN','Fill out and submit the form below and we will get back to you as soon as we can. Alternatively you may send email to contact [at] contact@calendarholidays.net for your query.'),(1328,'CONTACT-US','ERROR','EN','<p style=\'color:red\'>Oops! Your message was not sent at this time. Please try again later.</p>\n<p>You may send your query directly by email to contact@calendarholidays.net</p>'),(1329,'ABOUT','SE_TITLE','EN','More information about ~{SE_BRAND}~'),(1330,'ABOUT','SE_DESCRIPTION','EN','CalendarHolidays.net is a one stop portal/site for all the federal and public holidays in US.'),(1331,'ABOUT','SE_AREA_TITLE','EN','About us'),(1332,'CALENDAR-ALABAMA-HOLIDAYS','SE_AREA_TITLE','EN','Alabama Holidays'),(1333,'CALENDAR-ALASKA-HOLIDAYS','SE_AREA_TITLE','EN','Alaska Holidays'),(1334,'CALENDAR-ARIZONA-HOLIDAYS','SE_AREA_TITLE','EN','Arizona Holidays'),(1335,'CALENDAR-ARKANSAS-HOLIDAYS','SE_AREA_TITLE','EN','Arkansas Holidays'),(1336,'CALENDAR-CALIFORNIA-HOLIDAYS','SE_AREA_TITLE','EN','California Holidays'),(1337,'CALENDAR-COLORADO-HOLIDAYS','SE_AREA_TITLE','EN','Colorado Holidays'),(1338,'CALENDAR-CONNECTICUT-HOLIDAYS','SE_AREA_TITLE','EN','Connecticut Holidays'),(1339,'CALENDAR-DELAWARE-HOLIDAYS','SE_AREA_TITLE','EN','Delaware Holidays'),(1340,'CALENDAR-FLORIDA-HOLIDAYS','SE_AREA_TITLE','EN','Florida Holidays'),(1341,'CALENDAR-GEORGIA-HOLIDAYS','SE_AREA_TITLE','EN','Georgia Holidays'),(1342,'CALENDAR-HAWAII-HOLIDAYS','SE_AREA_TITLE','EN','Hawaii Holidays'),(1343,'CALENDAR-IDAHO-HOLIDAYS','SE_AREA_TITLE','EN','Idaho Holidays'),(1344,'CALENDAR-ILLINOIS-HOLIDAYS','SE_AREA_TITLE','EN','Illinois Holidays'),(1345,'CALENDAR-INDIANA-HOLIDAYS','SE_AREA_TITLE','EN','Indiana Holidays'),(1346,'CALENDAR-IOWA-HOLIDAYS','SE_AREA_TITLE','EN','Iowa Holidays'),(1347,'CALENDAR-KANSAS-HOLIDAYS','SE_AREA_TITLE','EN','Kansas Holidays'),(1348,'CALENDAR-KENTUCKY-HOLIDAYS','SE_AREA_TITLE','EN','Kentucky Holidays'),(1349,'CALENDAR-LOUISIANA-HOLIDAYS','SE_AREA_TITLE','EN','Louisiana Holidays'),(1350,'CALENDAR-MAINE-HOLIDAYS','SE_AREA_TITLE','EN','Maine Holidays'),(1351,'CALENDAR-MARYLAND-HOLIDAYS','SE_AREA_TITLE','EN','Maryland Holidays'),(1352,'CALENDAR-MASSACHUSETTS-HOLIDAYS','SE_AREA_TITLE','EN','Massachusetts Holidays'),(1353,'CALENDAR-MICHIGAN-HOLIDAYS','SE_AREA_TITLE','EN','Michigan Holidays'),(1354,'CALENDAR-MINNESOTA-HOLIDAYS','SE_AREA_TITLE','EN','Minnesota Holidays'),(1355,'CALENDAR-MISSISSIPPI-HOLIDAYS','SE_AREA_TITLE','EN','Mississippi Holidays'),(1356,'CALENDAR-MISSOURI-HOLIDAYS','SE_AREA_TITLE','EN','Missouri Holidays'),(1357,'CALENDAR-MONTANA-HOLIDAYS','SE_AREA_TITLE','EN','Montana Holidays'),(1358,'CALENDAR-NEBRASKA-HOLIDAYS','SE_AREA_TITLE','EN','Nebraska Holidays'),(1359,'CALENDAR-NEVADA-HOLIDAYS','SE_AREA_TITLE','EN','Nevada Holidays'),(1360,'CALENDAR-NEW-HAMPSHIRE-HOLIDAYS','SE_AREA_TITLE','EN','New Hampshire Holidays'),(1361,'CALENDAR-NEW-JERSEY-HOLIDAYS','SE_AREA_TITLE','EN','New Jersey Holidays'),(1362,'CALENDAR-NEW-MEXICO-HOLIDAYS','SE_AREA_TITLE','EN','New Mexico Holidays'),(1363,'CALENDAR-NEW-YORK-HOLIDAYS','SE_AREA_TITLE','EN','New York Holidays'),(1364,'CALENDAR-NORTH-CAROLINA-HOLIDAYS','SE_AREA_TITLE','EN','North Carolina Holidays'),(1365,'CALENDAR-NORTH-DAKOTA-HOLIDAYS','SE_AREA_TITLE','EN','North Dakota Holidays'),(1366,'CALENDAR-OHIO-HOLIDAYS','SE_AREA_TITLE','EN','Ohio Holidays'),(1367,'CALENDAR-OKLAHOMA-HOLIDAYS','SE_AREA_TITLE','EN','Oklahoma Holidays'),(1368,'CALENDAR-OREGON-HOLIDAYS','SE_AREA_TITLE','EN','Oregon Holidays'),(1369,'CALENDAR-PENNSYLVANIA-HOLIDAYS','SE_AREA_TITLE','EN','Pennsylvania Holidays'),(1370,'CALENDAR-RHODE-ISLAND-HOLIDAYS','SE_AREA_TITLE','EN','Rhode Island Holidays'),(1371,'CALENDAR-SOUTH-CAROLINA-HOLIDAYS','SE_AREA_TITLE','EN','South Carolina Holidays'),(1372,'CALENDAR-SOUTH-DAKOTA-HOLIDAYS','SE_AREA_TITLE','EN','South Dakota Holidays'),(1373,'CALENDAR-TENNESSEE-HOLIDAYS','SE_AREA_TITLE','EN','Tennessee Holidays'),(1374,'CALENDAR-TEXAS-HOLIDAYS','SE_AREA_TITLE','EN','Texas Holidays'),(1375,'CALENDAR-UTAH-HOLIDAYS','SE_AREA_TITLE','EN','Utah Holidays'),(1376,'CALENDAR-VERMONT-HOLIDAYS','SE_AREA_TITLE','EN','Vermont Holidays'),(1377,'CALENDAR-VIRGINIA-HOLIDAYS','SE_AREA_TITLE','EN','Virginia Holidays'),(1378,'CALENDAR-WASHINGTON-HOLIDAYS','SE_AREA_TITLE','EN','Washington Holidays'),(1379,'CALENDAR-WEST-VIRGINIA-HOLIDAYS','SE_AREA_TITLE','EN','West Virginia Holidays'),(1380,'CALENDAR-WISCONSIN-HOLIDAYS','SE_AREA_TITLE','EN','Wisconsin Holidays'),(1381,'CALENDAR-WYOMING-HOLIDAYS','SE_AREA_TITLE','EN','Wyoming Holidays'),(1395,'RETURN-DAY','SE_AREA_TITLE','EN','Return Day  (after 12:00 noon Sussex County)'),(1396,'INDEPENDENCE-DAY-HOLIDAY','SE_AREA_TITLE','EN','Independence Day Holiday'),(1397,'DAILY-PLANNER-TEMPLATES','SE_TITLE','EN','~{SE_YEAR}~ Daily Planner Template - ~{SE_BRAND}~'),(1398,'MONTHLY-CALENDAR-TEMPLATES','SE_TITLE','EN','~{SE_YEAR}~ Monthly Template - ~{SE_BRAND}~'),(1399,'YEARLY-CALENDAR-TEMPLATESS','SE_TITLE','EN','~{SE_YEAR}~ Yearly Template - ~{SE_BRAND}~'),(1401,'QUARTERLY-CALENDAR-TEMPLATES','SE_TITLE','EN','~{SE_YEAR}~ Quarterly Template - ~{SE_BRAND}~'),(1402,'DAILY-PLANNER-TEMPLATES','SE_DESCRIPTION','EN','Download FREE ~{SE_YEAR}~ daily schedule planner templates in Word, Excel, and PDF. Personalize these editable and printable daily planners as you like.'),(1403,'MONTHLY-CALENDAR-TEMPLATES','SE_DESCRIPTION','EN','Editable ~{SE_YEAR}~ Monthly templates with holidays available for free download. Choose and print Monthly Planner from great collections of templates.'),(1404,'QUARTERLY-CALENDAR-TEMPLATES','SE_DESCRIPTION','EN','The best collection of FREE printable quarterly calendar templates are available with US holidays. Customize to create your personalized ~{SE_YEAR}~ quarterly planner.'),(1405,'YEARLY-CALENDAR-TEMPLATESS','SE_DESCRIPTION','EN','Free printable ~{SE_YEAR}~ yearly calendar templates available in an editable format. Annual planners can be customized through the online calendar maker tool.'),(1406,'GENERIC','DOWNLOAD_EXCEL','EN','Download Excel'),(1407,'GENERIC','DOWNLOAD_PDF','EN','Download PDF'),(1408,'GENERIC','DOWNLOAD_IMAGE','EN','Download Image'),(1409,'GENERIC','DOWNLOAD_WORD','EN','Donwload Word'),(1410,'PRIVACY-POLICY','SE_AREA_TITLE','EN','Privacy Policy'),(1411,'PRIVACY-POLICY','SE_DESCRIPTION','EN','Your privacy is important to us. It is calendarholidays.net\'s policy to respect your privacy regarding any information we may collect from you across our website a nd other sites we own and operate.'),(1412,'PRIVACY-POLICY','SE_TITLE','EN','~{SE_YEAR}~ Privacy Policy - ~{SE_BRAND}~'),(1413,'TERMS-CONDITIONS','SE_AREA_TITLE','EN','Terms and Conditions'),(1414,'TERMS-CONDITIONS','SE_TITLE','EN','~{SE_YEAR}~ Terms and Conditions ~{SE_BRAND}~'),(1415,'TERMS-CONDITIONS','SE_DESCRIPTION','EN','Here are some terms and conditions of Calendarholidays.net which should be strictly follow. The materials contained in this website are protected by applicable copyright and trademark law.'),(1416,'ICS','SE_AREA_TITLE','EN','PLACEHOLDER'),(1417,'ICS','SE_TITLE','EN','Subscribe to ~{SE_YEAR}~  ~{SE_AREA}~  Calendar  - ~{SE_BRAND}~'),(1418,'ICS','SE_DESCRIPTION','EN','Subscribe our ~{SE_YEAR}~ ~{SE_AREA}~ Calendar. If you subscribe it, you can use on other applications. It helps you to manage your work.'),(1419,'NATIONAL-DONUT-DAY','SE_TITLE','EN','~{SE_YEAR}~ National Donut Day - ~{SE_BRAND}~'),(1420,'NATIONAL-DONUT-DAY','SE_DESCRIPTION','EN','National Doughnut Day is celebrated on the first Friday in June every year to honor the Salvation Army Lassies who served doughnuts to soldiers during WWI.'),(1421,'NATIONAL-DONUT-DAY','SE_AREA_TITLE','EN','National Donut Day'),(1422,'MAY-DAY','SE_AREA_TITLE','EN','May Day'),(1423,'MAY-DAY','SE_TITLE','EN','~{SE_YEAR}~ May Day - ~{SE_BRAND}~'),(1424,'MAY-DAY','SE_DESCRIPTION','EN','Early May Bank Holiday is celebrated on the first Monday of May as a bank holiday in the United Kingdom. It is known as may day in some countries of the UK.'),(1425,'NEW-YEARS-DAY-HOLIDAY','SE_AREA_TITLE','EN','New Years Day'),(1426,'DAILY-PLANNER-TEMPLATES','HEADER_TEXT','EN','Download these <strong>FREE printable ~{SE_YEAR}~ Daily planners</strong> available in portrait and landscape format. Personalize these ~{SE_YEAR}~ planners using the planner creator tool, as you like. These daily planners are available to download for free of cost to our esteemed users. Our daily planner works well with other writing applications such as LibreOffice, OpenOffice, and Google Docs. You can easily print these daily planners on A4, letter, and legal paper size.'),(1427,'DAILY-PLANNER-TEMPLATES','DAILY_TO_DO_LIST_PLANNER_TEXT','EN','~{SE_YEAR}~ daily planner helps you to organize the day to day work. Download this editable template, which includes different things like reminders, priority work, important calls, meetings of the day, and notes. All these templates’ attribute helps you to plan and organize your day. Customizable templates help to increase the productivity of your work. You can customize these templates through our online template maker tool, according to your requirements. Portrait layout template mostly preferred for business use. You can download these templates in Word, Excel, and PDF format and Print them on page styles like A4, Letter, Legal, and paper size like 8 1/2 x 11, 8.5 x 11, 8 x 10.'),(1428,'DAILY-PLANNER-TEMPLATES','ANNAS_DAILY_PLANNER_TEXT','EN','Download this ~{SE_YEAR}~ Anna\'s Daily Planner in Portrait layout. You can organize your daily life through a planner. You can keep track of your daily works through printable daily planners. This planner includes a daily routine of breakfast, lunch, dinner, Priority work for a day, quote of the day, and notes. The great thing about the planner is that there is plenty of room to write, and these go wonderfully for those who want a less cluttered look in their planners. You can customize this through our calendar maker tool. Download these daily templates and print them on A4, Letter, and Legal page style.'),(1429,'DAILY-PLANNER-TEMPLATES','POPULAR_PAGES_TEXT','EN','The planner helps you to organize work for a super busy days. There is some popular planner that you can customize them according to your requirements. You can download these templates for your personal and business use.'),(1430,'DAILY-PLANNER-TEMPLATES','DAILY_TO_DO_LIST_PLANNER_HEADING','EN','DAILY TO-DO LIST PLANNER'),(1431,'DAILY-PLANNER-TEMPLATES','ANNAS_DAILY_PLANNER_HEADING','EN','ANNA\'S DAILY PLANNER'),(1436,'MONTHLY-CALENDAR-TEMPLATES','HEADER_TEXT','EN','Download these <strong>FREE printable ~{SE_YEAR}~ monthly planner</strong> with the USA holidays and personalize it as you like. Personalize these ~{SE_YEAR}~ planners using the planner creator tool. These monthly planners are available to download for free of cost to our esteemed users. Our monthly planner works well with other writing applications such as OpenOffice, LibreOffice, and Google Docs. Planners are available in portrait and landscape format. You can easily print on A4, letter, and legal paper size.'),(1437,'MONTHLY-CALENDAR-TEMPLATES','MONTHLY_LARGE_BOXES_PRINTABLE_CALENDAR_HEADING','EN','MONTHLY LARGE BOXES PRINTABLE CALENDAR'),(1438,'MONTHLY-CALENDAR-TEMPLATES','MONTHLY_LARGE_BOXES_PRINTABLE_CALENDAR_TEXT','EN','Download these ~{SE_YEAR}~ classic templates with the US holidays from the Calendar holidays. This monthly calendar template is in landscape layout, and you can print these templates on A4, legal, and letter paper style. You can customize these large boxes templates through an online calendar tool, according to your requirements. All the calendar templates are both for personal and business use. You can download Word, Excel, and PDF files for this template. It also supports other writing applications like OpenOffice, LibreOffice, and Google Docs.'),(1439,'MONTHLY-CALENDAR-TEMPLATES','CLASSIC_MONTHLY_PRINTABLE_CALENDAR_HEADING','EN','CLASSIC MONTHLY PRINTABLE CALENDAR'),(1440,'MONTHLY-CALENDAR-TEMPLATES','CLASSIC_MONTHLY_PRINTABLE_CALENDAR_TEXT','EN','Download this ~{SE_YEAR}~ monthly calendar template in landscape layout. It includes US holidays with little space for notes. The editable templates can be customized using our calendar maker tool. Make your classic calendar according to your requirements. You can download these templates in Word, Excel, and PDF format and Print them on page styles like A4, Letter, Legal, and paper size like 8 1/2 x 11, 8.5 x 11, 8 x 10. These templates can easily customize for any particular year.'),(1441,'MONTHLY-CALENDAR-TEMPLATES','MONTHLY_CALENDAR_WITH_LARGE_SPACE_NOTES_HEADING','EN','MONTHLY CALENDAR WITH LARGE SPACE NOTES'),(1442,'MONTHLY-CALENDAR-TEMPLATES','MONTHLY_CALENDAR_WITH_LARGE_SPACE_NOTES_TEXT','EN','This monthly Calendar template has federal holidays for the year ~{SE_YEAR}~ in landscape layout. You can customize these editable templates with our calendar creator maker. It has a large space for notes where you can write about your work, events, or birthdays. You can edit and download these attractive templates for both personal and business use. This template is available in Word, Excel, and PDF files and supports other writing applications like OpenOffice, LibreOffice, and Google Docs.'),(1443,'MONTHLY-CALENDAR-TEMPLATES','FOUR_MONTH_EDITABLE_CALENDAR_HEADING','EN','FOUR-MONTH EDITABLE CALENDAR'),(1444,'MONTHLY-CALENDAR-TEMPLATES','FOUR_MONTH_EDITABLE_CALENDAR_TEXT','EN','This is a four-month planner template with a public holiday, which is easy to customize with our online calendar creator tool. The classic template is in a portrait layout with a size of 8.5 x 11. These templates can easily customize for any particular year. Black and white template mostly preferred for business use, but you can use for both business and personal. Download this editable template and print it on page style of A4, letter, or legal. This template is available in Word, Excel, and PDF files and supports other writing applications like OpenOffice, LibreOffice, and Google Docs.'),(1445,'MONTHLY-CALENDAR-TEMPLATES','THREE_MONTH_PRINTABLE_CALENDAR_HEADING','EN','THREE-MONTH PRINTABLE CALENDAR'),(1446,'MONTHLY-CALENDAR-TEMPLATES','THREE_MONTH_PRINTABLE_CALENDAR_TEXT','EN','This monthly appointment planner has federal holidays for the year ~{SE_YEAR}~ in portrait layout. This a three-month template includes prior and next month. You can personalize and download the template in A4, letter, or legal paper size. It also includes a space for note where you can write anything you want. This template is available in Word, Excel, and PDF files. You can also edit templates as per your requirements on Microsoft Office, OpenOffice, LibreOffice, and Google Docs, after downloading them.'),(1448,'MONTHLY-CALENDAR-TEMPLATES','CUSTOMIZABLE_MONTHLY_CALENDAR_WITH_LARGE_SPACE_FOR_NOTES_HEADING','EN','CUSTOMIZABLE MONTHLY CALENDAR WITH LARGE SPACE FOR NOTES'),(1449,'MONTHLY-CALENDAR-TEMPLATES','CUSTOMIZABLE_MONTHLY_CALENDAR_WITH_LARGE_SPACE_FOR_NOTES_TEXT','EN','Download this portrait layout templates for ~{SE_YEAR}~ with public holidays. This is large boxes editable templates and has a large notes space at the bottom of the page. You can customize these large boxes templates through an online calendar tool, according to your requirements. This simple calendar templates can easily customize for any particular year. You can print a template in landscape and portrait layout from any printer using A4, Letter, and Legal paper size. You can print a template from any printer using A4, Letter, and Legal paper size.'),(1451,'MONTHLY-CALENDAR-TEMPLATES','POPULAR_PAGES_TEXT','EN','The planner is an excellent method to organize your work. These popular planners can customize using the planner creator tool as per your requirements. Download and print these templates for your individual and professional use on A4, Letter, and Legal page style.'),(1452,'QUARTERLY-CALENDAR-TEMPLATES','HEADER_TEXT','EN','Download these FREE printable ~{SE_YEAR}~ Quarterly planners available in portrait and landscape format. The three-month calendar can personalize using our online quarterly calendar maker tool, as per your requirements. These Quarterly planners are available to download for free of cost to our esteemed users. Our Quarterly planner runs well with other writing applications such as Google Docs, LibreOffice, and OpenOffice. You can easily print these Quarterly planners on A4, letter, and legal paper size.'),(1453,'QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_PRINTABLE_CALENDAR_HEADING','EN','QUARTERLY CALENDAR CALENDAR'),(1454,'QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_PRINTABLE_CALENDAR_TEXT','EN','Download this landscape layout printable ~{SE_YEAR}~ year planner, which includes US public holidays. In this template, months arranged in quarter wise on a four-page. The three-month calendar can personalize using our online quarterly calendar maker tool. These quarterly templates are compatible with Google Docs, OpenOffice, and LibreOffice. Bottom-Left side of templates has a place that contains US holidays, and on bottom-right, there is a space for notes. These templates can print on A4, letter, or legal paper size.'),(1455,'QUARTERLY-CALENDAR-TEMPLATES','THREE-MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES_HEADING','EN','THREE-MONTHS CALENDAR WITH LARGE NOTES SPACE'),(1456,'QUARTERLY-CALENDAR-TEMPLATES','THREE-MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES_TEXT','EN','Download this portrait layout printable ~{SE_YEAR}~ year planner, which includes US public holidays. In this template, months arranged in quarter wise on a four-page. Quarterly printable planners can be an amazing tool to use when you’re looking for ways to get and stay organized. We have a calendar maker tool that helps you to create planners that specifically tailored to your needs, and easily alter things around to your needs. You can easily print these Quarterly planners on A4, letter, and legal paper size.'),(1457,'QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_HORIZONTAL_CALENDAR_HEADING','EN','QUARTERLY HORIZONTAL CALENDAR'),(1458,'QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_HORIZONTAL_CALENDAR_TEXT','EN','Download this calendar with each quarter includes the USA holiday and large notes space. You can edit the country holidays or the week starts for the ~{SE_YEAR}~ planner using an online quarterly calendar creator. You can edit and download these attractive templates for both personal and business use. This simple calendar templates can easily customize for any particular year. This template is available in Word, Excel, and PDF files and supports other writing applications like OpenOffice, LibreOffice, and Google Docs.'),(1459,'QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_CALENDAR_WITH_QUICK_NOTES_HEADING','EN','QUARTERLY CALENDAR WITH QUICK NOTES'),(1460,'QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_CALENDAR_WITH_QUICK_NOTES_TEXT','EN','Download this landscape layout planner that includes US federal holidays and has a large space for notes. In this template, months arranged in quarter wise in a four-page quarterly template. The printable ~{SE_YEAR}~ yearly template is customize using our online planner creator tool. Black and white template frequently preferred for business use, but you can use for both business and personal. This template is available in Word, Excel, and PDF files and supports other writing applications like OpenOffice, LibreOffice, and Google Docs. Print these templates on A4, letter, and legal paper size.'),(1461,'QUARTERLY-CALENDAR-TEMPLATES','POPULAR_PAGES_TEXT','EN','The planners are a great way to organize work. Popular planners can customize as per your requirements. Download and print these templates for your personal and professional use on A4, letter, and legal page style.'),(1462,'YEARLY-CALENDAR-TEMPLATES','HEADER_TEXT','EN','Download these FREE printable ~{SE_YEAR}~ yearly planner with the USA holidays. Customize planners at a glance template using our online yearly calendar maker. These planners are available to download, free of charge to our esteemed users. Our planners work well with other writing applications such as OpenOffice, LibreOffice, and Google Docs. Yearly-Planners are available in portrait and landscape format. You can easily print on A4, letter, and legal paper size.'),(1463,'YEARLY-CALENDAR-TEMPLATES','ANNUAL_CALENDAR_HEADING','EN','ANNUAL CALENDAR ~{SE_YEAR}~'),(1464,'YEARLY-CALENDAR-TEMPLATES','ANNUAL_CALENDAR_TEXT','EN','Download this classic design template of the ~{SE_YEAR}~ full year in landscape layout word document. This yearly template has Us federal holidays. This 12 months planner template is editable with our yearly calendar creator tool. You can download these templates in Word, Excel, and PDF format and print templates on A4, letter, or legal paper size and paper size like 8 1/2 x 11, 8.5 x 11, 8 x 10.'),(1465,'YEARLY-CALENDAR-TEMPLATES','ONE_PAGE_YEARLY_CALENDAR_HEADING','EN','ONE PAGE YEARLY CALENDAR'),(1467,'YEARLY-CALENDAR-TEMPLATES','ONE_PAGE_YEARLY_CALENDAR_TEXT','EN','Download your printable ~{SE_YEAR}~ annual calendar with this year\'s one-page template in landscape layout. The classic design, planner template is easy to edit with a planner maker tool and available as a Word, Excel, and PDF file. The full-year ~{SE_YEAR}~ planner features the US holidays at the bottom of the template and months displays in vertical order. You can download and print them on page styles like A4, Letter, Legal, and paper size like 8 1/2 x 11, 8.5 x 11, 8 x 10. These templates can customize for any particular year.'),(1468,'YEARLY-CALENDAR-TEMPLATES','VERTICAL_ANNUAL_CALENDAR_HEADING','EN','VERTICAL ANNUAL CALENDAR'),(1470,'YEARLY-CALENDAR-TEMPLATES','VERTICAL_ANNUAL_CALENDAR_TEXT','EN','Download this portrait layout full-year planner for the year ~{SE_YEAR}~ features the US holidays and a space for notes. Use this template to plan meetings, holidays, and other events or activities for the entire year for your business or family. The calendar template can customize through our online yearly planner creators as per your requirements. These annual templates are available in Word, Excel, and PDF file format. Download and print these annual templates on A4, letter, and legal paper style.'),(1471,'YEARLY-CALENDAR-TEMPLATES','YEAR_AT_A_GLANCE_CALENDAR_HEADING','EN','YEAR AT A GLANCE CALENDAR'),(1472,'YEARLY-CALENDAR-TEMPLATES','YEAR_AT_A_GLANCE_CALENDAR_TEXT','EN','Download this classic design planner of the ~{SE_YEAR}~ full year in landscape layout. This 12 months planner can customize with our planner creator tool as per your requirements. You can plan your schedule by using an annual planner. Print these templates on A4, letter, and legal paper size. This printable annual calendar available for word, excel, and pdf file format and supports other writing applications like OpenOffice, LibreOffice, and Google Docs.'),(1473,'YEARLY-CALENDAR-TEMPLATES','POPULAR_PAGES_TEXT','EN','The planner is an excellent method to organize your work. These popular planners can customize using the planner creator tool as per your requirements. Download and print these templates for your individual and professional use on A4, Letter, and Legal page style.'),(1474,'DAILY-PLANNER-TEMPLATES','POPULAR_PAGES_HEADING','EN','POPULAR DAILY PLANNER PAGES'),(1476,'MONTHLY-CALENDAR-TEMPLATES','POPULAR_PAGES_HEADING','EN','POPULAR MONTHLY CALENDAR PAGES'),(1478,'MONTHLY-CALENDAR-TEMPLATES','MONTHLY_APPOINMENT_CALENDAR_HEADING','EN','~{SE_YEAR}~  MONTHLY APPOINTMENT CALENDAR'),(1479,'QUARTERLY-CALENDAR-TEMPLATES','POPULAR_PAGES_HEADING','EN','POPULAR QUARTERLY CALENDAR PAGES'),(1480,'YEARLY-CALENDAR-TEMPLATES','POPULAR_PAGES_HEADING','EN','POPULAR YEARLY CALENDAR PAGES'),(1481,'GENERIC','CALENDAR_HOLIDAYS_SERVICES_TEXT','EN','<p>CalendarHoliday is one destination where you can find all the things you require for the calendar. Here you can quickly locate the calendar and customize them according to your specifications. The schedules are available in several formats with the US holidays for the 50 states of the US. This site includes an online calendar, which will be helpful if you need to look for a specific date, or a particular festival. This calendar holds federal holidays and religious holidays in the US. You can know a list of holidays and additional information about working days in that month by clicking on the selected months\' calendar. It also includes the list of the holiday for a year at the bottom of the calendar.</p>\n<p>These Calander templates include US-based holiday. All the information described here briefly so that it will help you to know about a particular holiday. We continue adding numbers of Calendar Templates with the ~{SE_YEAR}~ holidays. We provide daily, weekly, monthly, quarterly, and yearly calendar templates in several categories. These templates are designed to fulfill the requirements of the customer. You can also customize the templates through our online calendar maker tool. </p> \n<p> We will also add the US standard time zone in our site so that you can come to know the time in a specific region. You can also get knowledge about Daylight saving time, at what time and in which states its applicable. </p>\n<p>We understand you may have different requirements that are not available on this site. Please help us by sending your valuable feedback. We will try to include more options as soon as possible.</p>'),(1482,'INDEX','HEADER_TEXT','EN','  CalendarHoliday has an online calendar that helps you to find out a particular day, date, or any specific festival. You can also check the long weekend in a specific month to plan your vacation. This online calendar helps you to plan your official and household work. You can find out an appropriate day and date in a relevant year. Calander holiday has a list of holidays and observances for every year that covers\n ~{PREV}~, ~{CURR}~, ~{NEXT}~ , etc. are shown below the online calendar. This calendar holds federal holidays, regional holidays, and religious holidays. The Federal holidays of the US, are shown in red color on the calendar. Green color represents the other observances of the year. Manage and organize work with our online calendar.\n'),(1484,'GENERIC','US','EN','United States'),(1485,'GENERIC','US','ES','Estados Unidos'),(1486,'GENERIC','ALABAMA','EN','Alabama'),(1487,'GENERIC','ALASKA','EN','Alaska'),(1488,'GENERIC','ARIZONA','EN','Arizona'),(1489,'GENERIC','ARKANSAS','EN','Arkansas'),(1490,'GENERIC','CALIFORNIA','EN','California'),(1491,'GENERIC','COLORADO','EN','Colorado'),(1492,'GENERIC','CONNECTICUT','EN','Connecticut'),(1493,'GENERIC','DELAWARE','EN','Delaware'),(1494,'GENERIC','FLORIDA','EN','Florida'),(1495,'GENERIC','GEORGIA','EN','Georgia'),(1496,'GENERIC','HAWAII','EN','Hawaii'),(1497,'GENERIC','IDAHO','EN','Idaho'),(1498,'GENERIC','ILLINOIS','EN','Illinois'),(1499,'GENERIC','INDIANA','EN','Indiana'),(1500,'GENERIC','IOWA','EN','Iowa'),(1501,'GENERIC','KANSAS','EN','Kansas'),(1502,'GENERIC','KENTUCKY','EN','Kentucky'),(1503,'GENERIC','LOUISIANA','EN','Louisiana'),(1504,'GENERIC','MAINE','EN','Maine'),(1505,'GENERIC','MARYLAND','EN','Maryland'),(1506,'GENERIC','MASSACHUSETTS','EN','Massachusetts'),(1507,'GENERIC','MICHIGAN','EN','Michigan'),(1508,'GENERIC','MINNESOTA','EN','Minnesota'),(1509,'GENERIC','MISSISSIPPI','EN','Mississippi'),(1510,'GENERIC','MISSOURI','EN','Missouri'),(1511,'GENERIC','MONTANA','EN','Montana'),(1512,'GENERIC','NEBRASKA','EN','Nebraska'),(1513,'GENERIC','NEVADA','EN','Nevada'),(1514,'GENERIC','NEW-HAMPSHIRE','EN','New Hampshire'),(1515,'GENERIC','NEW-JERSEY','EN','New Jersey'),(1516,'GENERIC','NEW-MEXICO','EN','New Mexico'),(1517,'GENERIC','NEW-YORK','EN','New York'),(1518,'GENERIC','NORTH-CAROLINA','EN','North Carolina'),(1519,'GENERIC','NORTH-DAKOTA','EN','North Dakota'),(1520,'GENERIC','OHIO','EN','Ohio'),(1521,'GENERIC','OKLAHOMA','EN','Oklahoma'),(1522,'GENERIC','OREGON','EN','Oregon'),(1523,'GENERIC','PENNSYLVANIA','EN','Pennsylvania'),(1524,'GENERIC','RHODE-ISLAND','EN','Rhode Island'),(1525,'GENERIC','SOUTH-CAROLINA','EN','South Carolina'),(1526,'GENERIC','SOUTH-DAKOTA','EN','South Dakota'),(1527,'GENERIC','TENNESSEE','EN','Tennessee'),(1528,'GENERIC','TEXAS','EN','Texas'),(1529,'GENERIC','UTAH','EN','Utah'),(1530,'GENERIC','VERMONT','EN','Vermont'),(1531,'GENERIC','VIRGINIA','EN','Virginia'),(1532,'GENERIC','WASHINGTON','EN','Washington'),(1533,'GENERIC','WEST-VIRGINIA','EN','West Virginia'),(1534,'GENERIC','WISCONSIN','EN','Wisconsin'),(1535,'GENERIC','WYOMING','EN','Wyoming'),(1536,'BANK-HOLIDAYS','NOTES','EN','<h2 class=\"text-uppercase\" style=\"color: rgb(205,101,57);margin-top: 10px;font-size: 24px;width: 100%;\">\r\nBank Holidays Notes:</h2>\r\n<div class=\"col align-self-center\" style=\"padding-right: 0px;padding-left: 0px;\"><i class=\"fa fa-arrow-circle-o-right float-left\" style=\"color: rgb(12,123,83);margin-top: 5px;\"></i>\r\n\r\n<p style=\"margin-left: 30px;\">Here you will find the list of ~{SE_YEAR}~ bank holidays. It is necessary to recognize that there are national bank holidays for ~{SE_YEAR}~, but not every bank follows the holidays listed here. Many big banks such as Wells Fargo, Chase, BofA, and Citibank cannot hold all the holidays that are listed above. Small financial institutions are usually closed for all celebrated bank holidays.</p>\r\n\r\n<p style=\"margin-left: 30px;\">Bank holidays are generally similar to federal holidays because most banks follow the holiday calendar of the US Federal Reserve.</p>\r\n\r\n<p style=\"margin-left: 30px;\">If the holidays fall on Saturday, Federal Reserve Banks and its Branches will be open on the prior Friday. For the holidays which fall on Sunday, for that, all Federal Reserve Banks and branches will remain closed on the following Monday.</p>\r\n\r\n<p style=\"margin-left: 30px;\">Please keep in mind that these are not significantly actual holidays, but the organization celebrates those days. If the holiday is not listed for the particular bank, then it will be open for that holiday.</p>\r\n</div>'),(1537,'MARKET-HOLIDAYS','NOTES','EN','<h2 class=\"text-uppercase\" style=\"color: rgb(205,101,57);margin-top: 10px;font-size: 24px;width: 100%;\">Market Holidays Notes:</h2>\r\n<div class=\"col align-self-center\" style=\"padding-right: 0px;padding-left: 0px;\"><i class=\"fa fa-arrow-circle-o-right float-left\" style=\"color: rgb(12,123,83);margin-top: 5px;\"></i>\r\n\r\n\r\n<p style=\"margin-left: 30px;\">Here is the list of stock market holidays for ~{SE_YEAR}~ to find out whether the market will be open on days like Columbus Day, Black Friday, Christmas Eve, and more. The regular trading hours for the stock market are Monday to Friday from 9:30 am to 4:00 pm Eastern. The US stock market periodically closes during major holidays. </p>\r\n<p style=\"margin-left: 30px;\">As a day trader or an investment firm, it\'s essential to plan out the year and know when the Stock Exchange is going to be closed. Be sure to check out our quick reference guide below to see when the market is closed.</p>\r\n<p style=\"margin-left: 30px;\">Major US stock exchanges include the New York Stock Exchange (NYSE), Nasdaq and the Chicago Board Options Exchange (CBOE). These major national exchanges, along with many other trades operating in the country, form the US stock market.</p>\r\n</div>'),(1538,'STATE-HOLIDAYS','NOTES','EN','<h2 class=\"text-uppercase bottom_text\">\r\nState Holidays Notes</h2>\r\n\r\n<p style=\"margin-left: 30px;\">Every state celebrates its holidays and usually has events that go along with these states holidays. Every holiday is unique and represents the state in its own way. Click on the above states to see a quick reference guide and their ~{SE_YEAR}~ state holidays calendar. We have a page on our website for each of the 50 US states with the listing of state holidays.</p>\r\n<p style=\"margin-left: 30px;\">Many states in the United States have state holidays where they give their employees the day off. These are in addition to the US federal holidays that are recognized nationally throughout the United States.</p>\r\n<p style=\"margin-left: 30px;\">Some states also have local observance days, where it is usually not a workday, but there is something within their state that the state wants to identify.</p>\r\n'),(1539,'RELIGIOUS-HOLIDAYS','NOTES','EN','<h2 class=\"text-uppercase\" style=\"color: rgb(205,101,57);margin-top: 10px;font-size: 24px;width: 100%;\">\r\nReligious Holidays Notes:</h2>\r\n<div class=\"col align-self-center\" style=\"padding-right: 0px;padding-left: 0px;\"><i class=\"fa fa-arrow-circle-o-right float-left\" style=\"color: rgb(12,123,83);margin-top: 5px;\"></i>\r\n<p style=\"margin-left: 30px;\">The above is a list of religions, for which we provide religious holidays in the year ~{SE_YEAR}~. Religious holidays and observations are specific days of the year that are scheduled to celebrate something religion-based. On our website, we currently offer Muslim, Hindu, Christian, Sikh, and Buddhist religious holidays. You can get information about all religious holidays here.</p> \r\n<p style=\"margin-left: 30px;\">There are many various religions in the world, and many have different special days related to their religion. If you need particular holiday information for any religion, let us know, we will try to add them to the page. Feel free to use this ~{SE_YEAR}~ Religious Holiday for Quick Reference Guide that shown above.</p>\r\n</div>'),(1540,'GENERIC','ASX','EN','ASX'),(1541,'GENERIC','BSE','EN','BSE'),(1542,'GENERIC','DAX','EN','DAX'),(1543,'GENERIC','EURONEXT','EN','EURONEXT'),(1544,'GENERIC','LSE','EN','LSE'),(1545,'GENERIC','MCX','EN','MCX'),(1546,'GENERIC','NASDAQ','EN','NASDAQ'),(1547,'GENERIC','NSE','EN','NSE'),(1548,'GENERIC','NYSE','EN','NYSE'),(1549,'GENERIC','TSX','EN','TSX'),(1550,'GENERIC','BANK-OF-AMERICA','EN','Bank Of America'),(1551,'GENERIC','CAPITAL-ONE-BANK','EN','Capital One Bank'),(1552,'GENERIC','CHASE-BANK','EN','Chase Bank'),(1553,'GENERIC','CITIBANK','EN','Citibank'),(1554,'GENERIC','HSBC-BANK','EN','Hsbc Bank'),(1555,'GENERIC','SUNTRUST-BANK','EN','Suntrust Bank'),(1556,'GENERIC','WELLS-FARGO-BANK','EN','Wells Fargo Bank'),(1557,'GENERIC','USPS','EN','USPS'),(1558,'GENERPIC','POST-OFFICE','EN','Post Office'),(1559,'STATE-HOLIDAYS','NEWS','EN','<h2 class=\"text-uppercase\" style=\"color: rgb(205,101,57);margin-top: 10px;font-size: 24px;width: 100%;\">\nState Holidays News:</h2>\n<ul>\n<li> <a href=\"https://edition.cnn.com/2020/02/24/politics/virginia-confederate-holiday-lee-jackson-election-day/index.html\"  target=\"_blank\"  rel=\"nofollow\">Virginia lawmakers pass a bill to swap holiday honoring Confederate generals for Election Day</a> </li>\n<li><a href=\"https://www.washingtonexaminer.com/politics/northam-expected-to-sign-bill-ending-lee-jackson-day-in-virginia\"  target=\"_blank\"  rel=\"nofollow\">Northam expected to sign a bill ending Lee-Jackson Day in Virginia</a> </li>\n<li><a href=\"https://www.newsweek.com/christmas-eve-federal-holiday-what-government-offices-are-open-december-24-1478710\"  target=\"_blank\"  rel=\"nofollow\">Is Christmas eve a federal holiday? What government offices are open on December 24?</a> </li>\n</ul>\n\n'),(1560,'RELIGIOUS-HOLIDAYS','NEWS','EN','<h2 class=\"text-uppercase\" style=\"color: rgb(205,101,57);margin-top: 10px;font-size: 24px;width: 100%;\">Religious Holidays News</h2>\n<div class=\"col align-self-center\" style=\"padding-right: 0px;padding-left: 0px;\"><i class=\"fa fa-arrow-circle-o-right float-left\" style=\"color: rgb(12,123,83);margin-top: 5px;\"></i>\n\n<ul>\n<li><a href=\"https://www.wavy.com/news/local-news/virginia-beach/members-of-jewish-community-want-2021-school-calendar-changed-to-accommodate-rosh-hashanah/\"  target=\"_blank\"  rel=\"nofollow\">Members of the Jewish community want Virginia Beach school calendar changed to accommodate Rosh Hashanah </a> </li>\n\n<li><a href=\"https://wtvr.com/2019/11/19/henrico-school-calendar/\"  target=\"_blank\" rel=\"nofollow\">Christian, Islamic, Jewish, and Hindu holidays observed in new Henrico School calendar</a></li>\n<li> <a href=\"https://www.syracuse.com/schools/2020/01/central-ny-districts-consider-closing-schools-for-muslim-holidays.html\"  target=\"_blank\"  rel=\"nofollow\">Central New York districts consider closing schools for Muslim holidays </a> </li>\n<li> <a href=\"https://www.cbs58.com/news/chuch-attendence-declines-as-us-adults-drop-religious-associations\"  target=\"_blank\"  rel=\"nofollow\">Church attendance declined as US adults drop religious associations </a> </li>\n</ul>\n</div>'),(1561,'BANK-HOLIDAYS','NEWS','EN','NEWS'),(1562,'USPS-HOLIDAYS','CALENDAR_HOLIDAYS_SERVICES_HEADING','EN','USPS Services'),(1563,'USPS-HOLIDAYS','CALENDAR_HOLIDAYS_SERVICES_TEXT','EN','<p style=\"margin-left: 30px;\">The USPS is supporting government enterprise and is one of the largest businesses in the United States that has reached every address in the nation. It is the most trusted government agency in the country. People prefer the US Parcel Service to deliver their packages or mail outside the United States or elsewhere.</p>\n<p style=\"margin-left: 30px;\">People choose this because they know that there will be a minimum cost for shipping compared to other courier companies. The USPS is giving the same facilities that other organizations are providing but at a lower cost.</p>\n<p style=\"margin-left: 30px;\">If you are a customer of the United States Parcel Service, you should know that there are some days in the year when this Postal Company does not send any mail (except \'Priority Mail Express Service\'). If you are not known about it, then in an emergency you can get into a big problem.</p>\n<p style=\"margin-left: 30px;\">There is a list of post office holidays of ~{SE_YEAR}~. On these days, mail will not be sent or delivered, so plan according to that. It is essential to give full attention to the information provided here. Feel free to use this ~{SE_YEAR}~ USPS / Post Office Holiday Quick Reference Guide that shown above. </p>'),(1564,'USPS-HOLIDAYS','CALENDAR_HOLIDAYS_NEWS_HEADING','EN','USPS Holidays News'),(1565,'USPS-HOLIDAYS','CALENDAR_HOLIDAYS_NEWS_TEXT','EN','<ul>\n<li> <a href=\"https://www.ecommercebytes.com/2020/02/04/why-the-usps-launched-a-premium-tracking-option\"  target=\"_blank\"  rel=\"nofollow\">USPS Launched a Premium Tracking Option </a> </li>\n<li><a href=\"https://esellercafe.com/usps-will-no-longer-accept-handwritten-customs-declaration-forms-on-march-6/\"  target=\"_blank\"  rel=\"nofollow\">USPS Will No Longer Accept Handwritten Customs Declaration Forms </a> </li>\n</ul>\n'),(1566,'ICS','CALENDAR_HOLIDAYS_SUBSCRIPTION_HEADING','EN','~{SE_AREA}~ Holidays Calendar Subcription Notes'),(1567,'ICS','CALENDAR_HOLIDAYS_SUBSCRIPTION_NOTES','EN','<p style=\"margin-left: 30px;\">Subscribe to our ~{SE_YEAR}~ ~{SE_AREA}~ web calendar in any iCal calendar supported application. It works well with iOS, Google Calendar, Android, Outlook, Mac iCal, etc. The calendar template is automatically updated. We also provide federal and local holidays for many other countries, states, and territories. Please tell us if you want to add your favorite calendar here.</p>'),(1569,'GENERIC','POPULAR_TEMPLATES','EN','POPULAR TEMPLATES'),(1570,'REGION','HEADING','EN','WHEN ARE NEXT PUBLIC HOLIDAYS IN ~{AREA}~'),(1571,'DAILY-PLANNER-TEMPLATES','DAILY_HOURLY_PLANNER_TEXT','EN','<p>Download our free printable Daily planner template to keep your everyday schedules organized. The daily planner allows you to plan your work from 6 am to 7 pm, but the timings can be customized according to your needs. You can also write down your daily to-do list in the order you wish to perform them. For any important notes and information you don\'t want to forget, you can write it in the notes section of the planner. Our free downloadable and printable daily hourly planner is accessible to all our users. '),(1572,'DAILY-PLANNER-TEMPLATES','DAILY_HOURLY_PLANNER_HEADING','EN','DAILY HOURLY PLANNER'),(1573,'MONTHLY-CALENDAR-TEMPLATES','MONTHLY_APPOINMENT_CALENDAR_TEXT','EN','<p>Our version of the ~{SE_YEAR}~  monthly appointment planner is what you need to schedule your monthly appointments. The planner has enough space for you to write down the date, time, and clear details of your scheduled appointment. In addition, the planner includes all the bank holidays in the particular month just so that you get to know when businesses are closed for operation. </p>'),(1574,'DAILY-PLANNER-TEMPLATES','PRINTABLE_DAILY_PLANNER_HEADING','EN','PRINTABLE  DAILY PLANNER'),(1575,'DAILY-PLANNER-TEMPLATES','PRINTABLE_DAILY_PLANNER_TEXT','EN','WRITE_TEXT'),(1576,'MONTHLY-CALENDAR-TEMPLATES','LANDSCAPE_MONTHLY_US_PLANNER_TEMPLATE_HEADING','EN','LANDSCAPE MONTHLY US CALENDAR TEMPLATE'),(1577,'SECOND-PASSOVER','SE_DESCRIPTION','EN','Passover Second Day is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Passover Second Day in ~{SE_YEAR}~.'),(1578,'SECOND-PASSOVER','SE_TITLE','EN','~{SE_YEAR}~ Passover Second Day - Jewish Holidays  - ~{SE_BRAND}~'),(1579,'SECOND-PASSOVER','SE_AREA_TITLE','EN','Passover Second Day'),(1580,'BOXING-DAY-ADDITIONAL-DAY','SE_TITLE','EN','~{SE_YEAR}~ Boxing Day - ~{SE_BRAND}~'),(1581,'BOXING-DAY-ADDITIONAL-DAY','SE_DESCRIPTION','EN','Boxing Day is a holiday celebrated the next day of Christmas Day and falls on ~{SE_DATE}~.'),(1582,'BOXING-DAY-ADDITIONAL-DAY','SE_AREA_TITLE','EN','Boxing Day'),(1583,'PATRIOTS-DAY','SE_TITLE','EN','~{SE_YEAR}~ Patriot\'s Day - ~{SE_BRAND}~'),(1584,'PATRIOTS-DAY','SE_DESCRIPTION','EN','Patriots Day is an annual event, ceremonially celebrated as several state holidays, in memory of the Battle of Lexington and Concord, and the Battle of Menotomy.'),(1585,'PATRIOTS-DAY','SE_AREA_TITLE','EN','Patriot\'s Day'),(1586,'NATIVE-AMERICANS-DAY ','SE_TITLE','EN','~{SE_YEAR}~ Native Americans Day - ~{SE_BRAND}~'),(1587,'NATIVE-AMERICANS-DAY ','SE_DESCRIPTION','EN','Native Americans Day is a civil holiday observed to honors native Americans in the United States after the Day of Thanksgiving.'),(1588,'NATIVE-AMERICANS-DAY','SE_AREA_TITLE','EN','Native American Day'),(1589,'CONFEDERATE-HEROES-DAY','SE_TITLE','EN','~{SE_YEAR}~ Confederate Heroes Day - ~{SE_BRAND}~'),(1590,'CONFEDERATE-HEROES-DAY','SE_DESCRIPTION','EN','Confederate Heroes Day is a state holiday of texas which held on 19th january every year to honor and remember soldiers.'),(1591,'CONFEDERATE-HEROES-DAY','SE_AREA_TITLE','EN','Confederate Heroes Day'),(1592,'TEXAS-INDEPENDENCE-DAY','SE_AREA_TITLE','EN','Texas Independence Day'),(1593,'TEXAS-INDEPENDENCE-DAY','SE_TITLE','EN','~{SE_YEAR}~ Texas Independence Day - ~{SE_BRAND}~'),(1595,'TEXAS-INDEPENDENCE-DAY','SE_DESCRIPTION','EN','Texas Independence Day celebrates the enactment of the Texas Declaration of Independence on March 2, 1836.'),(1596,'SAN-JACINTO-DAY','SE_DESCRIPTION','EN','San Jacinto Day is a state holiday celebrated on 21 April every year to celebrate the Battle of San Jacinto.'),(1597,'SAN-JACINTO-DAY','SE_TITLE','EN','~{SE_YEAR}~ San Jacinto Day - ~{SE_BRAND}~'),(1598,'SAN-JACINTO-DAY','SE_AREA_TITLE','EN','San Jacinto Day'),(1599,'LBJS-BIRTHDAY','SE_DESCRIPTION','EN','Lyndon Baines Johnson Day is also know as LBJS, to celebrate the birthday of the 36th president of the United States. '),(1600,'LBJS-BIRTHDAY','SE_TITLE','EN','~{SE_YEAR}~ LBJS Birthday - ~{SE_BRAND}~'),(1601,'LBJS-BIRTHDAY','SE_AREA_TITLE','EN','LBJS Birthday'),(1602,'WASHINGTON-LINCOLN-DAY','SE_AREA_TITLE','EN','Washington Lincoln Day'),(1603,'WASHINGTON-LINCOLN-DAY','SE_DESCRIPTION','EN','Washington Lincoln Birthday is a federal holiday in the US. It marks to pay respect to George Washington and Abrahim Lincoln.'),(1604,'WASHINGTON-LINCOLN-DAY','SE_TITLE','EN','~{SE_YEAR}~ Washington Lincoln Day - ~{SE_BRAND}~'),(1605,'AFTER-CHRISTMAS','SE_TITLE','EN','~{SE_YEAR}~ After Christmas - ~{SE_BRAND}~'),(1606,'AFTER-CHRISTMAS','SE_DESCRIPTION','EN','After Christmas is a Christian holiday admiring the birth of Jesus. Christians believe that Jesus is the son of God, the Messiah sent from Heaven to save the world. '),(1607,'AFTER-CHRISTMAS','SE_AREA_TITLE','EN','After Christmas'),(1608,'ROBERT-E-LEES-BIRTHDAY','SE_AREA_TITLE','EN','Robert E Lees Birthday'),(1609,'ROBERT-E-LEES-BIRTHDAY','SE_DESCRIPTION','EN','Robert E Lees Birthday is celebrated on the third monday of january to observe his birthday.'),(1610,'ROBERT-E-LEES-BIRTHDAY','SE_TITLE','EN','~{SE_YEAR}~ Robert E Lees Birthday - ~{SE_BRAND}~'),(1611,'CESAR-CHAVEZ-DAY','SE_TITLE','EN','~{SE_YEAR}~ Cesar Chavez Day - ~{SE_BRAND}~'),(1612,'CESAR-CHAVEZ-DAY','SE_DESCRIPTION','EN','Cesar Chavez Day '),(1614,'CABRINI-DAY','SE_AREA_TITLE','EN','Cabrini Day'),(1615,'CABRINI-DAY','SE_DESCRIPTION','EN','Cabrini Day is observed on first Monday in October to honor Frances Xavier Cabrini who created 67 schools, hospitals, and orphanages in the United States throughout her lifetime.'),(1616,'CABRINI-DAY','SE_TITLE','EN','~{SE_YEAR}~ Cabrini Day - ~{SE_BRAND}~'),(1617,'MAHARAJA-AGRASEN-JAYANTI','SE_AREA_TITLE','EN','Maharaja Agrasen Jayanti'),(1618,'MAHARAJA-AGRASEN-JAYANTI','SE_DESCRIPTION','EN',' Maharaja Agrasen Jayanti is celebrated on ~{SE_DATE}~. Get more detailed information, history, facts, and how celebratration of Maharaja Agrasen Jayanti in ~{SE_YEAR}~.'),(1619,'MAHARAJA-AGRASEN-JAYANTI','SE_TITLE','EN','~{SE_YEAR}~ Maharaja Agrasen Jayanti - ~{SE_BRAND}~'),(1620,'GARIA-PUJA','SE_TITLE','EN','~{SE_YEAR}~ Garia Puja - ~{SE_BRAND}~'),(1621,'GARIA-PUJA','SE_DESCRIPTION','EN','Garia Puja extends for seven days, with the last day being a regional state holiday in Tripura. It begins on the previous day of the month of Chaitra. '),(1622,'GARIA-PUJA','SE_AREA_TITLE','EN','Garia Puja'),(1623,'QUARTERLY-CALENDAR-TEMPLATES','THREE_MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES_HEADING','EN','THREE-MONTHS CALENDAR WITH LARGE NOTES SPACE'),(1624,'QUARTERLY-CALENDAR-TEMPLATES','THREE_MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES_TEXT','EN','Download this portrait layout printable ~{SE_YEAR}~ year planner, which includes US public holidays. In this template, months arranged in quarter wise on a four-page. Quarterly printable planners can be an amazing tool to use when you’re looking for ways to get and stay organized. We have a calendar maker tool that helps you to create planners that specifically tailored to your needs, and easily alter things around to your needs. You can easily print these Quarterly planners on A4, letter, and legal paper size.'),(1625,'AGE-CALCULATOR','SE_AREA_TITLE','EN','Age Calculator'),(1626,'ADD-DAYS','SE_AREA_TITLE','EN','Add Days Calculator'),(1627,'SUBTRACT-DAYS','SE_AREA_TITLE','EN','Subtract Days Calculator'),(1628,'GENERIC','CALCULATOR','EN','Calculator'),(1629,'GENERIC','DAYS-CALCULATOR','EN','Days Calculator'),(3668,'COUNT-DAYS','SE_AREA_TITLE','EN','Count Days'),(3673,'GENERIC','DATE_AFTER_ADDING','EN','Date after adding'),(3674,'GENERIC','DATE_AFTER_SUBTRACTING','EN','Date after subtracting'),(3677,'GENERIC','YEARS','EN','Years'),(3679,'GENERIC','MONTHS','EN','Months'),(3680,'GENERIC','DAYS','EN','Days'),(3681,'GENERIC','WEEKS','EN','Weeks'),(3687,'GENERIC','ADDED','EN','Added'),(3688,'GENERIC','ADDED','ES','Agregada'),(3689,'GENERIC','RESULTS','EN','Results'),(3691,'GENERIC','ALT_TIME_UNITS','EN','Alternative Time Units'),(3693,'GENERIC','CALCULATE_DURATION','EN','Calculate Duration'),(3694,'HOW-OLD-AM-I-IF-I-BORN-IN','SE_AREA_TITLE','EN','How old am I if I born in ~{SE_YEAR}~ ?'),(3695,'HOW-OLD-AM-I-IF-I-BORN-IN','SE_DESCRIPTION','EN','How old am I since the day I born till date, If I born in ~{SE_YEAR}~ ?'),(3696,'HOW-OLD-AM-I-IF-I-BORN-IN','SES_TITLE','EN','How old am I if I born in ~{YEAR}~ ? - ~{SE_BRAND}~ ?'),(3697,'AGE-SINCE','SE_AREA_TITLE','EN','How old am I if I born in ~{DATE}~ ?'),(3698,'AGE-SINCE','SE_TITLE','EN','Age since ~{DATE}~'),(3699,'AGE-SINCE','SE_DESCRIPTION','EN','What will be my exact age today, If I was born in ~{DATE}~'),(3700,'AGE-SINCE','CALENDAR_HOLIDAYS_SERVICES_TEXT','EN','This will provide you the serivce to calculate the age instantly as of today by year, month or date.\r\nThis will also calculates your age in alternative units from the date you selected. These alternative units are,\r\n<ul>\r\n<li>Age in months</li>\r\n<li>Age in weeks</li>\r\n<li>Age in days</li>\r\n<li>Age in hours</li>\r\n<li>Age in minutes</li>\r\n<li>Age in seconds</li>\r\n</ul>'),(3701,'AGE-SINCE','CALENDAR_HOLIDAYS_SERVICES_HEADING','EN','AGE CALCULATOR SERVICES'),(3702,'MAKARSANKRANTI-PONGAL','SE_DESCRIPTION','EN','Makarasankranti is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Pongal in ~{SE_YEAR}~.'),(3704,'DUSSHERA','SE_AREA_TITLE','EN','Dussehra'),(3705,'DUSSHERA','SE_TITLE','EN','~{SE_YEAR}~ Dussehra - Hindu Holiday - ~{SE_BRAND}~'),(3706,'DUSSHERA','SE_DESCRIPTION','EN','Dussehra is celebrated on ~{SE_DATE}~. Find information, history, facts, and how to celebrate Dussehra in ~{SE_YEAR}~.'),(3707,'DAY-CALCULATOR','SE_AREA_TITLE','EN','Day Calculator'),(3708,'ST-PATRICK\'S-DAY','SE_AREA_TITLE','EN','St. Patrick\'s Day'),(3709,'DUSSHERA-','SE_AREA_TITLE','EN','Dusshera '),(3710,'THE-17TH-OF-TAMMUZ','SE_AREA_TITLE','EN','The 17th of Tammuz'),(3711,'HOSHANAH-RABBAH','SE_AREA_TITLE','EN','Hoshanah Rabbah'),(3712,'GURU-HAR-RAI-BIRTHDAY','SE_AREA_TITLE','EN','Guru Har Rai Birthday'),(3713,'CESAR-CHAVEZ-DAY','SE_AREA_TITLE','EN','Cesar Chavez Day'),(3714,'CHRISTMAS-HOLIDAY','SE_AREA_TITLE','EN','Christmas Holiday'),(3715,'WASHINGTON-BIRTHDAY','SE_AREA_TITLE','EN','Washington\'s Birthday'),(3716,'INDIGENOUS-PEOPLES-DAY','SE_AREA_TITLE','EN','Indigenous Peoples Day'),(3717,'PRESIDENTS-DAY-HOLIDAY','SE_AREA_TITLE','EN','Presidents\' Day (observed)'),(3718,'DAY-AFTER-THANKSGIVING','SE_AREA_TITLE','EN','Day After Thanksgiving'),(3719,'DAY-AFTER-CHRISTMAS','SE_AREA_TITLE','EN','Day After Christmas'),(3720,'PIONEER-HOLIDAY','SE_AREA_TITLE','EN','Pioneer Day Holiday'),(3721,'COLUMBUS-DAY-YORKTOWN','SE_AREA_TITLE','EN','Columbus Day & Yorktown Victory Day'),(3722,'THANKSGIVING-EVE','SE_AREA_TITLE','EN','Thanksgiving Eve'),(3730,'THANKSGIVING-DAY-HOLIDAY','SE_AREA_TITLE','EN','Thanksgiving Holiday'),(3731,'NEW-YEARS-DAY','SE_AREA_TITLE','ES','New Year\'s Day'),(3732,'M-L-KING-DAY','SE_AREA_TITLE','ES','M L King Day'),(3733,'VALENTINES-DAY','SE_AREA_TITLE','ES','Valentine\'s Day'),(3734,'PRESIDENTS-DAY','SE_AREA_TITLE','ES','Presidents\' Day'),(3735,'GOOD-FRIDAY','SE_AREA_TITLE','ES','Good Friday'),(3736,'EASTER-SUNDAY','SE_AREA_TITLE','ES','Easter Sunday'),(3737,'MOTHERS-DAY','SE_AREA_TITLE','ES','Mother\'s Day'),(3738,'MEMORIAL-DAY','SE_AREA_TITLE','ES','Memorial Day'),(3739,'FATHERS-DAY','SE_AREA_TITLE','ES','Father\'s Day'),(3740,'INDEPENDENCE-DAY','SE_AREA_TITLE','ES','Independence Day'),(3741,'LABOR-DAY','SE_AREA_TITLE','ES','Labor Day'),(3742,'COLUMBUS-DAY','SE_AREA_TITLE','ES','Columbus Day'),(3743,'HALLOWEEN','SE_AREA_TITLE','ES','Halloween'),(3744,'VETERANS-DAY','SE_AREA_TITLE','ES','Veterans Day'),(3745,'THANKSGIVING-DAY','SE_AREA_TITLE','ES','Thanksgiving Day'),(3746,'CHRISTMAS','SE_AREA_TITLE','ES','Christmas'),(3748,'ANZAC-DAY','SE_AREA_TITLE','EN','Anzac Day'),(3749,'NATIONAL-DONUT-DAY','SE_AREA_TITLE','ES','National Donut Day'),(3750,'INDEPENDENCE-DAY-HOLIDAY','SE_AREA_TITLE','ES','Independence Day Holiday'),(3751,'WASHINGTONS-DAY','SE_AREA_TITLE','ES','Washington \'s Birthday'),(3752,'NEW-YEAR-HOLIDAY','SE_AREA_TITLE','EN','New Year Holiday'),(3753,'VETERANS-DAY-HOLIDAY','SE_AREA_TITLE','EN','Veteran\'s Day Holiday'),(3754,'VETERANS-HOLIDAY','SE_AREA_TITLE','EN','Veterans\' Holiday'),(3755,'KING-KAMEHAMEHA-DAY-HOLIDAY','SE_AREA_TITLE','EN','King Kamehameha I Day Holiday'),(3756,'NEW-YEARS-DAY-HOLIDAY','SE_AREA_TITLE','ES','New Year\'s Day Holiday'),(3877,'FUN-DAYS','SE_AREA_TITLE','EN','fun days'),(3878,'-EVENTS','SE_AREA_TITLE','EN','Events'),(3879,'FUN-EVENTS','SE_AREA_TITLE','EN','fun events'),(3880,'FUN-DAYS-EVENTS','SE_AREA_TITLE','EN','Fun Days Events'),(3882,'HUSBAND-APPRECIATION-DAY','SE_AREA_TITLE','EN','Husband Appreciation Day'),(3884,'HUSBAND-APPRECIATION-DAY','SE_TITLE','EN','Husband Appreciation Day - ~{SE_BRAND}~'),(3886,'GENERIC','FUN-EVENTS','EN','Fun Events'),(3887,'GENERIC','FUN-DAY','EN','Fun Days'),(3888,'HUSBAND-APPRECIATION-DAY','SE_DESCRIPTION','EN','The Husband Appreciation Day takes place on the third Saturday of April every year.Every couple should take advantage of this day to do something special for their family'),(3889,'NATIONAL-COUSINS-DAY','SE_AREA_TITLE','EN','National Cousins Day'),(3892,'NATIONAL-COUSINS-DAY','SE_TITLE','EN','National Cousins Day - ~{SE_BRAND}~'),(3893,'NATIONAL-COUSINS-DAY','SE_DESCRIPTION','EN','National Cousins Day Celebrated on 24 July every year which recognizes the special relationship between cousins.'),(3894,'CYBER-MONDAY','SE_AREA_TITLE','EN','Cyber Monday'),(3895,'CYBER-MONDAY','SE_TITLE','EN','Cyber Monday - ~{SE_BRAND}~'),(3896,'CYBER-MONDAY','SE_DESCRIPTION','EN','Cyber Monday is celebrated as the Monday after Thanksgiving.It is celebrated in North America, Asia, the Middle East, South America, Australia, and Europe.'),(3897,'BLACK-FRIDAY','SE_AREA_TITLE','EN','Black Friday'),(3898,'BLACK-FRIDAY','SE_TITLE','EN','Black Friday - ~{SE_BRAND}~'),(3899,'BLACK-FRIDAY','SE_DESCRIPTION','EN','Black Friday is the day after Thanksgiving. On this day, many stores have their biggest sales of the year.\n\n'),(3900,'CANDLE-DAY','SE_AREA_TITLE','EN','Candle Day'),(3901,'CANDLE-DAY','SE_TITLE','EN','Candle Day - ~{SE_BRAND}~'),(3902,'CANDLE-DAY','SE_DESCRIPTION','EN','Candle Day will fall on the first Saturday of December every year.'),(3903,'HUSBAND-APPRECIATRION-DAY','SE_AREA_TITLE','EN','Husband Appreciation Day'),(3904,'KINGS-BIRTHDAY','SE_AREA_TITLE','EN','King\'s Birthday'),(3905,'NATIONAL-PHARMACISTS-DAY','SE_AREA_TITLE','EN','National Pharmacists Day'),(3906,'NATIONAL-POPCORN-DAY','SE_AREA_TITLE','EN','National Popcorn Day'),(3907,'GROUNDHOG-DAY','SE_AREA_TITLE','EN','Groundhog Day'),(3908,'NATIONAL-SIGNING-DAY','SE_AREA_TITLE','EN','National Signing Day'),(3909,'NATIONAL-WEAR-RED-DAY','SE_AREA_TITLE','EN','National Wear Red Day'),(3910,'NATIONAL-PIZZA-DAY','SE_AREA_TITLE','EN','National Pizza Day\r\n'),(3911,'GALENTINES-DAY','SE_AREA_TITLE','EN','Galentine\'s Day'),(3912,'NATIONAL-BAGEL-DAY','SE_AREA_TITLE','EN','National Bagel Day'),(3913,'NATIONAL-DRINK-WINE-DAY','SE_AREA_TITLE','EN','National Drink Wine Day'),(3914,'NATIONAL-MARGARITA-DAY','SE_AREA_TITLE','EN','National Margarita Day'),(3915,'NATIONAL-PANCAKE-DAY','SE_AREA_TITLE','EN','National Pancake Day'),(3916,'NATIONAL-CEREAL-DAY','SE_AREA_TITLE','EN','National Cereal Day'),(3917,'DAYLIGHT-SAVINGS','SE_AREA_TITLE','EN','Daylight savings'),(3918,'NATIONAL-NAPPING-DAY','SE_AREA_TITLE','EN','National Napping Day'),(3919,'NATIONAL-WALKOUT-DAY','SE_AREA_TITLE','EN','National Walkout Day'),(3920,'NATIONAL-PROPOSAL-DAY','SE_AREA_TITLE','EN','National Proposal Day'),(3921,'NATIONAL-PUPPY-DAY','SE_AREA_TITLE','EN','National Puppy Day'),(3922,'NATIONAL-DOCTOR-DAY','SE_AREA_TITLE','EN','National Doctor Day'),(3923,'NATIONAL-WALKING-DAY','SE_AREA_TITLE','EN','National Walking Day'),(3924,'NATIONAL-BURRITO-DAY','SE_AREA_TITLE','EN','National Burrito Day'),(3925,'NATIONAL-BEER-DAY','SE_AREA_TITLE','EN','National Beer Day'),(3926,'NATIONAL-PET-DAY','SE_AREA_TITLE','EN','National Pet Day'),(3927,'NATIONAL-GRILLED-CHEESE-DAY','SE_AREA_TITLE','EN','National Grilled Cheese Day'),(3928,'NATIONAL-DAY-OF-PRAYER','SE_AREA_TITLE','EN','National Day Of Prayer'),(3929,'NATIONAL-TOWEL-DAY','SE_AREA_TITLE','EN','National Towel Day'),(3930,'NATIONAL-BEST-FRIENDS-DAY','SE_AREA_TITLE','EN','National Best Friends Day'),(3931,'JUNETEENTH','SE_AREA_TITLE','EN','Juneteenth'),(3932,'NATIONAL-SELFIE-DAY','SE_AREA_TITLE','EN','National Selfie Day'),(3933,'NATIONAL-KISSING-DAY','SE_AREA_TITLE','EN','National Kissing Day'),(3934,'NATIONAL-FRENCH-FRY-DAY','SE_AREA_TITLE','EN','National French Fry Day'),(3935,'NATIONAL-NUDE-DAY','SE_AREA_TITLE','EN','National Nude Day'),(3936,'NATIONAL-HOT-DOG-DAY','SE_AREA_TITLE','EN','National Hot Dog Day'),(3937,'NATIONAL-ICE-CREAM-DAY','SE_AREA_TITLE','EN','National Ice Cream Day'),(3938,'AMAZON-PRIME-DAY','SE_AREA_TITLE','EN','Amazon Prime Day'),(3939,'NATIONAL-TEQUILA-DAY','SE_AREA_TITLE','EN','National Tequila Day'),(3940,'NATIONAL-CHICKEN-WING-DAY','SE_AREA_TITLE','EN','National Chicken Wing Day'),(3941,'NATIONAL-GIRLFRIENDS-DAY','SE_AREA_TITLE','EN','National Girlfriends Day'),(3942,'NATIONAL-SISTER-DAY','SE_AREA_TITLE','EN','National Sister Day'),(3943,'NATIONAL-CHEESEBURGER-DAY','SE_AREA_TITLE','EN','National Cheeseburger Day'),(3944,'NATIONAL-BOYFRIENDS-DAY','SE_AREA_TITLE','EN','National Boyfriends Day'),(3945,'NATIONAL-VODKA-DAY','SE_AREA_TITLE','EN','National Vodka Day'),(3946,'LEIF-ERIKSON-DAY','SE_AREA_TITLE','EN','Leif Erikson Day'),(3947,'SWEETEST-DAY','SE_AREA_TITLE','EN','Sweetest Day'),(3948,'NATIONAL-CAT-DAY','SE_AREA_TITLE','EN','National Cat Day'),(3949,'NATIONAL-SANDWICH-DAY','SE_AREA_TITLE','EN','National Sandwich Day '),(3950,'NATIONAL-PASTRY-DAY','SE_AREA_TITLE','EN','National Pastry Day'),(3951,'NATIONAL-UGLY-SWEATER-DAY','SE_AREA_TITLE','EN','National Ugly Sweater day'),(3952,'NATIONAL-EMPLOYEE-APPRECIATION-DAY','SE_AREA_TITLE','EN','National Employee Appreciation Day'),(3953,'NATIONAL-Pi-DAY','SE_AREA_TITLE','EN','National Pi Day'),(3954,'NATIONAL-TACO-DAY','SE_AREA_TITLE','EN','National Taco Day'),(3955,'NATIONAL-PHARMACISTS-DAY','SE_AREA_TITLE','ES','National Pharmacists Day'),(3956,'NATIONAL-POPCORN-DAY','SE_AREA_TITLE','ES','National Popcorn Day'),(3957,'GROUNDHOG-DAY','SE_AREA_TITLE','ES','Groundhog Day'),(3958,'NATIONAL-SIGNING-DAY','SE_AREA_TITLE','ES','National Signing Day'),(3959,'NATIONAL-WEAR-RED-DAY','SE_AREA_TITLE','ES','National Wear Red Day'),(3960,'NATIONAL-PIZZA-DAY','SE_AREA_TITLE','ES','National Pizza Day\r\n'),(3961,'GALENTINES-DAY','SE_AREA_TITLE','ES','Galentine\'s Day'),(3962,'NATIONAL-BAGEL-DAY','SE_AREA_TITLE','ES','National Bagel Day'),(3963,'NATIONAL-DRINK-WINE-DAY','SE_AREA_TITLE','ES','National Drink Wine Day'),(3964,'NATIONAL-MARGARITA-DAY','SE_AREA_TITLE','ES','National Margarita Day'),(3965,'NATIONAL-PANCAKE-DAY','SE_AREA_TITLE','ES','National Pancake Day'),(3966,'NATIONAL-CEREAL-DAY','SE_AREA_TITLE','ES','National Cereal Day'),(3967,'DAYLIGHT-SAVINGS','SE_AREA_TITLE','ES','Daylight savings'),(3968,'NATIONAL-NAPPING-DAY','SE_AREA_TITLE','ES','National Napping Day'),(3969,'NATIONAL-WALKOUT-DAY','SE_AREA_TITLE','ES','National Walkout Day'),(3970,'NATIONAL-PROPOSAL-DAY','SE_AREA_TITLE','ES','National Proposal Day'),(3971,'NATIONAL-PUPPY-DAY','SE_AREA_TITLE','ES','National Puppy Day'),(3972,'NATIONAL-DOCTOR-DAY','SE_AREA_TITLE','ES','National Doctor Day'),(3973,'NATIONAL-WALKING-DAY','SE_AREA_TITLE','ES','National Walking Day'),(3974,'NATIONAL-BURRITO-DAY','SE_AREA_TITLE','ES','National Burrito Day'),(3975,'NATIONAL-BEER-DAY','SE_AREA_TITLE','ES','National Beer Day'),(3976,'NATIONAL-PET-DAY','SE_AREA_TITLE','ES','National Pet Day'),(3977,'NATIONAL-GRILLED-CHEESE-DAY','SE_AREA_TITLE','ES','National Grilled Cheese Day'),(3978,'NATIONAL-DAY-OF-PRAYER','SE_AREA_TITLE','ES','National Day Of Prayer'),(3979,'NATIONAL-TOWEL-DAY','SE_AREA_TITLE','ES','National Towel Day'),(3980,'NATIONAL-BEST-FRIENDS-DAY','SE_AREA_TITLE','ES','National Best Friends Day'),(3981,'JUNETEENTH','SE_AREA_TITLE','ES','Juneteenth'),(3982,'NATIONAL-SELFIE-DAY','SE_AREA_TITLE','ES','National Selfie Day'),(3983,'NATIONAL-KISSING-DAY','SE_AREA_TITLE','ES','National Kissing Day'),(3984,'NATIONAL-FRENCH-FRY-DAY','SE_AREA_TITLE','ES','National French Fry Day'),(3985,'NATIONAL-NUDE-DAY','SE_AREA_TITLE','ES','National Nude Day'),(3986,'NATIONAL-HOT-DOG-DAY','SE_AREA_TITLE','ES','National Hot Dog Day'),(3987,'NATIONAL-ICE-CREAM-DAY','SE_AREA_TITLE','ES','National Ice Cream Day'),(3988,'AMAZON-PRIME-DAY','SE_AREA_TITLE','ES','Amazon Prime Day'),(3989,'NATIONAL-TEQUILA-DAY','SE_AREA_TITLE','ES','National Tequila Day'),(3990,'NATIONAL-CHICKEN-WING-DAY','SE_AREA_TITLE','ES','National Chicken Wing Day'),(3991,'NATIONAL-GIRLFRIENDS-DAY','SE_AREA_TITLE','ES','National Girlfriends Day'),(3992,'NATIONAL-SISTER-DAY','SE_AREA_TITLE','ES','National Sister Day'),(3993,'NATIONAL-CHEESEBURGER-DAY','SE_AREA_TITLE','ES','National Cheeseburger Day'),(3994,'NATIONAL-BOYFRIENDS-DAY','SE_AREA_TITLE','ES','National Boyfriends Day'),(3995,'NATIONAL-VODKA-DAY','SE_AREA_TITLE','ES','National Vodka Day'),(3996,'LEIF-ERIKSON-DAY','SE_AREA_TITLE','ES','Leif Erikson Day'),(3997,'SWEETEST-DAY','SE_AREA_TITLE','ES','Sweetest Day'),(3998,'NATIONAL-CAT-DAY','SE_AREA_TITLE','ES','National Cat Day'),(3999,'NATIONAL-SANDWICH-DAY','SE_AREA_TITLE','ES','National Sandwich Day '),(4000,'BLACK-FRIDAY','SE_AREA_TITLE','ES','Black Friday'),(4001,'CYBER-MONDAY','SE_AREA_TITLE','ES','Cyber Monday'),(4002,'CANDLE-DAY','SE_AREA_TITLE','ES','Candle Day'),(4003,'NATIONAL-PASTRY-DAY','SE_AREA_TITLE','ES','National Pastry Day'),(4004,'NATIONAL-UGLY-SWEATER-DAY','SE_AREA_TITLE','ES','National Ugly Sweater day'),(4005,'STATEHOOD-DAY','SE_AREA_TITLE','EN','Statehood Day'),(4006,'DURGA-PUJA-BEGINS','SE_AREA_TITLE','EN','Durga Puja begins');
/*!40000 ALTER TABLE `net_locale` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `templates`
--

DROP TABLE IF EXISTS `templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(150) DEFAULT NULL,
  `type` varchar(120) DEFAULT NULL,
  `lang_key` varchar(150) DEFAULT NULL,
  `year` int(4) NOT NULL,
  `file_name` varchar(150) DEFAULT NULL,
  `supported_types` varchar(255) DEFAULT NULL,
  `is_active` varchar(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `lang_key_year` (`lang_key`,`year`)
) ENGINE=MyISAM AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `templates`
--

LOCK TABLES `templates` WRITE;
/*!40000 ALTER TABLE `templates` DISABLE KEYS */;
INSERT INTO `templates` VALUES (1,'Anna\'s Daily Planner','DAILY-PLANNER-TEMPLATES','ANNAS_DAILY_PLANNER',2020,'annas-daily-planner','pdf,docx,jpg','Y'),(2,'Daily To-Do List Planner','DAILY-PLANNER-TEMPLATES','DAILY_TO_DO_LIST_PLANNER',2020,'daily-to-do-list-planner','pdf,xlsx,jpg','Y'),(3,'Monthly Large Boxes Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_LARGE_BOXES_PRINTABLE_CALENDAR',2020,'{{YEAR}}-monthly-large-boxes-printable-calendar','pdf,doc,jpg','Y'),(4,'Classic Monthly Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','CLASSIC_MONTHLY_PRINTABLE_CALENDAR',2020,'{{YEAR}}-classic-monthly-printable-calendar','pdf,doc,jpg','Y'),(5,'Customizable Monthly Calendar With Large Space for Notes','MONTHLY-CALENDAR-TEMPLATES','CUSTOMIZABLE_MONTHLY_CALENDAR_WITH_LARGE_SPACE_FOR_NOTES',2020,'{{YEAR}}-customizable-monthly-calendar-with-large-space-for-notes','pdf,doc,jpg','Y'),(6,'Monthly Calendar With Large Space Notes','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_CALENDAR_WITH_LARGE_SPACE_NOTES',2020,'{{YEAR}}-monthly-calendar-with-large-space-notes','pdf,doc,jpg','Y'),(7,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','THREE_MONTH_PRINTABLE_CALENDAR',2020,'{{YEAR}}-three-month-printable-calendar','pdf,doc,jpg','Y'),(8,'Quarterly Horizontal Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_HORIZONTAL_CALENDAR',2020,'{{YEAR}}-quarterly-horizontal-calendar','pdf,xls,jpg','Y'),(9,'Quarterly  Calendar With Quick Notes','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_CALENDAR_WITH_QUICK_NOTES',2020,'{{YEAR}}-quarterly-calendar-with-quick-notes','pdf,jpg','Y'),(10,'Quarterly Printable Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_PRINTABLE_CALENDAR',2020,'{{YEAR}}-quarterly-printable-calendar','pdf,doc,jpg','Y'),(11,'Three Month Calendar With Large Space Notes','QUARTERLY-CALENDAR-TEMPLATES','THREE_MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES',2020,'{{YEAR}}-three-months-calendar-with-large-notes-space','pdf,doc,jpg','Y'),(12,'Annual Calendar','YEARLY-CALENDAR-TEMPLATES','ANNUAL_CALENDAR',2020,'{{YEAR}}-annual-calendar','pdf,xls,jpg','Y'),(13,'One Page Yearly Calendar','YEARLY-CALENDAR-TEMPLATES','ONE_PAGE_YEARLY_CALENDAR',2020,'{{YEAR}}-one-page-yearly-calendar','pdf,xls,jpg','Y'),(14,'Vertical Annual Calendar','YEARLY-CALENDAR-TEMPLATES','VERTICAL_ANNUAL_CALENDAR',2020,'{{YEAR}}-vertical-annual-calendar','pdf,xls,jpg','Y'),(15,'Year At A Glance Calendar','YEARLY-CALENDAR-TEMPLATES','YEAR_AT_A_GLANCE_CALENDAR',2020,'{{YEAR}}-year-at-a-glance-calendar','pdf,doc,jpg','Y'),(16,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','FOUR_MONTH_EDITABLE_CALENDAR',2020,'{{YEAR}}-four-month-editable-calendar','pdf,doc,jpg','Y'),(17,'Anna\'s Daily Planner','DAILY-PLANNER-TEMPLATES','ANNAS_DAILY_PLANNER',2021,'annas-daily-planner','pdf,docx,jpg','Y'),(18,'Daily To-Do List Planner','DAILY-PLANNER-TEMPLATES','DAILY_TO_DO_LIST_PLANNER',2021,'daily-to-do-list-planner','pdf,xlsx,jpg','Y'),(19,'Monthly Large Boxes Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_LARGE_BOXES_PRINTABLE_CALENDAR',2021,'{{YEAR}}-monthly-large-boxes-printable-calendar','pdf,docx,jpg','Y'),(20,'Classic Monthly Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','CLASSIC_MONTHLY_PRINTABLE_CALENDAR',2021,'{{YEAR}}-classic-monthly-printable-calendar','pdf,doc,jpg','Y'),(21,'Customizable Monthly Calendar With Large Space for Notes','MONTHLY-CALENDAR-TEMPLATES','CUSTOMIZABLE_MONTHLY_CALENDAR_WITH_LARGE_SPACE_FOR_NOTES',2021,'{{YEAR}}-customizable-monthly-calendar-with-large-space-for-notes','pdf,docx,jpg','Y'),(22,'Monthly Calendar With Large Space Notes','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_CALENDAR_WITH_LARGE_SPACE_NOTES',2021,'{{YEAR}}-monthly-calendar-with-large-space-notes','pdf,doc,jpg','Y'),(23,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','THREE_MONTH_PRINTABLE_CALENDAR',2021,'{{YEAR}}-three-month-printable-calendar','pdf,docx,jpg','Y'),(24,'Quarterly Horizontal Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_HORIZONTAL_CALENDAR',2021,'{{YEAR}}-quarterly-horizontal-calendar','pdf,xlsx,jpg','Y'),(25,'Quarterly  Calendar With Quick Notes','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_CALENDAR_WITH_QUICK_NOTES',2021,'{{YEAR}}-quarterly-calendar-with-quick-notes','pdf,jpg','Y'),(26,'Quarterly Printable Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_PRINTABLE_CALENDAR',2021,'{{YEAR}}-quarterly-printable-calendar','pdf,doc,jpg','Y'),(27,'Three Month Calendar With Large Space Notes','QUARTERLY-CALENDAR-TEMPLATES','THREE_MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES',2021,'{{YEAR}}-three-months-calendar-with-large-notes-space','pdf,doc,jpg','Y'),(28,'Annual Calendar','YEARLY-CALENDAR-TEMPLATES','ANNUAL_CALENDAR',2021,'{{YEAR}}-annual-calendar','pdf,xls,jpg','Y'),(29,'One Page Yearly Calendar','YEARLY-CALENDAR-TEMPLATES','ONE_PAGE_YEARLY_CALENDAR',2021,'{{YEAR}}-one-page-yearly-calendar','pdf,xls,jpg','Y'),(30,'Vertical Annual Calendar','YEARLY-CALENDAR-TEMPLATES','VERTICAL_ANNUAL_CALENDAR',2021,'{{YEAR}}-vertical-annual-calendar','pdf,xls,jpg','Y'),(31,'Year At A Glance Calendar','YEARLY-CALENDAR-TEMPLATES','YEAR_AT_A_GLANCE_CALENDAR',2021,'{{YEAR}}-year-at-a-glance-calendar','pdf,docx,jpg','Y'),(32,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','FOUR_MONTH_EDITABLE_CALENDAR',2021,'{{YEAR}}-four-month-editable-calendar','pdf,docx,jpg','Y'),(33,'Anna\'s Daily Planner','DAILY-PLANNER-TEMPLATES','ANNAS_DAILY_PLANNER',2022,'annas-daily-planner','pdf,docx,jpg','Y'),(34,'Daily To-Do List Planner','DAILY-PLANNER-TEMPLATES','DAILY_TO_DO_LIST_PLANNER',2022,'daily-to-do-list-planner','pdf,xlsx,jpg','Y'),(35,'Monthly Large Boxes Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_LARGE_BOXES_PRINTABLE_CALENDAR',2022,'{{YEAR}}-monthly-large-boxes-printable-calendar','pdf,docx,jpg','Y'),(36,'Classic Monthly Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','CLASSIC_MONTHLY_PRINTABLE_CALENDAR',2022,'{{YEAR}}-classic-monthly-printable-calendar','pdf,doc,jpg','Y'),(37,'Customizable Monthly Calendar With Large Space for Notes','MONTHLY-CALENDAR-TEMPLATES','CUSTOMIZABLE_MONTHLY_CALENDAR_WITH_LARGE_SPACE_FOR_NOTES',2022,'{{YEAR}}-customizable-monthly-calendar-with-large-space-for-notes','pdf,docx,jpg','Y'),(38,'Monthly Calendar With Large Space Notes','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_CALENDAR_WITH_LARGE_SPACE_NOTES',2022,'{{YEAR}}-monthly-calendar-template-with-large-space-notes','pdf,doc,jpg','Y'),(39,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','THREE_MONTH_PRINTABLE_CALENDAR',2022,'{{YEAR}}-three-month-printable-calendar','pdf,docx,jpg','Y'),(40,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','FOUR_MONTH_EDITABLE_CALENDAR',2022,'{{YEAR}}-four-month-editable-calendar','pdf,docx,jpg','Y'),(43,'Quarterly Printable Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_PRINTABLE_CALENDAR',2022,'{{YEAR}}-quarterly-printable-calendar','pdf,doc,jpg','Y'),(44,'Three Month Calendar With Large Space Notes','QUARTERLY-CALENDAR-TEMPLATES','THREE_MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES',2022,'{{YEAR}}-three-months-calendar-with-large-notes-space','pdf,doc,jpg','Y'),(45,'Annual Calendar','YEARLY-CALENDAR-TEMPLATES','ANNUAL_CALENDAR',2022,'{{YEAR}}-annual-calendar','pdf,xls,jpg','Y'),(46,'One Page Yearly Calendar','YEARLY-CALENDAR-TEMPLATES','ONE_PAGE_YEARLY_CALENDAR',2022,'{{YEAR}}-one-page-yearly-calendar','pdf,xls,jpg','Y'),(47,'Year At A Glance Calendar','YEARLY-CALENDAR-TEMPLATES','YEAR_AT_A_GLANCE_CALENDAR',2022,'{{YEAR}}-year-at-a-glance-calendar','pdf,docx,jpg','Y'),(48,'Quarterly Horizontal Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_HORIZONTAL_CALENDAR',2022,'{{YEAR}}-quarterly-horizontal-calendar','pdf,xlsx,jpg','Y'),(49,'Quarterly  Calendar With Quick Notes','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_CALENDAR_WITH_QUICK_NOTES',2022,'{{YEAR}}-quarterly-calendar-with-quick-notes','pdf,jpg','Y'),(50,'Anna\'s Daily Planner','DAILY-PLANNER-TEMPLATES','ANNAS_DAILY_PLANNER',2023,'annas-daily-planner','pdf,docx,jpg','Y'),(51,'Daily To-Do List Planner','DAILY-PLANNER-TEMPLATES','DAILY_TO_DO_LIST_PLANNER',2023,'daily-to-do-list-planner','pdf,xlsx,jpg','Y'),(52,'Monthly Large Boxes Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_LARGE_BOXES_PRINTABLE_CALENDAR',2023,'{{YEAR}}-monthly-large-boxes-printable-calendar','pdf,doc,jpg','Y'),(53,'Classic Monthly Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','CLASSIC_MONTHLY_PRINTABLE_CALENDAR',2023,'{{YEAR}}-classic-monthly-printable-calendar','pdf,docx,jpg','Y'),(54,'Customizable Monthly Calendar With Large Space for Notes','MONTHLY-CALENDAR-TEMPLATES','CUSTOMIZABLE_MONTHLY_CALENDAR_WITH_LARGE_SPACE_FOR_NOTES',2023,'{{YEAR}}-customizable-monthly-calendar-with-large-space-for-notes','pdf,doc,jpg','Y'),(55,'Monthly Calendar With Large Space Notes','MONTHLY-CALENDAR-TEMPLATES','MONTHLY_CALENDAR_WITH_LARGE_SPACE_NOTES',2023,'{{YEAR}}-monthly-calendar-with-large-space-notes','pdf,doc,jpg','Y'),(56,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','THREE_MONTH_PRINTABLE_CALENDAR',2023,'{{YEAR}}-three-month-printable-calendar','pdf,doc,jpg','Y'),(57,'Quarterly Horizontal Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_HORIZONTAL_CALENDAR',2023,'{{YEAR}}-quarterly-horizontal-calendar','pdf,xlsx,jpg','Y'),(58,'Quarterly Calendar With Quick Notes','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_CALENDAR_WITH_QUICK_NOTES',2023,'{{YEAR}}-quarterly-calendar-with-quick-notes','pdf,jpg','Y'),(59,'Quarterly Printable Calendar','QUARTERLY-CALENDAR-TEMPLATES','QUARTERLY_PRINTABLE_CALENDAR',2023,'{{YEAR}}-quarterly-printable-calendar','pdf,docx,jpg','Y'),(60,'Three Month Calendar With Large Space Notes','QUARTERLY-CALENDAR-TEMPLATES','THREE_MONTH_CALENDAR_WITH_LARGE_SPACE_NOTES',2023,'{{YEAR}}-three-months-calendar-with-large-space-notes','pdf,docx,jpg','Y'),(61,'Annual Calendar','YEARLY-CALENDAR-TEMPLATES','ANNUAL_CALENDAR',2023,'{{YEAR}}-annual-calendar','pdf,xlsx,jpg','Y'),(62,'One Page Yearly Calendar','YEARLY-CALENDAR-TEMPLATES','ONE_PAGE_YEARLY_CALENDAR',2023,'{{YEAR}}-one-page-yearly-calendar','pdf,xls,jpg','Y'),(63,'Vertical Annual Calendar','YEARLY-CALENDAR-TEMPLATES','VERTICAL_ANNUAL_CALENDAR',2023,'{{YEAR}}-vertical-annual-calendar','pdf,xls,jpg','Y'),(64,'Year At A Glance Calendar','YEARLY-CALENDAR-TEMPLATES','YEAR_AT_A_GLANCE_CALENDAR',2023,'{{YEAR}}-year-at-a-glance-calendar','pdf,docx,jpg','Y'),(65,'Three Month Printable Calendar','MONTHLY-CALENDAR-TEMPLATES','FOUR_MONTH_EDITABLE_CALENDAR',2023,'{{YEAR}}-four-month-editable-calendar','pdf,doc,jpg','Y');
/*!40000 ALTER TABLE `templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'calendarholidays_ch'
--
/*!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 2023-12-18 16:28:42