diff --git a/README.rst b/README.rst index 07d14ea20..564c1b2ee 100644 --- a/README.rst +++ b/README.rst @@ -528,7 +528,7 @@ All other default values are highlighted with bold: * - Iran - IR - - - en_US, **fa** + - en_US, **fa_IR** - * - Ireland - IE diff --git a/holidays/calendars/persian.py b/holidays/calendars/persian.py index e6fcda449..fd33ead54 100644 --- a/holidays/calendars/persian.py +++ b/holidays/calendars/persian.py @@ -26,6 +26,12 @@ class _Persian: START_YEAR = 1901 END_YEAR = 2100 + def is_leap_year(self, year: int) -> bool: + """ + Is Persian year that begins in the specified Gregorian year a leap year. + """ + return (year % 33) in {3, 7, 11, 16, 20, 24, 28, 32} + def new_year_date(self, year: int) -> Optional[date]: """ Return Gregorian date of Persian new year (1 Farvardin) in a given Gregorian year. diff --git a/holidays/countries/iran.py b/holidays/countries/iran.py index ce7847f30..863ca5ff2 100644 --- a/holidays/countries/iran.py +++ b/holidays/countries/iran.py @@ -12,7 +12,22 @@ from gettext import gettext as tr -from holidays.calendars.gregorian import FRI +from holidays.calendars import _CustomIslamicHolidays +from holidays.calendars.gregorian import ( + JAN, + FEB, + MAR, + APR, + MAY, + JUN, + JUL, + AUG, + SEP, + OCT, + NOV, + DEC, + FRI, +) from holidays.groups import IslamicHolidays, PersianCalendarHolidays from holidays.holiday_base import HolidayBase @@ -20,28 +35,43 @@ class Iran(HolidayBase, IslamicHolidays, PersianCalendarHolidays): """ References: - - https://en.wikipedia.org/wiki/Public_holidays_in_Iran - - https://fa.wikipedia.org/wiki/تعطیلات_عمومی_در_ایران - - https://en.wikipedia.org/wiki/Workweek_and_weekend + - https://en.wikipedia.org/wiki/Public_holidays_in_Iran + - https://fa.wikipedia.org/wiki/تعطیلات_عمومی_در_ایران + - https://www.time.ir + - https://web.archive.org/web/20170222200759/http://www.hvm.ir/LawDetailNews.aspx?id=9017 + - https://en.wikipedia.org/wiki/Workweek_and_weekend """ country = "IR" - default_language = "fa" + default_language = "fa_IR" # %s (estimated). estimated_label = tr("(تخمین زده) %s") - supported_languages = ("en_US", "fa") + supported_languages = ("en_US", "fa_IR") start_year = 1980 weekend = {FRI} def __init__(self, *args, **kwargs): - IslamicHolidays.__init__(self) + IslamicHolidays.__init__(self, IranIslamicHolidays) PersianCalendarHolidays.__init__(self) super().__init__(*args, **kwargs) def _populate_public_holidays(self): - # Persian New Year. - name = tr("نوروز") - self._add_nowruz_day(name) + # Persian calendar holidays. + + # Islamic Revolution Day. + self._add_islamic_revolution_day(tr("پیروزی انقلاب اسلامی")) + + # Iranian Oil Industry Nationalization Day. + self._add_oil_nationalization_day(tr("روز ملی شدن صنعت نفت ایران")) + + # Last Day of Year. + self._add_last_day_of_year(tr("آخرین روز سال")) + + # Nowruz. + self._add_nowruz_day(tr("جشن نوروز")) + + # Nowruz Holiday. + name = tr("عیدنوروز") self._add_nowruz_day_two(name) self._add_nowruz_day_three(name) self._add_nowruz_day_four(name) @@ -52,67 +82,66 @@ def _populate_public_holidays(self): # Nature's Day. self._add_natures_day(tr("روز طبیعت")) - # Death of Khomeini. - self._add_death_of_khomeini_day(tr("درگذشت سید روح‌الله خمینی")) + # Death of Imam Khomeini. + self._add_death_of_khomeini_day(tr("رحلت حضرت امام خمینی")) - # Khordad National Uprising. - self._add_khordad_uprising_day(tr("تظاهرات ۱۵ خرداد")) + # 15 Khordad Uprising. + self._add_khordad_uprising_day(tr("قیام 15 خرداد")) - # Islamic Revolution Day. - self._add_islamic_revolution_day(tr("پیروزی انقلاب ۵۷")) - - # Iranian Oil Industry Nationalization Day. - self._add_oil_nationalization_day(tr("ملی‌شدن صنعت نفت")) + # Islamic holidays. # Tasua. - self._add_tasua_day(tr("تاسوعا")) + self._add_tasua_day(tr("تاسوعای حسینی")) # Ashura. - self._add_ashura_day(tr("کشته‌شدن حسین بن علی، عاشورا")) + self._add_ashura_day(tr("عاشورای حسینی")) # Arbaeen. - self._add_arbaeen_day(tr("چهلم حسین بن علی اربعین")) + self._add_arbaeen_day(tr("اربعین حسینی")) - # Demise of Prophet Muhammad and Hasan ibn Ali. - self._add_prophet_death_day(tr("کشته‌شدن حسن مجتبی و درگذشت محمد")) + # Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali. + self._add_prophet_death_day(tr("رحلت رسول اکرم؛شهادت امام حسن مجتبی علیه السلام")) # Martyrdom of Ali al-Rida. - self._add_ali_al_rida_death_day(tr("کشته‌شدن علی بن موسی الرضا")) + self._add_ali_al_rida_death_day(tr("شهادت امام رضا علیه السلام")) # Martyrdom of Hasan al-Askari. - self._add_hasan_al_askari_death_day(tr("کشته‌شدن حسن عسکری")) + self._add_hasan_al_askari_death_day(tr("شهادت امام حسن عسکری علیه السلام")) - # Birthday of Muhammad and Ja'far al-Sadiq. - self._add_sadiq_birthday_day(tr("زادروز محمد و جعفر صادق")) + # Birthday of Muhammad and Imam Ja'far al-Sadiq. + self._add_sadiq_birthday_day(tr("میلاد رسول اکرم و امام جعفر صادق علیه السلام")) # Martyrdom of Fatima. - self._add_fatima_death_day(tr("کشته‌شدن فاطمه زهرا")) + self._add_fatima_death_day(tr("شهادت حضرت فاطمه زهرا سلام الله علیها")) - # Birthday of Ali. - self._add_ali_birthday_day(tr("زادروز علی بن ابی‌طالب")) + # Birthday of Imam Ali. + self._add_ali_birthday_day(tr("ولادت امام علی علیه السلام و روز پدر")) # Isra' and Mi'raj. - self._add_isra_and_miraj_day(tr("مبعث")) + self._add_isra_and_miraj_day(tr("مبعث رسول اکرم (ص)")) - # Birthday of Mahdi. - self._add_imam_mahdi_birthday_day(tr("زادروز حجت بن الحسن")) + self._add_imam_mahdi_birthday_day( + # Birthday of Mahdi. + tr("ولادت حضرت قائم عجل الله تعالی فرجه و جشن نیمه شعبان") + ) - # Martyrdom of Ali. - self._add_ali_death_day(tr("کشته‌شدن علی بن ابی‌طالب")) + # Martyrdom of Imam Ali. + self._add_ali_death_day(tr("شهادت حضرت علی علیه السلام")) # Eid al-Fitr. - name = tr("عید فطر") - self._add_eid_al_fitr_day(name) - self._add_eid_al_fitr_day_two(name) + self._add_eid_al_fitr_day(tr("عید سعید فطر")) - # Martyrdom of Ja'far al-Sadiq. - self._add_sadiq_death_day(tr("کشته‌شدن جعفر صادق")) + # Eid al-Fitr Holiday. + self._add_eid_al_fitr_day_two(tr("تعطیل به مناسبت عید سعید فطر")) + + # Martyrdom of Imam Ja'far al-Sadiq. + self._add_sadiq_death_day(tr("شهادت امام جعفر صادق علیه السلام")) # Eid al-Adha. - self._add_eid_al_adha_day(tr("عید قربان")) + self._add_eid_al_adha_day(tr("عید سعید قربان")) # Eid al-Ghadeer. - self._add_eid_al_ghadir_day(tr("عید غدیر")) + self._add_eid_al_ghadir_day(tr("عید سعید غدیر خم")) class IR(Iran): @@ -121,3 +150,453 @@ class IR(Iran): class IRN(Iran): pass + + +class IranIslamicHolidays(_CustomIslamicHolidays): + ALI_AL_RIDA_DEATH_DATES = { + 2001: (MAY, 24), + 2002: (MAY, 13), + 2003: (MAY, 2), + 2004: (APR, 20), + 2005: (APR, 9), + 2006: (MAR, 30), + 2007: (MAR, 20), + 2008: (MAR, 8), + 2009: (FEB, 26), + 2010: (FEB, 15), + 2011: (FEB, 4), + 2012: (JAN, 24), + 2013: (JAN, 12), + 2014: ((JAN, 2), (DEC, 23)), + 2015: (DEC, 12), + 2016: (NOV, 30), + 2017: (NOV, 19), + 2018: (NOV, 8), + 2019: (OCT, 29), + 2020: (OCT, 17), + 2021: (OCT, 7), + 2022: (SEP, 27), + 2023: (SEP, 16), + 2024: (SEP, 4), + 2025: (AUG, 24), + } + + ALI_BIRTHDAY_DATES = { + 2001: (OCT, 1), + 2002: (SEP, 21), + 2003: (SEP, 10), + 2004: (AUG, 30), + 2005: (AUG, 19), + 2006: (AUG, 8), + 2007: (JUL, 28), + 2008: (JUL, 16), + 2009: (JUL, 6), + 2010: (JUN, 26), + 2011: (JUN, 16), + 2012: (JUN, 4), + 2013: (MAY, 24), + 2014: (MAY, 13), + 2015: (MAY, 2), + 2016: (APR, 21), + 2017: (APR, 11), + 2018: (MAR, 31), + 2019: (MAR, 20), + 2020: (MAR, 8), + 2021: (FEB, 25), + 2022: (FEB, 15), + 2023: (FEB, 4), + 2024: (JAN, 25), + 2025: (JAN, 14), + } + + ALI_DEATH_DATES = { + 2001: (DEC, 7), + 2002: (NOV, 27), + 2003: (NOV, 16), + 2004: (NOV, 5), + 2005: (OCT, 25), + 2006: (OCT, 15), + 2007: (OCT, 3), + 2008: (SEP, 22), + 2009: (SEP, 11), + 2010: (SEP, 1), + 2011: (AUG, 21), + 2012: (AUG, 10), + 2013: (JUL, 30), + 2014: (JUL, 19), + 2015: (JUL, 8), + 2016: (JUN, 27), + 2017: (JUN, 16), + 2018: (JUN, 6), + 2019: (MAY, 27), + 2020: (MAY, 15), + 2021: (MAY, 4), + 2022: (APR, 23), + 2023: (APR, 12), + 2024: (APR, 1), + 2025: (MAR, 22), + } + + ARBAEEN_DATES = { + 2001: (MAY, 14), + 2002: (MAY, 3), + 2003: (APR, 23), + 2004: (APR, 11), + 2005: (MAR, 31), + 2006: (MAR, 21), + 2007: (MAR, 10), + 2008: (FEB, 28), + 2009: (FEB, 16), + 2010: (FEB, 5), + 2011: (JAN, 25), + 2012: (JAN, 14), + 2013: ((JAN, 3), (DEC, 23)), + 2014: (DEC, 13), + 2015: (DEC, 2), + 2016: (NOV, 20), + 2017: (NOV, 9), + 2018: (OCT, 30), + 2019: (OCT, 19), + 2020: (OCT, 8), + 2021: (SEP, 27), + 2022: (SEP, 17), + 2023: (SEP, 6), + 2024: (AUG, 25), + 2025: (AUG, 14), + } + + ASHURA_DATES = { + 2001: (APR, 5), + 2002: (MAR, 25), + 2003: (MAR, 14), + 2004: (MAR, 2), + 2005: (FEB, 20), + 2006: (FEB, 9), + 2007: (JAN, 30), + 2008: (JAN, 19), + 2009: ((JAN, 7), (DEC, 27)), + 2010: (DEC, 16), + 2011: (DEC, 6), + 2012: (NOV, 25), + 2013: (NOV, 14), + 2014: (NOV, 4), + 2015: (OCT, 24), + 2016: (OCT, 12), + 2017: (OCT, 1), + 2018: (SEP, 20), + 2019: (SEP, 10), + 2020: (AUG, 30), + 2021: (AUG, 19), + 2022: (AUG, 8), + 2023: (JUL, 28), + 2024: (JUL, 16), + 2025: (JUL, 6), + } + + EID_AL_ADHA_DATES = { + 2001: (MAR, 6), + 2002: (FEB, 23), + 2003: (FEB, 12), + 2004: (FEB, 2), + 2005: (JAN, 21), + 2006: ((JAN, 11), (DEC, 31)), + 2007: (DEC, 21), + 2008: (DEC, 9), + 2009: (NOV, 28), + 2010: (NOV, 17), + 2011: (NOV, 7), + 2012: (OCT, 26), + 2013: (OCT, 16), + 2014: (OCT, 5), + 2015: (SEP, 24), + 2016: (SEP, 12), + 2017: (SEP, 1), + 2018: (AUG, 22), + 2019: (AUG, 12), + 2020: (JUL, 31), + 2021: (JUL, 21), + 2022: (JUL, 10), + 2023: (JUN, 29), + 2024: (JUN, 17), + 2025: (JUN, 6), + } + + EID_AL_FITR_DATES = { + 2001: (DEC, 16), + 2002: (DEC, 6), + 2003: (NOV, 26), + 2004: (NOV, 14), + 2005: (NOV, 4), + 2006: (OCT, 24), + 2007: (OCT, 13), + 2008: (OCT, 1), + 2009: (SEP, 20), + 2010: (SEP, 10), + 2011: (AUG, 31), + 2012: (AUG, 19), + 2013: (AUG, 9), + 2014: (JUL, 29), + 2015: (JUL, 18), + 2016: (JUL, 6), + 2017: (JUN, 26), + 2018: (JUN, 15), + 2019: (JUN, 5), + 2020: (MAY, 24), + 2021: (MAY, 13), + 2022: (MAY, 3), + 2023: (APR, 22), + 2024: (APR, 10), + 2025: (MAR, 31), + } + + EID_AL_GHADIR_DATES = { + 2001: (MAR, 14), + 2002: (MAR, 3), + 2003: (FEB, 20), + 2004: (FEB, 10), + 2005: (JAN, 29), + 2006: (JAN, 19), + 2007: ((JAN, 8), (DEC, 29)), + 2008: (DEC, 17), + 2009: (DEC, 6), + 2010: (NOV, 25), + 2011: (NOV, 15), + 2012: (NOV, 3), + 2013: (OCT, 24), + 2014: (OCT, 13), + 2015: (OCT, 2), + 2016: (SEP, 20), + 2017: (SEP, 9), + 2018: (AUG, 30), + 2019: (AUG, 20), + 2020: (AUG, 8), + 2021: (JUL, 29), + 2022: (JUL, 18), + 2023: (JUL, 7), + 2024: (JUN, 25), + 2025: (JUN, 14), + } + + FATIMA_DEATH_DATES = { + 2001: (AUG, 23), + 2002: (AUG, 12), + 2003: (AUG, 2), + 2004: (JUL, 21), + 2005: (JUL, 10), + 2006: (JUN, 29), + 2007: (JUN, 18), + 2008: (JUN, 7), + 2009: (MAY, 28), + 2010: (MAY, 17), + 2011: (MAY, 7), + 2012: (APR, 25), + 2013: (APR, 14), + 2014: (APR, 3), + 2015: (MAR, 24), + 2016: (MAR, 13), + 2017: (MAR, 2), + 2018: (FEB, 20), + 2019: (FEB, 9), + 2020: (JAN, 29), + 2021: (JAN, 17), + 2022: ((JAN, 6), (DEC, 27)), + 2023: (DEC, 17), + 2024: (DEC, 5), + 2025: (NOV, 24), + } + + HASAN_AL_ASKARI_DEATH_DATES = { + 2001: (JUN, 1), + 2002: (MAY, 21), + 2003: (MAY, 10), + 2004: (APR, 28), + 2005: (APR, 17), + 2006: (APR, 7), + 2007: (MAR, 28), + 2008: (MAR, 16), + 2009: (MAR, 6), + 2010: (FEB, 23), + 2011: (FEB, 12), + 2012: (FEB, 1), + 2013: (JAN, 20), + 2014: ((JAN, 10), (DEC, 31)), + 2015: (DEC, 20), + 2016: (DEC, 8), + 2017: (NOV, 27), + 2018: (NOV, 16), + 2019: (NOV, 6), + 2020: (OCT, 25), + 2021: (OCT, 15), + 2022: (OCT, 5), + 2023: (SEP, 24), + 2024: (SEP, 12), + 2025: (SEP, 1), + } + + IMAM_MAHDI_BIRTHDAY_DATES = { + 2001: (NOV, 1), + 2002: (OCT, 22), + 2003: (OCT, 12), + 2004: (OCT, 1), + 2005: (SEP, 20), + 2006: (SEP, 9), + 2007: (AUG, 29), + 2008: (AUG, 17), + 2009: (AUG, 7), + 2010: (JUL, 27), + 2011: (JUL, 17), + 2012: (JUL, 5), + 2013: (JUN, 24), + 2014: (JUN, 13), + 2015: (JUN, 3), + 2016: (MAY, 22), + 2017: (MAY, 12), + 2018: (MAY, 2), + 2019: (APR, 21), + 2020: (APR, 9), + 2021: (MAR, 29), + 2022: (MAR, 18), + 2023: (MAR, 8), + 2024: (FEB, 25), + 2025: (FEB, 14), + } + + ISRA_AND_MIRAJ_DATES = { + 2001: (OCT, 15), + 2002: (OCT, 5), + 2003: (SEP, 24), + 2004: (SEP, 13), + 2005: (SEP, 2), + 2006: (AUG, 22), + 2007: (AUG, 11), + 2008: (JUL, 30), + 2009: (JUL, 20), + 2010: (JUL, 10), + 2011: (JUN, 30), + 2012: (JUN, 18), + 2013: (JUN, 7), + 2014: (MAY, 27), + 2015: (MAY, 16), + 2016: (MAY, 5), + 2017: (APR, 25), + 2018: (APR, 14), + 2019: (APR, 3), + 2020: (MAR, 22), + 2021: (MAR, 11), + 2022: (MAR, 1), + 2023: (FEB, 18), + 2024: (FEB, 8), + 2025: (JAN, 28), + } + + PROPHET_DEATH_DATES = { + 2001: (MAY, 22), + 2002: (MAY, 11), + 2003: (MAY, 1), + 2004: (APR, 19), + 2005: (APR, 8), + 2006: (MAR, 29), + 2007: (MAR, 18), + 2008: (MAR, 7), + 2009: (FEB, 24), + 2010: (FEB, 13), + 2011: (FEB, 2), + 2012: (JAN, 22), + 2013: ((JAN, 11), (DEC, 31)), + 2014: (DEC, 21), + 2015: (DEC, 10), + 2016: (NOV, 28), + 2017: (NOV, 17), + 2018: (NOV, 7), + 2019: (OCT, 27), + 2020: (OCT, 16), + 2021: (OCT, 5), + 2022: (SEP, 25), + 2023: (SEP, 14), + 2024: (SEP, 2), + 2025: (AUG, 22), + } + + SADIQ_BIRTHDAY_DATES = { + 2001: (JUN, 10), + 2002: (MAY, 30), + 2003: (MAY, 19), + 2004: (MAY, 7), + 2005: (APR, 26), + 2006: (APR, 16), + 2007: (APR, 6), + 2008: (MAR, 25), + 2009: (MAR, 15), + 2010: (MAR, 4), + 2011: (FEB, 21), + 2012: (FEB, 10), + 2013: (JAN, 29), + 2014: (JAN, 19), + 2015: ((JAN, 9), (DEC, 29)), + 2016: (DEC, 17), + 2017: (DEC, 6), + 2018: (NOV, 25), + 2019: (NOV, 15), + 2020: (NOV, 3), + 2021: (OCT, 24), + 2022: (OCT, 14), + 2023: (OCT, 3), + 2024: (SEP, 21), + 2025: (SEP, 10), + } + + SADIQ_DEATH_DATES = { + 2001: (JAN, 20), + 2002: ((JAN, 9), (DEC, 30)), + 2003: (DEC, 20), + 2004: (DEC, 8), + 2005: (NOV, 28), + 2006: (NOV, 17), + 2007: (NOV, 6), + 2008: (OCT, 25), + 2009: (OCT, 14), + 2010: (OCT, 4), + 2011: (SEP, 24), + 2012: (SEP, 12), + 2013: (SEP, 2), + 2014: (AUG, 22), + 2015: (AUG, 11), + 2016: (JUL, 30), + 2017: (JUL, 20), + 2018: (JUL, 9), + 2019: (JUN, 29), + 2020: (JUN, 17), + 2021: (JUN, 6), + 2022: (MAY, 27), + 2023: (MAY, 16), + 2024: (MAY, 4), + 2025: (APR, 24), + } + + TASUA_DATES = { + 2001: (APR, 4), + 2002: (MAR, 24), + 2003: (MAR, 13), + 2004: (MAR, 1), + 2005: (FEB, 19), + 2006: (FEB, 8), + 2007: (JAN, 29), + 2008: (JAN, 18), + 2009: ((JAN, 6), (DEC, 26)), + 2010: (DEC, 15), + 2011: (DEC, 5), + 2012: (NOV, 24), + 2013: (NOV, 13), + 2014: (NOV, 3), + 2015: (OCT, 23), + 2016: (OCT, 11), + 2017: (SEP, 30), + 2018: (SEP, 19), + 2019: (SEP, 9), + 2020: (AUG, 29), + 2021: (AUG, 18), + 2022: (AUG, 7), + 2023: (JUL, 27), + 2024: (JUL, 15), + 2025: (JUL, 5), + } diff --git a/holidays/groups/persian.py b/holidays/groups/persian.py index c4a2cba25..57b936306 100644 --- a/holidays/groups/persian.py +++ b/holidays/groups/persian.py @@ -85,6 +85,18 @@ def _add_khordad_uprising_day(self, name: str) -> Optional[date]: name, self._persian_calendar.persian_to_gregorian(self._year, 3, 15) ) + def _add_last_day_of_year(self, name: str) -> Optional[date]: + """ + If previous year is a leap year, its 12th month (Esfand) has 30 days, + and this 30th day is a holiday. + """ + if self._persian_calendar.is_leap_year(self._year - 1): + return self._add_persian_calendar_holiday( + name, self._persian_calendar.new_year_date(self._year), days_delta=-1 + ) + else: + return None + def _add_natures_day(self, name: str) -> Optional[date]: """ Add Nature's Day, or Sizdah Bedar (13th day of the 1st month). diff --git a/holidays/locale/en_US/LC_MESSAGES/IR.po b/holidays/locale/en_US/LC_MESSAGES/IR.po index adc149a18..b7eefcc63 100644 --- a/holidays/locale/en_US/LC_MESSAGES/IR.po +++ b/holidays/locale/en_US/LC_MESSAGES/IR.po @@ -14,9 +14,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Holidays 0.57\n" +"Project-Id-Version: Holidays 0.66\n" "POT-Creation-Date: 2023-08-03 18:21+0300\n" -"PO-Revision-Date: 2024-09-07 17:23+0300\n" +"PO-Revision-Date: 2025-01-21 15:34+0200\n" "Last-Translator: ~Jhellico \n" "Language-Team: Holidays Localization Team\n" "Language: en_US\n" @@ -25,16 +25,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.5\n" #. %s (estimated). #, c-format msgid "(تخمین زده) %s" msgstr "%s (estimated)" -#. Persian New Year. -msgid "نوروز" -msgstr "Persian New Year" +#. Nowruz. +msgid "جشن نوروز" +msgstr "Nowruz" + +#. Nowruz Holiday. +msgid "عیدنوروز" +msgstr "Nowruz Holiday" #. Islamic Republic Day. msgid "روز جمهوری اسلامی" @@ -44,82 +48,90 @@ msgstr "Islamic Republic Day" msgid "روز طبیعت" msgstr "Nature's Day" -#. Death of Khomeini. -msgid "درگذشت سید روح‌الله خمینی" -msgstr "Death of Khomeini" +#. Death of Imam Khomeini. +msgid "رحلت حضرت امام خمینی" +msgstr "Death of Imam Khomeini" -#. Khordad National Uprising. -msgid "تظاهرات ۱۵ خرداد" -msgstr "Khordad National Uprising" +#. 15 Khordad Uprising. +msgid "قیام 15 خرداد" +msgstr "15 Khordad Uprising" #. Islamic Revolution Day. -msgid "پیروزی انقلاب ۵۷" +msgid "پیروزی انقلاب اسلامی" msgstr "Islamic Revolution Day" #. Iranian Oil Industry Nationalization Day. -msgid "ملی‌شدن صنعت نفت" +msgid "روز ملی شدن صنعت نفت ایران" msgstr "Iranian Oil Industry Nationalization Day" +#. Last Day of Year. +msgid "آخرین روز سال" +msgstr "Last Day of Year" + #. Tasua. -msgid "تاسوعا" +msgid "تاسوعای حسینی" msgstr "Tasua" #. Ashura. -msgid "کشته‌شدن حسین بن علی، عاشورا" +msgid "عاشورای حسینی" msgstr "Ashura" #. Arbaeen. -msgid "چهلم حسین بن علی اربعین" +msgid "اربعین حسینی" msgstr "Arbaeen" -#. Demise of Prophet Muhammad and Hasan ibn Ali. -msgid "کشته‌شدن حسن مجتبی و درگذشت محمد" -msgstr "Demise of Prophet Muhammad and Hasan ibn Ali" +#. Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali. +msgid "رحلت رسول اکرم؛شهادت امام حسن مجتبی علیه السلام" +msgstr "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali" #. Martyrdom of Ali al-Rida. -msgid "کشته‌شدن علی بن موسی الرضا" +msgid "شهادت امام رضا علیه السلام" msgstr "Martyrdom of Ali al-Rida" #. Martyrdom of Hasan al-Askari. -msgid "کشته‌شدن حسن عسکری" +msgid "شهادت امام حسن عسکری علیه السلام" msgstr "Martyrdom of Hasan al-Askari" -#. Birthday of Muhammad and Ja'far al-Sadiq. -msgid "زادروز محمد و جعفر صادق" -msgstr "Birthday of Muhammad and Ja'far al-Sadiq" +#. Birthday of Muhammad and Imam Ja'far al-Sadiq. +msgid "میلاد رسول اکرم و امام جعفر صادق علیه السلام" +msgstr "Birthday of Muhammad and Imam Ja'far al-Sadiq" #. Martyrdom of Fatima. -msgid "کشته‌شدن فاطمه زهرا" +msgid "شهادت حضرت فاطمه زهرا سلام الله علیها" msgstr "Martyrdom of Fatima" -#. Birthday of Ali. -msgid "زادروز علی بن ابی‌طالب" -msgstr "Birthday of Ali" +#. Birthday of Imam Ali. +msgid "ولادت امام علی علیه السلام و روز پدر" +msgstr "Birthday of Imam Ali" #. Isra' and Mi'raj. -msgid "مبعث" +msgid "مبعث رسول اکرم (ص)" msgstr "Isra' and Mi'raj" #. Birthday of Mahdi. -msgid "زادروز حجت بن الحسن" +msgid "ولادت حضرت قائم عجل الله تعالی فرجه و جشن نیمه شعبان" msgstr "Birthday of Mahdi" -#. Martyrdom of Ali. -msgid "کشته‌شدن علی بن ابی‌طالب" -msgstr "Martyrdom of Ali" +#. Martyrdom of Imam Ali. +msgid "شهادت حضرت علی علیه السلام" +msgstr "Martyrdom of Imam Ali" #. Eid al-Fitr. -msgid "عید فطر" +msgid "عید سعید فطر" msgstr "Eid al-Fitr" -#. Martyrdom of Ja'far al-Sadiq. -msgid "کشته‌شدن جعفر صادق" -msgstr "Martyrdom of Ja'far al-Sadiq" +#. Eid al-Fitr Holiday. +msgid "تعطیل به مناسبت عید سعید فطر" +msgstr "Eid al-Fitr Holiday" + +#. Martyrdom of Imam Ja'far al-Sadiq. +msgid "شهادت امام جعفر صادق علیه السلام" +msgstr "Martyrdom of Imam Ja'far al-Sadiq" #. Eid al-Adha. -msgid "عید قربان" +msgid "عید سعید قربان" msgstr "Eid al-Adha" #. Eid al-Ghadeer. -msgid "عید غدیر" +msgid "عید سعید غدیر خم" msgstr "Eid al-Ghadeer" diff --git a/holidays/locale/fa/LC_MESSAGES/IR.po b/holidays/locale/fa/LC_MESSAGES/IR.po deleted file mode 100644 index f1eff1fe3..000000000 --- a/holidays/locale/fa/LC_MESSAGES/IR.po +++ /dev/null @@ -1,125 +0,0 @@ -# holidays -# -------- -# A fast, efficient Python library for generating country, province and state -# specific sets of holidays on the fly. It aims to make determining whether a -# specific date is a holiday as fast and flexible as possible. -# -# Authors: Vacanza Team and individual contributors (see AUTHORS file) -# dr-prodigy (c) 2017-2023 -# ryanss (c) 2014-2017 -# Website: https://github.com/vacanza/holidays -# License: MIT (see LICENSE file) -# -# Iran holidays. -# -msgid "" -msgstr "" -"Project-Id-Version: Holidays 0.31\n" -"POT-Creation-Date: 2023-08-03 18:21+0300\n" -"PO-Revision-Date: 2023-08-03 18:23+0300\n" -"Last-Translator: ~Jhellico \n" -"Language-Team: Holidays Localization Team\n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n" -"Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.2.2\n" - -#. %s (estimated). -#, c-format -msgid "(تخمین زده) %s" -msgstr "" - -#. Persian New Year. -msgid "نوروز" -msgstr "" - -#. Islamic Republic Day. -msgid "روز جمهوری اسلامی" -msgstr "" - -#. Nature's Day. -msgid "روز طبیعت" -msgstr "" - -#. Death of Khomeini. -msgid "درگذشت سید روح‌الله خمینی" -msgstr "" - -#. Khordad National Uprising. -msgid "تظاهرات ۱۵ خرداد" -msgstr "" - -#. Islamic Revolution Day. -msgid "پیروزی انقلاب ۵۷" -msgstr "" - -#. Iranian Oil Industry Nationalization Day. -msgid "ملی‌شدن صنعت نفت" -msgstr "" - -#. Tasua. -msgid "تاسوعا" -msgstr "" - -#. Ashura. -msgid "کشته‌شدن حسین بن علی، عاشورا" -msgstr "" - -#. Arbaeen. -msgid "چهلم حسین بن علی اربعین" -msgstr "" - -#. Demise of Prophet Muhammad and Hasan ibn Ali. -msgid "کشته‌شدن حسن مجتبی و درگذشت محمد" -msgstr "" - -#. Martyrdom of Ali al-Rida. -msgid "کشته‌شدن علی بن موسی الرضا" -msgstr "" - -#. Martyrdom of Hasan al-Askari. -msgid "کشته‌شدن حسن عسکری" -msgstr "" - -#. Birthday of Muhammad and Ja'far al-Sadiq. -msgid "زادروز محمد و جعفر صادق" -msgstr "" - -#. Martyrdom of Fatima. -msgid "کشته‌شدن فاطمه زهرا" -msgstr "" - -#. Birthday of Ali. -msgid "زادروز علی بن ابی‌طالب" -msgstr "" - -#. Isra' and Mi'raj. -msgid "مبعث" -msgstr "" - -#. Birthday of Mahdi. -msgid "زادروز حجت بن الحسن" -msgstr "" - -#. Martyrdom of Ali. -msgid "کشته‌شدن علی بن ابی‌طالب" -msgstr "" - -#. Eid al-Fitr. -msgid "عید فطر" -msgstr "" - -#. Martyrdom of Ja'far al-Sadiq. -msgid "کشته‌شدن جعفر صادق" -msgstr "" - -#. Eid al-Adha. -msgid "عید قربان" -msgstr "" - -#. Eid al-Ghadeer. -msgid "عید غدیر" -msgstr "" diff --git a/holidays/locale/fa_IR/LC_MESSAGES/IR.po b/holidays/locale/fa_IR/LC_MESSAGES/IR.po new file mode 100644 index 000000000..0bc54f38c --- /dev/null +++ b/holidays/locale/fa_IR/LC_MESSAGES/IR.po @@ -0,0 +1,137 @@ +# holidays +# -------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: Vacanza Team and individual contributors (see AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# Iran holidays. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.66\n" +"POT-Creation-Date: 2023-08-03 18:21+0300\n" +"PO-Revision-Date: 2025-01-21 15:34+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays Localization Team\n" +"Language: fa_IR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.5\n" + +#. %s (estimated). +#, c-format +msgid "(تخمین زده) %s" +msgstr "" + +#. Nowruz. +msgid "جشن نوروز" +msgstr "" + +#. Nowruz Holiday. +msgid "عیدنوروز" +msgstr "" + +#. Islamic Republic Day. +msgid "روز جمهوری اسلامی" +msgstr "" + +#. Nature's Day. +msgid "روز طبیعت" +msgstr "" + +#. Death of Imam Khomeini. +msgid "رحلت حضرت امام خمینی" +msgstr "" + +#. 15 Khordad Uprising. +msgid "قیام 15 خرداد" +msgstr "" + +#. Islamic Revolution Day. +msgid "پیروزی انقلاب اسلامی" +msgstr "" + +#. Iranian Oil Industry Nationalization Day. +msgid "روز ملی شدن صنعت نفت ایران" +msgstr "" + +#. Last Day of Year. +msgid "آخرین روز سال" +msgstr "" + +#. Tasua. +msgid "تاسوعای حسینی" +msgstr "" + +#. Ashura. +msgid "عاشورای حسینی" +msgstr "" + +#. Arbaeen. +msgid "اربعین حسینی" +msgstr "" + +#. Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali. +msgid "رحلت رسول اکرم؛شهادت امام حسن مجتبی علیه السلام" +msgstr "" + +#. Martyrdom of Ali al-Rida. +msgid "شهادت امام رضا علیه السلام" +msgstr "" + +#. Martyrdom of Hasan al-Askari. +msgid "شهادت امام حسن عسکری علیه السلام" +msgstr "" + +#. Birthday of Muhammad and Imam Ja'far al-Sadiq. +msgid "میلاد رسول اکرم و امام جعفر صادق علیه السلام" +msgstr "" + +#. Martyrdom of Fatima. +msgid "شهادت حضرت فاطمه زهرا سلام الله علیها" +msgstr "" + +#. Birthday of Imam Ali. +msgid "ولادت امام علی علیه السلام و روز پدر" +msgstr "" + +#. Isra' and Mi'raj. +msgid "مبعث رسول اکرم (ص)" +msgstr "" + +#. Birthday of Mahdi. +msgid "ولادت حضرت قائم عجل الله تعالی فرجه و جشن نیمه شعبان" +msgstr "" + +#. Martyrdom of Imam Ali. +msgid "شهادت حضرت علی علیه السلام" +msgstr "" + +#. Eid al-Fitr. +msgid "عید سعید فطر" +msgstr "" + +#. Eid al-Fitr Holiday. +msgid "تعطیل به مناسبت عید سعید فطر" +msgstr "" + +#. Martyrdom of Imam Ja'far al-Sadiq. +msgid "شهادت امام جعفر صادق علیه السلام" +msgstr "" + +#. Eid al-Adha. +msgid "عید سعید قربان" +msgstr "" + +#. Eid al-Ghadeer. +msgid "عید سعید غدیر خم" +msgstr "" diff --git a/snapshots/countries/IR_COMMON.json b/snapshots/countries/IR_COMMON.json index 3b98fdd4d..bcacd000e 100644 --- a/snapshots/countries/IR_COMMON.json +++ b/snapshots/countries/IR_COMMON.json @@ -1,1595 +1,1613 @@ { "1980-01-08": "Arbaeen (estimated)", - "1980-01-16": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1980-01-16": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1980-01-18": "Martyrdom of Ali al-Rida (estimated)", "1980-01-26": "Martyrdom of Hasan al-Askari (estimated)", - "1980-02-04": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1980-02-04": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1980-02-11": "Islamic Revolution Day", "1980-03-19": "Iranian Oil Industry Nationalization Day", - "1980-03-21": "Persian New Year", - "1980-03-22": "Persian New Year", - "1980-03-23": "Persian New Year", - "1980-03-24": "Persian New Year", + "1980-03-20": "Last Day of Year", + "1980-03-21": "Nowruz", + "1980-03-22": "Nowruz Holiday", + "1980-03-23": "Nowruz Holiday", + "1980-03-24": "Nowruz Holiday", "1980-04-01": "Islamic Republic Day", "1980-04-02": "Nature's Day", "1980-04-18": "Martyrdom of Fatima (estimated)", - "1980-05-27": "Birthday of Ali (estimated)", - "1980-06-04": "Death of Khomeini", - "1980-06-05": "Khordad National Uprising", + "1980-05-27": "Birthday of Imam Ali (estimated)", + "1980-06-04": "Death of Imam Khomeini", + "1980-06-05": "15 Khordad Uprising", "1980-06-10": "Isra' and Mi'raj (estimated)", "1980-06-28": "Birthday of Mahdi (estimated)", - "1980-08-02": "Martyrdom of Ali (estimated)", + "1980-08-02": "Martyrdom of Imam Ali (estimated)", "1980-08-12": "Eid al-Fitr (estimated)", - "1980-08-13": "Eid al-Fitr (estimated)", - "1980-09-05": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated)", + "1980-09-05": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1980-10-19": "Eid al-Adha (estimated)", "1980-10-27": "Eid al-Ghadeer (estimated)", "1980-11-17": "Tasua (estimated)", "1980-11-18": "Ashura (estimated)", "1980-12-27": "Arbaeen (estimated)", - "1981-01-04": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1981-01-04": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1981-01-06": "Martyrdom of Ali al-Rida (estimated)", "1981-01-14": "Martyrdom of Hasan al-Askari (estimated)", - "1981-01-23": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1981-01-23": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1981-02-11": "Islamic Revolution Day", "1981-03-20": "Iranian Oil Industry Nationalization Day", - "1981-03-21": "Persian New Year", - "1981-03-22": "Persian New Year", - "1981-03-23": "Persian New Year", - "1981-03-24": "Persian New Year", + "1981-03-21": "Nowruz", + "1981-03-22": "Nowruz Holiday", + "1981-03-23": "Nowruz Holiday", + "1981-03-24": "Nowruz Holiday", "1981-04-01": "Islamic Republic Day", "1981-04-02": "Nature's Day", "1981-04-07": "Martyrdom of Fatima (estimated)", - "1981-05-17": "Birthday of Ali (estimated)", + "1981-05-17": "Birthday of Imam Ali (estimated)", "1981-05-31": "Isra' and Mi'raj (estimated)", - "1981-06-04": "Death of Khomeini", - "1981-06-05": "Khordad National Uprising", + "1981-06-04": "Death of Imam Khomeini", + "1981-06-05": "15 Khordad Uprising", "1981-06-17": "Birthday of Mahdi (estimated)", - "1981-07-22": "Martyrdom of Ali (estimated)", + "1981-07-22": "Martyrdom of Imam Ali (estimated)", "1981-08-01": "Eid al-Fitr (estimated)", - "1981-08-02": "Eid al-Fitr (estimated)", - "1981-08-25": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-08-25": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1981-10-08": "Eid al-Adha (estimated)", "1981-10-16": "Eid al-Ghadeer (estimated)", "1981-11-05": "Tasua (estimated)", "1981-11-06": "Ashura (estimated)", "1981-12-16": "Arbaeen (estimated)", - "1981-12-24": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1981-12-24": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1981-12-26": "Martyrdom of Ali al-Rida (estimated)", "1982-01-03": "Martyrdom of Hasan al-Askari (estimated)", - "1982-01-12": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1982-01-12": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1982-02-11": "Islamic Revolution Day", "1982-03-20": "Iranian Oil Industry Nationalization Day", - "1982-03-21": "Persian New Year", - "1982-03-22": "Persian New Year", - "1982-03-23": "Persian New Year", - "1982-03-24": "Persian New Year", + "1982-03-21": "Nowruz", + "1982-03-22": "Nowruz Holiday", + "1982-03-23": "Nowruz Holiday", + "1982-03-24": "Nowruz Holiday", "1982-03-28": "Martyrdom of Fatima (estimated)", "1982-04-01": "Islamic Republic Day", "1982-04-02": "Nature's Day", - "1982-05-06": "Birthday of Ali (estimated)", + "1982-05-06": "Birthday of Imam Ali (estimated)", "1982-05-20": "Isra' and Mi'raj (estimated)", - "1982-06-04": "Death of Khomeini", - "1982-06-05": "Khordad National Uprising", + "1982-06-04": "Death of Imam Khomeini", + "1982-06-05": "15 Khordad Uprising", "1982-06-07": "Birthday of Mahdi (estimated)", - "1982-07-12": "Martyrdom of Ali (estimated)", + "1982-07-12": "Martyrdom of Imam Ali (estimated)", "1982-07-21": "Eid al-Fitr (estimated)", - "1982-07-22": "Eid al-Fitr (estimated)", - "1982-08-14": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-08-14": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1982-09-27": "Eid al-Adha (estimated)", "1982-10-05": "Eid al-Ghadeer (estimated)", "1982-10-26": "Tasua (estimated)", "1982-10-27": "Ashura (estimated)", "1982-12-05": "Arbaeen (estimated)", - "1982-12-13": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1982-12-13": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1982-12-15": "Martyrdom of Ali al-Rida (estimated)", "1982-12-23": "Martyrdom of Hasan al-Askari (estimated)", - "1983-01-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1983-01-01": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1983-02-11": "Islamic Revolution Day", "1983-03-17": "Martyrdom of Fatima (estimated)", "1983-03-20": "Iranian Oil Industry Nationalization Day", - "1983-03-21": "Persian New Year", - "1983-03-22": "Persian New Year", - "1983-03-23": "Persian New Year", - "1983-03-24": "Persian New Year", + "1983-03-21": "Nowruz", + "1983-03-22": "Nowruz Holiday", + "1983-03-23": "Nowruz Holiday", + "1983-03-24": "Nowruz Holiday", "1983-04-01": "Islamic Republic Day", "1983-04-02": "Nature's Day", - "1983-04-26": "Birthday of Ali (estimated)", + "1983-04-26": "Birthday of Imam Ali (estimated)", "1983-05-10": "Isra' and Mi'raj (estimated)", "1983-05-27": "Birthday of Mahdi (estimated)", - "1983-06-04": "Death of Khomeini", - "1983-06-05": "Khordad National Uprising", - "1983-07-02": "Martyrdom of Ali (estimated)", + "1983-06-04": "Death of Imam Khomeini", + "1983-06-05": "15 Khordad Uprising", + "1983-07-02": "Martyrdom of Imam Ali (estimated)", "1983-07-11": "Eid al-Fitr (estimated)", - "1983-07-12": "Eid al-Fitr (estimated)", - "1983-08-04": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-08-04": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1983-09-17": "Eid al-Adha (estimated)", "1983-09-25": "Eid al-Ghadeer (estimated)", "1983-10-15": "Tasua (estimated)", "1983-10-16": "Ashura (estimated)", "1983-11-24": "Arbaeen (estimated)", - "1983-12-02": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1983-12-02": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1983-12-04": "Martyrdom of Ali al-Rida (estimated)", "1983-12-12": "Martyrdom of Hasan al-Askari (estimated)", - "1983-12-21": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1983-12-21": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1984-02-11": "Islamic Revolution Day", "1984-03-05": "Martyrdom of Fatima (estimated)", "1984-03-19": "Iranian Oil Industry Nationalization Day", - "1984-03-21": "Persian New Year", - "1984-03-22": "Persian New Year", - "1984-03-23": "Persian New Year", - "1984-03-24": "Persian New Year", + "1984-03-20": "Last Day of Year", + "1984-03-21": "Nowruz", + "1984-03-22": "Nowruz Holiday", + "1984-03-23": "Nowruz Holiday", + "1984-03-24": "Nowruz Holiday", "1984-04-01": "Islamic Republic Day", "1984-04-02": "Nature's Day", - "1984-04-14": "Birthday of Ali (estimated)", + "1984-04-14": "Birthday of Imam Ali (estimated)", "1984-04-28": "Isra' and Mi'raj (estimated)", "1984-05-16": "Birthday of Mahdi (estimated)", - "1984-06-04": "Death of Khomeini", - "1984-06-05": "Khordad National Uprising", - "1984-06-20": "Martyrdom of Ali (estimated)", + "1984-06-04": "Death of Imam Khomeini", + "1984-06-05": "15 Khordad Uprising", + "1984-06-20": "Martyrdom of Imam Ali (estimated)", "1984-06-30": "Eid al-Fitr (estimated)", - "1984-07-01": "Eid al-Fitr (estimated)", - "1984-07-24": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", + "1984-07-24": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1984-09-05": "Eid al-Adha (estimated)", "1984-09-13": "Eid al-Ghadeer (estimated)", "1984-10-04": "Tasua (estimated)", "1984-10-05": "Ashura (estimated)", "1984-11-13": "Arbaeen (estimated)", - "1984-11-21": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1984-11-21": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1984-11-22": "Martyrdom of Ali al-Rida (estimated)", "1984-11-30": "Martyrdom of Hasan al-Askari (estimated)", - "1984-12-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1984-12-09": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1985-02-11": "Islamic Revolution Day", "1985-02-22": "Martyrdom of Fatima (estimated)", "1985-03-20": "Iranian Oil Industry Nationalization Day", - "1985-03-21": "Persian New Year", - "1985-03-22": "Persian New Year", - "1985-03-23": "Persian New Year", - "1985-03-24": "Persian New Year", + "1985-03-21": "Nowruz", + "1985-03-22": "Nowruz Holiday", + "1985-03-23": "Nowruz Holiday", + "1985-03-24": "Nowruz Holiday", "1985-04-01": "Islamic Republic Day", "1985-04-02": "Nature's Day", - "1985-04-03": "Birthday of Ali (estimated)", + "1985-04-03": "Birthday of Imam Ali (estimated)", "1985-04-17": "Isra' and Mi'raj (estimated)", "1985-05-05": "Birthday of Mahdi (estimated)", - "1985-06-04": "Death of Khomeini", - "1985-06-05": "Khordad National Uprising", - "1985-06-09": "Martyrdom of Ali (estimated)", + "1985-06-04": "Death of Imam Khomeini", + "1985-06-05": "15 Khordad Uprising", + "1985-06-09": "Martyrdom of Imam Ali (estimated)", "1985-06-19": "Eid al-Fitr (estimated)", - "1985-06-20": "Eid al-Fitr (estimated)", - "1985-07-13": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", + "1985-07-13": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1985-08-26": "Eid al-Adha (estimated)", "1985-09-03": "Eid al-Ghadeer (estimated)", "1985-09-23": "Tasua (estimated)", "1985-09-24": "Ashura (estimated)", "1985-11-03": "Arbaeen (estimated)", - "1985-11-11": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1985-11-11": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1985-11-12": "Martyrdom of Ali al-Rida (estimated)", "1985-11-20": "Martyrdom of Hasan al-Askari (estimated)", - "1985-11-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1985-11-29": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1986-02-11": "Islamic Revolution Day", "1986-02-12": "Martyrdom of Fatima (estimated)", "1986-03-20": "Iranian Oil Industry Nationalization Day", - "1986-03-21": "Persian New Year", - "1986-03-22": "Persian New Year", - "1986-03-23": "Birthday of Ali (estimated); Persian New Year", - "1986-03-24": "Persian New Year", + "1986-03-21": "Nowruz", + "1986-03-22": "Nowruz Holiday", + "1986-03-23": "Birthday of Imam Ali (estimated); Nowruz Holiday", + "1986-03-24": "Nowruz Holiday", "1986-04-01": "Islamic Republic Day", "1986-04-02": "Nature's Day", "1986-04-06": "Isra' and Mi'raj (estimated)", "1986-04-24": "Birthday of Mahdi (estimated)", - "1986-05-29": "Martyrdom of Ali (estimated)", - "1986-06-04": "Death of Khomeini", - "1986-06-05": "Khordad National Uprising", + "1986-05-29": "Martyrdom of Imam Ali (estimated)", + "1986-06-04": "Death of Imam Khomeini", + "1986-06-05": "15 Khordad Uprising", "1986-06-08": "Eid al-Fitr (estimated)", - "1986-06-09": "Eid al-Fitr (estimated)", - "1986-07-02": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", + "1986-07-02": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1986-08-15": "Eid al-Adha (estimated)", "1986-08-23": "Eid al-Ghadeer (estimated)", "1986-09-13": "Tasua (estimated)", "1986-09-14": "Ashura (estimated)", "1986-10-23": "Arbaeen (estimated)", - "1986-10-31": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1986-10-31": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1986-11-02": "Martyrdom of Ali al-Rida (estimated)", "1986-11-10": "Martyrdom of Hasan al-Askari (estimated)", - "1986-11-19": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1986-11-19": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1987-02-01": "Martyrdom of Fatima (estimated)", "1987-02-11": "Islamic Revolution Day", - "1987-03-13": "Birthday of Ali (estimated)", + "1987-03-13": "Birthday of Imam Ali (estimated)", "1987-03-20": "Iranian Oil Industry Nationalization Day", - "1987-03-21": "Persian New Year", - "1987-03-22": "Persian New Year", - "1987-03-23": "Persian New Year", - "1987-03-24": "Persian New Year", + "1987-03-21": "Nowruz", + "1987-03-22": "Nowruz Holiday", + "1987-03-23": "Nowruz Holiday", + "1987-03-24": "Nowruz Holiday", "1987-03-27": "Isra' and Mi'raj (estimated)", "1987-04-01": "Islamic Republic Day", "1987-04-02": "Nature's Day", "1987-04-13": "Birthday of Mahdi (estimated)", - "1987-05-19": "Martyrdom of Ali (estimated)", + "1987-05-19": "Martyrdom of Imam Ali (estimated)", "1987-05-28": "Eid al-Fitr (estimated)", - "1987-05-29": "Eid al-Fitr (estimated)", - "1987-06-04": "Death of Khomeini", - "1987-06-05": "Khordad National Uprising", - "1987-06-21": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", + "1987-06-04": "Death of Imam Khomeini", + "1987-06-05": "15 Khordad Uprising", + "1987-06-21": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1987-08-04": "Eid al-Adha (estimated)", "1987-08-12": "Eid al-Ghadeer (estimated)", "1987-09-02": "Tasua (estimated)", "1987-09-03": "Ashura (estimated)", "1987-10-13": "Arbaeen (estimated)", - "1987-10-21": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1987-10-21": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1987-10-22": "Martyrdom of Ali al-Rida (estimated)", "1987-10-30": "Martyrdom of Hasan al-Askari (estimated)", - "1987-11-08": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1987-11-08": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1988-01-22": "Martyrdom of Fatima (estimated)", "1988-02-11": "Islamic Revolution Day", - "1988-03-01": "Birthday of Ali (estimated)", + "1988-03-01": "Birthday of Imam Ali (estimated)", "1988-03-15": "Isra' and Mi'raj (estimated)", "1988-03-19": "Iranian Oil Industry Nationalization Day", - "1988-03-21": "Persian New Year", - "1988-03-22": "Persian New Year", - "1988-03-23": "Persian New Year", - "1988-03-24": "Persian New Year", + "1988-03-20": "Last Day of Year", + "1988-03-21": "Nowruz", + "1988-03-22": "Nowruz Holiday", + "1988-03-23": "Nowruz Holiday", + "1988-03-24": "Nowruz Holiday", "1988-04-01": "Islamic Republic Day", "1988-04-02": "Birthday of Mahdi (estimated); Nature's Day", - "1988-05-07": "Martyrdom of Ali (estimated)", + "1988-05-07": "Martyrdom of Imam Ali (estimated)", "1988-05-16": "Eid al-Fitr (estimated)", - "1988-05-17": "Eid al-Fitr (estimated)", - "1988-06-04": "Death of Khomeini", - "1988-06-05": "Khordad National Uprising", - "1988-06-09": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", + "1988-06-04": "Death of Imam Khomeini", + "1988-06-05": "15 Khordad Uprising", + "1988-06-09": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1988-07-23": "Eid al-Adha (estimated)", "1988-07-31": "Eid al-Ghadeer (estimated)", "1988-08-21": "Tasua (estimated)", "1988-08-22": "Ashura (estimated)", "1988-10-01": "Arbaeen (estimated)", - "1988-10-09": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1988-10-09": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1988-10-10": "Martyrdom of Ali al-Rida (estimated)", "1988-10-18": "Martyrdom of Hasan al-Askari (estimated)", - "1988-10-27": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1988-10-27": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1989-01-10": "Martyrdom of Fatima (estimated)", "1989-02-11": "Islamic Revolution Day", - "1989-02-19": "Birthday of Ali (estimated)", + "1989-02-19": "Birthday of Imam Ali (estimated)", "1989-03-05": "Isra' and Mi'raj (estimated)", "1989-03-20": "Iranian Oil Industry Nationalization Day", - "1989-03-21": "Persian New Year", - "1989-03-22": "Birthday of Mahdi (estimated); Persian New Year", - "1989-03-23": "Persian New Year", - "1989-03-24": "Persian New Year", + "1989-03-21": "Nowruz", + "1989-03-22": "Birthday of Mahdi (estimated); Nowruz Holiday", + "1989-03-23": "Nowruz Holiday", + "1989-03-24": "Nowruz Holiday", "1989-04-01": "Islamic Republic Day", "1989-04-02": "Nature's Day", - "1989-04-27": "Martyrdom of Ali (estimated)", + "1989-04-27": "Martyrdom of Imam Ali (estimated)", "1989-05-06": "Eid al-Fitr (estimated)", - "1989-05-07": "Eid al-Fitr (estimated)", - "1989-05-30": "Martyrdom of Ja'far al-Sadiq (estimated)", - "1989-06-04": "Death of Khomeini", - "1989-06-05": "Khordad National Uprising", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", + "1989-05-30": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", + "1989-06-04": "Death of Imam Khomeini", + "1989-06-05": "15 Khordad Uprising", "1989-07-13": "Eid al-Adha (estimated)", "1989-07-21": "Eid al-Ghadeer (estimated)", "1989-08-10": "Tasua (estimated)", "1989-08-11": "Ashura (estimated)", "1989-09-20": "Arbaeen (estimated)", - "1989-09-28": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1989-09-28": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1989-09-29": "Martyrdom of Ali al-Rida (estimated)", "1989-10-07": "Martyrdom of Hasan al-Askari (estimated)", - "1989-10-16": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1989-10-16": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1989-12-31": "Martyrdom of Fatima (estimated)", - "1990-02-08": "Birthday of Ali (estimated)", + "1990-02-08": "Birthday of Imam Ali (estimated)", "1990-02-11": "Islamic Revolution Day", "1990-02-22": "Isra' and Mi'raj (estimated)", "1990-03-12": "Birthday of Mahdi (estimated)", "1990-03-20": "Iranian Oil Industry Nationalization Day", - "1990-03-21": "Persian New Year", - "1990-03-22": "Persian New Year", - "1990-03-23": "Persian New Year", - "1990-03-24": "Persian New Year", + "1990-03-21": "Nowruz", + "1990-03-22": "Nowruz Holiday", + "1990-03-23": "Nowruz Holiday", + "1990-03-24": "Nowruz Holiday", "1990-04-01": "Islamic Republic Day", "1990-04-02": "Nature's Day", - "1990-04-16": "Martyrdom of Ali (estimated)", + "1990-04-16": "Martyrdom of Imam Ali (estimated)", "1990-04-26": "Eid al-Fitr (estimated)", - "1990-04-27": "Eid al-Fitr (estimated)", - "1990-05-20": "Martyrdom of Ja'far al-Sadiq (estimated)", - "1990-06-04": "Death of Khomeini", - "1990-06-05": "Khordad National Uprising", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", + "1990-05-20": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", + "1990-06-04": "Death of Imam Khomeini", + "1990-06-05": "15 Khordad Uprising", "1990-07-02": "Eid al-Adha (estimated)", "1990-07-10": "Eid al-Ghadeer (estimated)", "1990-07-31": "Tasua (estimated)", "1990-08-01": "Ashura (estimated)", "1990-09-09": "Arbaeen (estimated)", - "1990-09-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1990-09-17": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1990-09-19": "Martyrdom of Ali al-Rida (estimated)", "1990-09-27": "Martyrdom of Hasan al-Askari (estimated)", - "1990-10-06": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1990-10-06": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1990-12-20": "Martyrdom of Fatima (estimated)", - "1991-01-28": "Birthday of Ali (estimated)", + "1991-01-28": "Birthday of Imam Ali (estimated)", "1991-02-11": "Islamic Revolution Day; Isra' and Mi'raj (estimated)", "1991-03-01": "Birthday of Mahdi (estimated)", "1991-03-20": "Iranian Oil Industry Nationalization Day", - "1991-03-21": "Persian New Year", - "1991-03-22": "Persian New Year", - "1991-03-23": "Persian New Year", - "1991-03-24": "Persian New Year", + "1991-03-21": "Nowruz", + "1991-03-22": "Nowruz Holiday", + "1991-03-23": "Nowruz Holiday", + "1991-03-24": "Nowruz Holiday", "1991-04-01": "Islamic Republic Day", "1991-04-02": "Nature's Day", - "1991-04-06": "Martyrdom of Ali (estimated)", + "1991-04-06": "Martyrdom of Imam Ali (estimated)", "1991-04-15": "Eid al-Fitr (estimated)", - "1991-04-16": "Eid al-Fitr (estimated)", - "1991-05-09": "Martyrdom of Ja'far al-Sadiq (estimated)", - "1991-06-04": "Death of Khomeini", - "1991-06-05": "Khordad National Uprising", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", + "1991-05-09": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", + "1991-06-04": "Death of Imam Khomeini", + "1991-06-05": "15 Khordad Uprising", "1991-06-22": "Eid al-Adha (estimated)", "1991-06-30": "Eid al-Ghadeer (estimated)", "1991-07-20": "Tasua (estimated)", "1991-07-21": "Ashura (estimated)", "1991-08-30": "Arbaeen (estimated)", - "1991-09-07": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1991-09-07": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1991-09-08": "Martyrdom of Ali al-Rida (estimated)", "1991-09-16": "Martyrdom of Hasan al-Askari (estimated)", - "1991-09-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1991-09-25": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1991-12-09": "Martyrdom of Fatima (estimated)", - "1992-01-17": "Birthday of Ali (estimated)", + "1992-01-17": "Birthday of Imam Ali (estimated)", "1992-01-31": "Isra' and Mi'raj (estimated)", "1992-02-11": "Islamic Revolution Day", "1992-02-18": "Birthday of Mahdi (estimated)", "1992-03-19": "Iranian Oil Industry Nationalization Day", - "1992-03-21": "Persian New Year", - "1992-03-22": "Persian New Year", - "1992-03-23": "Persian New Year", - "1992-03-24": "Persian New Year", - "1992-03-25": "Martyrdom of Ali (estimated)", + "1992-03-20": "Last Day of Year", + "1992-03-21": "Nowruz", + "1992-03-22": "Nowruz Holiday", + "1992-03-23": "Nowruz Holiday", + "1992-03-24": "Nowruz Holiday", + "1992-03-25": "Martyrdom of Imam Ali (estimated)", "1992-04-01": "Islamic Republic Day", "1992-04-02": "Nature's Day", "1992-04-04": "Eid al-Fitr (estimated)", - "1992-04-05": "Eid al-Fitr (estimated)", - "1992-04-28": "Martyrdom of Ja'far al-Sadiq (estimated)", - "1992-06-04": "Death of Khomeini", - "1992-06-05": "Khordad National Uprising", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", + "1992-04-28": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", + "1992-06-04": "Death of Imam Khomeini", + "1992-06-05": "15 Khordad Uprising", "1992-06-11": "Eid al-Adha (estimated)", "1992-06-19": "Eid al-Ghadeer (estimated)", "1992-07-09": "Tasua (estimated)", "1992-07-10": "Ashura (estimated)", "1992-08-18": "Arbaeen (estimated)", - "1992-08-26": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1992-08-26": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1992-08-28": "Martyrdom of Ali al-Rida (estimated)", "1992-09-05": "Martyrdom of Hasan al-Askari (estimated)", - "1992-09-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1992-09-14": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1992-11-27": "Martyrdom of Fatima (estimated)", - "1993-01-06": "Birthday of Ali (estimated)", + "1993-01-06": "Birthday of Imam Ali (estimated)", "1993-01-20": "Isra' and Mi'raj (estimated)", "1993-02-06": "Birthday of Mahdi (estimated)", "1993-02-11": "Islamic Revolution Day", - "1993-03-14": "Martyrdom of Ali (estimated)", + "1993-03-14": "Martyrdom of Imam Ali (estimated)", "1993-03-20": "Iranian Oil Industry Nationalization Day", - "1993-03-21": "Persian New Year", - "1993-03-22": "Persian New Year", - "1993-03-23": "Persian New Year", - "1993-03-24": "Eid al-Fitr (estimated); Persian New Year", - "1993-03-25": "Eid al-Fitr (estimated)", + "1993-03-21": "Nowruz", + "1993-03-22": "Nowruz Holiday", + "1993-03-23": "Nowruz Holiday", + "1993-03-24": "Eid al-Fitr (estimated); Nowruz Holiday", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", "1993-04-01": "Islamic Republic Day", "1993-04-02": "Nature's Day", - "1993-04-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1993-04-17": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1993-05-31": "Eid al-Adha (estimated)", - "1993-06-04": "Death of Khomeini", - "1993-06-05": "Khordad National Uprising", + "1993-06-04": "Death of Imam Khomeini", + "1993-06-05": "15 Khordad Uprising", "1993-06-08": "Eid al-Ghadeer (estimated)", "1993-06-29": "Tasua (estimated)", "1993-06-30": "Ashura (estimated)", "1993-08-08": "Arbaeen (estimated)", - "1993-08-16": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1993-08-16": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1993-08-17": "Martyrdom of Ali al-Rida (estimated)", "1993-08-25": "Martyrdom of Hasan al-Askari (estimated)", - "1993-09-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1993-09-03": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1993-11-16": "Martyrdom of Fatima (estimated)", - "1993-12-26": "Birthday of Ali (estimated)", + "1993-12-26": "Birthday of Imam Ali (estimated)", "1994-01-09": "Isra' and Mi'raj (estimated)", "1994-01-26": "Birthday of Mahdi (estimated)", "1994-02-11": "Islamic Revolution Day", - "1994-03-03": "Martyrdom of Ali (estimated)", + "1994-03-03": "Martyrdom of Imam Ali (estimated)", "1994-03-13": "Eid al-Fitr (estimated)", - "1994-03-14": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", "1994-03-20": "Iranian Oil Industry Nationalization Day", - "1994-03-21": "Persian New Year", - "1994-03-22": "Persian New Year", - "1994-03-23": "Persian New Year", - "1994-03-24": "Persian New Year", + "1994-03-21": "Nowruz", + "1994-03-22": "Nowruz Holiday", + "1994-03-23": "Nowruz Holiday", + "1994-03-24": "Nowruz Holiday", "1994-04-01": "Islamic Republic Day", "1994-04-02": "Nature's Day", - "1994-04-06": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1994-04-06": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1994-05-20": "Eid al-Adha (estimated)", "1994-05-28": "Eid al-Ghadeer (estimated)", - "1994-06-04": "Death of Khomeini", - "1994-06-05": "Khordad National Uprising", + "1994-06-04": "Death of Imam Khomeini", + "1994-06-05": "15 Khordad Uprising", "1994-06-18": "Tasua (estimated)", "1994-06-19": "Ashura (estimated)", "1994-07-28": "Arbaeen (estimated)", - "1994-08-05": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1994-08-05": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1994-08-07": "Martyrdom of Ali al-Rida (estimated)", "1994-08-15": "Martyrdom of Hasan al-Askari (estimated)", - "1994-08-24": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1994-08-24": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1994-11-06": "Martyrdom of Fatima (estimated)", - "1994-12-15": "Birthday of Ali (estimated)", + "1994-12-15": "Birthday of Imam Ali (estimated)", "1994-12-29": "Isra' and Mi'raj (estimated)", "1995-01-16": "Birthday of Mahdi (estimated)", "1995-02-11": "Islamic Revolution Day", - "1995-02-20": "Martyrdom of Ali (estimated)", + "1995-02-20": "Martyrdom of Imam Ali (estimated)", "1995-03-02": "Eid al-Fitr (estimated)", - "1995-03-03": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", "1995-03-20": "Iranian Oil Industry Nationalization Day", - "1995-03-21": "Persian New Year", - "1995-03-22": "Persian New Year", - "1995-03-23": "Persian New Year", - "1995-03-24": "Persian New Year", - "1995-03-26": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1995-03-21": "Nowruz", + "1995-03-22": "Nowruz Holiday", + "1995-03-23": "Nowruz Holiday", + "1995-03-24": "Nowruz Holiday", + "1995-03-26": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1995-04-01": "Islamic Republic Day", "1995-04-02": "Nature's Day", "1995-05-09": "Eid al-Adha (estimated)", "1995-05-17": "Eid al-Ghadeer (estimated)", - "1995-06-04": "Death of Khomeini", - "1995-06-05": "Khordad National Uprising", + "1995-06-04": "Death of Imam Khomeini", + "1995-06-05": "15 Khordad Uprising", "1995-06-07": "Tasua (estimated)", "1995-06-08": "Ashura (estimated)", "1995-07-18": "Arbaeen (estimated)", - "1995-07-26": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1995-07-26": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1995-07-27": "Martyrdom of Ali al-Rida (estimated)", "1995-08-04": "Martyrdom of Hasan al-Askari (estimated)", - "1995-08-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1995-08-13": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1995-10-27": "Martyrdom of Fatima (estimated)", - "1995-12-05": "Birthday of Ali (estimated)", + "1995-12-05": "Birthday of Imam Ali (estimated)", "1995-12-19": "Isra' and Mi'raj (estimated)", "1996-01-06": "Birthday of Mahdi (estimated)", - "1996-02-10": "Martyrdom of Ali (estimated)", + "1996-02-10": "Martyrdom of Imam Ali (estimated)", "1996-02-11": "Islamic Revolution Day", "1996-02-19": "Eid al-Fitr (estimated)", - "1996-02-20": "Eid al-Fitr (estimated)", - "1996-03-14": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-03-14": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1996-03-19": "Iranian Oil Industry Nationalization Day", - "1996-03-20": "Persian New Year", - "1996-03-21": "Persian New Year", - "1996-03-22": "Persian New Year", - "1996-03-23": "Persian New Year", + "1996-03-20": "Nowruz", + "1996-03-21": "Nowruz Holiday", + "1996-03-22": "Nowruz Holiday", + "1996-03-23": "Nowruz Holiday", "1996-03-31": "Islamic Republic Day", "1996-04-01": "Nature's Day", "1996-04-27": "Eid al-Adha (estimated)", "1996-05-05": "Eid al-Ghadeer (estimated)", "1996-05-26": "Tasua (estimated)", "1996-05-27": "Ashura (estimated)", - "1996-06-03": "Death of Khomeini", - "1996-06-04": "Khordad National Uprising", + "1996-06-03": "Death of Imam Khomeini", + "1996-06-04": "15 Khordad Uprising", "1996-07-06": "Arbaeen (estimated)", - "1996-07-14": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1996-07-14": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1996-07-15": "Martyrdom of Ali al-Rida (estimated)", "1996-07-23": "Martyrdom of Hasan al-Askari (estimated)", - "1996-08-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1996-08-01": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1996-10-15": "Martyrdom of Fatima (estimated)", - "1996-11-24": "Birthday of Ali (estimated)", + "1996-11-24": "Birthday of Imam Ali (estimated)", "1996-12-08": "Isra' and Mi'raj (estimated)", "1996-12-25": "Birthday of Mahdi (estimated)", - "1997-01-30": "Martyrdom of Ali (estimated)", + "1997-01-30": "Martyrdom of Imam Ali (estimated)", "1997-02-08": "Eid al-Fitr (estimated)", - "1997-02-09": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", "1997-02-10": "Islamic Revolution Day", - "1997-03-04": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1997-03-04": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1997-03-19": "Iranian Oil Industry Nationalization Day", - "1997-03-21": "Persian New Year", - "1997-03-22": "Persian New Year", - "1997-03-23": "Persian New Year", - "1997-03-24": "Persian New Year", + "1997-03-20": "Last Day of Year", + "1997-03-21": "Nowruz", + "1997-03-22": "Nowruz Holiday", + "1997-03-23": "Nowruz Holiday", + "1997-03-24": "Nowruz Holiday", "1997-04-01": "Islamic Republic Day", "1997-04-02": "Nature's Day", "1997-04-17": "Eid al-Adha (estimated)", "1997-04-25": "Eid al-Ghadeer (estimated)", "1997-05-15": "Tasua (estimated)", "1997-05-16": "Ashura (estimated)", - "1997-06-04": "Death of Khomeini", - "1997-06-05": "Khordad National Uprising", + "1997-06-04": "Death of Imam Khomeini", + "1997-06-05": "15 Khordad Uprising", "1997-06-25": "Arbaeen (estimated)", - "1997-07-03": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1997-07-03": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1997-07-04": "Martyrdom of Ali al-Rida (estimated)", "1997-07-12": "Martyrdom of Hasan al-Askari (estimated)", - "1997-07-21": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1997-07-21": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1997-10-04": "Martyrdom of Fatima (estimated)", - "1997-11-13": "Birthday of Ali (estimated)", + "1997-11-13": "Birthday of Imam Ali (estimated)", "1997-11-27": "Isra' and Mi'raj (estimated)", "1997-12-15": "Birthday of Mahdi (estimated)", - "1998-01-19": "Martyrdom of Ali (estimated)", + "1998-01-19": "Martyrdom of Imam Ali (estimated)", "1998-01-29": "Eid al-Fitr (estimated)", - "1998-01-30": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", "1998-02-11": "Islamic Revolution Day", - "1998-02-22": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1998-02-22": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1998-03-20": "Iranian Oil Industry Nationalization Day", - "1998-03-21": "Persian New Year", - "1998-03-22": "Persian New Year", - "1998-03-23": "Persian New Year", - "1998-03-24": "Persian New Year", + "1998-03-21": "Nowruz", + "1998-03-22": "Nowruz Holiday", + "1998-03-23": "Nowruz Holiday", + "1998-03-24": "Nowruz Holiday", "1998-04-01": "Islamic Republic Day", "1998-04-02": "Nature's Day", "1998-04-07": "Eid al-Adha (estimated)", "1998-04-15": "Eid al-Ghadeer (estimated)", "1998-05-05": "Tasua (estimated)", "1998-05-06": "Ashura (estimated)", - "1998-06-04": "Death of Khomeini", - "1998-06-05": "Khordad National Uprising", + "1998-06-04": "Death of Imam Khomeini", + "1998-06-05": "15 Khordad Uprising", "1998-06-14": "Arbaeen (estimated)", - "1998-06-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1998-06-22": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1998-06-24": "Martyrdom of Ali al-Rida (estimated)", "1998-07-02": "Martyrdom of Hasan al-Askari (estimated)", - "1998-07-11": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1998-07-11": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1998-09-23": "Martyrdom of Fatima (estimated)", - "1998-11-02": "Birthday of Ali (estimated)", + "1998-11-02": "Birthday of Imam Ali (estimated)", "1998-11-16": "Isra' and Mi'raj (estimated)", "1998-12-04": "Birthday of Mahdi (estimated)", - "1999-01-08": "Martyrdom of Ali (estimated)", + "1999-01-08": "Martyrdom of Imam Ali (estimated)", "1999-01-18": "Eid al-Fitr (estimated)", - "1999-01-19": "Eid al-Fitr (estimated)", - "1999-02-11": "Islamic Revolution Day; Martyrdom of Ja'far al-Sadiq (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-02-11": "Islamic Revolution Day; Martyrdom of Imam Ja'far al-Sadiq (estimated)", "1999-03-20": "Iranian Oil Industry Nationalization Day", - "1999-03-21": "Persian New Year", - "1999-03-22": "Persian New Year", - "1999-03-23": "Persian New Year", - "1999-03-24": "Persian New Year", + "1999-03-21": "Nowruz", + "1999-03-22": "Nowruz Holiday", + "1999-03-23": "Nowruz Holiday", + "1999-03-24": "Nowruz Holiday", "1999-03-27": "Eid al-Adha (estimated)", "1999-04-01": "Islamic Republic Day", "1999-04-02": "Nature's Day", "1999-04-04": "Eid al-Ghadeer (estimated)", "1999-04-25": "Tasua (estimated)", "1999-04-26": "Ashura (estimated)", - "1999-06-04": "Arbaeen (estimated); Death of Khomeini", - "1999-06-05": "Khordad National Uprising", - "1999-06-12": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1999-06-04": "Arbaeen (estimated); Death of Imam Khomeini", + "1999-06-05": "15 Khordad Uprising", + "1999-06-12": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "1999-06-14": "Martyrdom of Ali al-Rida (estimated)", "1999-06-22": "Martyrdom of Hasan al-Askari (estimated)", - "1999-07-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1999-07-01": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "1999-09-13": "Martyrdom of Fatima (estimated)", - "1999-10-22": "Birthday of Ali (estimated)", + "1999-10-22": "Birthday of Imam Ali (estimated)", "1999-11-05": "Isra' and Mi'raj (estimated)", "1999-11-23": "Birthday of Mahdi (estimated)", - "1999-12-29": "Martyrdom of Ali (estimated)", + "1999-12-29": "Martyrdom of Imam Ali (estimated)", "2000-01-08": "Eid al-Fitr (estimated)", - "2000-01-09": "Eid al-Fitr (estimated)", - "2000-02-01": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-02-01": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2000-02-11": "Islamic Revolution Day", "2000-03-16": "Eid al-Adha (estimated)", "2000-03-19": "Iranian Oil Industry Nationalization Day", - "2000-03-20": "Persian New Year", - "2000-03-21": "Persian New Year", - "2000-03-22": "Persian New Year", - "2000-03-23": "Persian New Year", + "2000-03-20": "Nowruz", + "2000-03-21": "Nowruz Holiday", + "2000-03-22": "Nowruz Holiday", + "2000-03-23": "Nowruz Holiday", "2000-03-24": "Eid al-Ghadeer (estimated)", "2000-03-31": "Islamic Republic Day", "2000-04-01": "Nature's Day", "2000-04-14": "Tasua (estimated)", "2000-04-15": "Ashura (estimated)", "2000-05-24": "Arbaeen (estimated)", - "2000-06-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2000-06-01": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2000-06-02": "Martyrdom of Ali al-Rida (estimated)", - "2000-06-03": "Death of Khomeini", - "2000-06-04": "Khordad National Uprising", + "2000-06-03": "Death of Imam Khomeini", + "2000-06-04": "15 Khordad Uprising", "2000-06-10": "Martyrdom of Hasan al-Askari (estimated)", - "2000-06-19": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2000-06-19": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2000-09-01": "Martyrdom of Fatima (estimated)", - "2000-10-10": "Birthday of Ali (estimated)", + "2000-10-10": "Birthday of Imam Ali (estimated)", "2000-10-24": "Isra' and Mi'raj (estimated)", "2000-11-11": "Birthday of Mahdi (estimated)", - "2000-12-17": "Martyrdom of Ali (estimated)", + "2000-12-17": "Martyrdom of Imam Ali (estimated)", "2000-12-27": "Eid al-Fitr (estimated)", - "2000-12-28": "Eid al-Fitr (estimated)", - "2001-01-20": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", + "2001-01-20": "Martyrdom of Imam Ja'far al-Sadiq", "2001-02-10": "Islamic Revolution Day", - "2001-03-05": "Eid al-Adha (estimated)", - "2001-03-13": "Eid al-Ghadeer (estimated)", + "2001-03-06": "Eid al-Adha", + "2001-03-14": "Eid al-Ghadeer", "2001-03-19": "Iranian Oil Industry Nationalization Day", - "2001-03-21": "Persian New Year", - "2001-03-22": "Persian New Year", - "2001-03-23": "Persian New Year", - "2001-03-24": "Persian New Year", + "2001-03-20": "Last Day of Year", + "2001-03-21": "Nowruz", + "2001-03-22": "Nowruz Holiday", + "2001-03-23": "Nowruz Holiday", + "2001-03-24": "Nowruz Holiday", "2001-04-01": "Islamic Republic Day", "2001-04-02": "Nature's Day", - "2001-04-03": "Tasua (estimated)", - "2001-04-04": "Ashura (estimated)", - "2001-05-14": "Arbaeen (estimated)", - "2001-05-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2001-05-23": "Martyrdom of Ali al-Rida (estimated)", - "2001-05-31": "Martyrdom of Hasan al-Askari (estimated)", - "2001-06-04": "Death of Khomeini", - "2001-06-05": "Khordad National Uprising", - "2001-06-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2001-08-22": "Martyrdom of Fatima (estimated)", - "2001-09-30": "Birthday of Ali (estimated)", - "2001-10-14": "Isra' and Mi'raj (estimated)", - "2001-10-31": "Birthday of Mahdi (estimated)", - "2001-12-06": "Martyrdom of Ali (estimated)", - "2001-12-16": "Eid al-Fitr (estimated)", - "2001-12-17": "Eid al-Fitr (estimated)", - "2002-01-09": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2001-04-04": "Tasua", + "2001-04-05": "Ashura", + "2001-05-14": "Arbaeen", + "2001-05-22": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2001-05-24": "Martyrdom of Ali al-Rida", + "2001-06-01": "Martyrdom of Hasan al-Askari", + "2001-06-04": "Death of Imam Khomeini", + "2001-06-05": "15 Khordad Uprising", + "2001-06-10": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2001-08-23": "Martyrdom of Fatima", + "2001-10-01": "Birthday of Imam Ali", + "2001-10-15": "Isra' and Mi'raj", + "2001-11-01": "Birthday of Mahdi", + "2001-12-07": "Martyrdom of Imam Ali", + "2001-12-16": "Eid al-Fitr", + "2001-12-17": "Eid al-Fitr Holiday", + "2002-01-09": "Martyrdom of Imam Ja'far al-Sadiq", "2002-02-11": "Islamic Revolution Day", - "2002-02-22": "Eid al-Adha (estimated)", - "2002-03-02": "Eid al-Ghadeer (estimated)", + "2002-02-23": "Eid al-Adha", + "2002-03-03": "Eid al-Ghadeer", "2002-03-20": "Iranian Oil Industry Nationalization Day", - "2002-03-21": "Persian New Year", - "2002-03-22": "Persian New Year", - "2002-03-23": "Persian New Year; Tasua (estimated)", - "2002-03-24": "Ashura (estimated); Persian New Year", + "2002-03-21": "Nowruz", + "2002-03-22": "Nowruz Holiday", + "2002-03-23": "Nowruz Holiday", + "2002-03-24": "Nowruz Holiday; Tasua", + "2002-03-25": "Ashura", "2002-04-01": "Islamic Republic Day", "2002-04-02": "Nature's Day", - "2002-05-03": "Arbaeen (estimated)", - "2002-05-11": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2002-05-12": "Martyrdom of Ali al-Rida (estimated)", - "2002-05-20": "Martyrdom of Hasan al-Askari (estimated)", - "2002-05-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2002-06-04": "Death of Khomeini", - "2002-06-05": "Khordad National Uprising", - "2002-08-12": "Martyrdom of Fatima (estimated)", - "2002-09-20": "Birthday of Ali (estimated)", - "2002-10-04": "Isra' and Mi'raj (estimated)", - "2002-10-21": "Birthday of Mahdi (estimated)", - "2002-11-26": "Martyrdom of Ali (estimated)", - "2002-12-05": "Eid al-Fitr (estimated)", - "2002-12-06": "Eid al-Fitr (estimated)", - "2002-12-29": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2003-02-11": "Eid al-Adha (estimated); Islamic Revolution Day", - "2003-02-19": "Eid al-Ghadeer (estimated)", - "2003-03-12": "Tasua (estimated)", - "2003-03-13": "Ashura (estimated)", + "2002-05-03": "Arbaeen", + "2002-05-11": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2002-05-13": "Martyrdom of Ali al-Rida", + "2002-05-21": "Martyrdom of Hasan al-Askari", + "2002-05-30": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2002-06-04": "Death of Imam Khomeini", + "2002-06-05": "15 Khordad Uprising", + "2002-08-12": "Martyrdom of Fatima", + "2002-09-21": "Birthday of Imam Ali", + "2002-10-05": "Isra' and Mi'raj", + "2002-10-22": "Birthday of Mahdi", + "2002-11-27": "Martyrdom of Imam Ali", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr Holiday", + "2002-12-30": "Martyrdom of Imam Ja'far al-Sadiq", + "2003-02-11": "Islamic Revolution Day", + "2003-02-12": "Eid al-Adha", + "2003-02-20": "Eid al-Ghadeer", + "2003-03-13": "Tasua", + "2003-03-14": "Ashura", "2003-03-20": "Iranian Oil Industry Nationalization Day", - "2003-03-21": "Persian New Year", - "2003-03-22": "Persian New Year", - "2003-03-23": "Persian New Year", - "2003-03-24": "Persian New Year", + "2003-03-21": "Nowruz", + "2003-03-22": "Nowruz Holiday", + "2003-03-23": "Nowruz Holiday", + "2003-03-24": "Nowruz Holiday", "2003-04-01": "Islamic Republic Day", "2003-04-02": "Nature's Day", - "2003-04-22": "Arbaeen (estimated)", - "2003-04-30": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2003-05-01": "Martyrdom of Ali al-Rida (estimated)", - "2003-05-09": "Martyrdom of Hasan al-Askari (estimated)", - "2003-05-18": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2003-06-04": "Death of Khomeini", - "2003-06-05": "Khordad National Uprising", - "2003-08-01": "Martyrdom of Fatima (estimated)", - "2003-09-10": "Birthday of Ali (estimated)", - "2003-09-24": "Isra' and Mi'raj (estimated)", - "2003-10-11": "Birthday of Mahdi (estimated)", - "2003-11-15": "Martyrdom of Ali (estimated)", - "2003-11-25": "Eid al-Fitr (estimated)", - "2003-11-26": "Eid al-Fitr (estimated)", - "2003-12-19": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2004-02-01": "Eid al-Adha (estimated)", - "2004-02-09": "Eid al-Ghadeer (estimated)", + "2003-04-23": "Arbaeen", + "2003-05-01": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2003-05-02": "Martyrdom of Ali al-Rida", + "2003-05-10": "Martyrdom of Hasan al-Askari", + "2003-05-19": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2003-06-04": "Death of Imam Khomeini", + "2003-06-05": "15 Khordad Uprising", + "2003-08-02": "Martyrdom of Fatima", + "2003-09-10": "Birthday of Imam Ali", + "2003-09-24": "Isra' and Mi'raj", + "2003-10-12": "Birthday of Mahdi", + "2003-11-16": "Martyrdom of Imam Ali", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr Holiday", + "2003-12-20": "Martyrdom of Imam Ja'far al-Sadiq", + "2004-02-02": "Eid al-Adha", + "2004-02-10": "Eid al-Ghadeer", "2004-02-11": "Islamic Revolution Day", - "2004-02-29": "Tasua (estimated)", - "2004-03-01": "Ashura (estimated)", + "2004-03-01": "Tasua", + "2004-03-02": "Ashura", "2004-03-19": "Iranian Oil Industry Nationalization Day", - "2004-03-20": "Persian New Year", - "2004-03-21": "Persian New Year", - "2004-03-22": "Persian New Year", - "2004-03-23": "Persian New Year", + "2004-03-20": "Nowruz", + "2004-03-21": "Nowruz Holiday", + "2004-03-22": "Nowruz Holiday", + "2004-03-23": "Nowruz Holiday", "2004-03-31": "Islamic Republic Day", "2004-04-01": "Nature's Day", - "2004-04-10": "Arbaeen (estimated)", - "2004-04-18": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2004-04-19": "Martyrdom of Ali al-Rida (estimated)", - "2004-04-27": "Martyrdom of Hasan al-Askari (estimated)", - "2004-05-06": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2004-06-03": "Death of Khomeini", - "2004-06-04": "Khordad National Uprising", - "2004-07-20": "Martyrdom of Fatima (estimated)", - "2004-08-29": "Birthday of Ali (estimated)", - "2004-09-12": "Isra' and Mi'raj (estimated)", - "2004-09-29": "Birthday of Mahdi (estimated)", - "2004-11-04": "Martyrdom of Ali (estimated)", - "2004-11-14": "Eid al-Fitr (estimated)", - "2004-11-15": "Eid al-Fitr (estimated)", - "2004-12-08": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2005-01-21": "Eid al-Adha (estimated)", - "2005-01-29": "Eid al-Ghadeer (estimated)", + "2004-04-11": "Arbaeen", + "2004-04-19": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2004-04-20": "Martyrdom of Ali al-Rida", + "2004-04-28": "Martyrdom of Hasan al-Askari", + "2004-05-07": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2004-06-03": "Death of Imam Khomeini", + "2004-06-04": "15 Khordad Uprising", + "2004-07-21": "Martyrdom of Fatima", + "2004-08-30": "Birthday of Imam Ali", + "2004-09-13": "Isra' and Mi'raj", + "2004-10-01": "Birthday of Mahdi", + "2004-11-05": "Martyrdom of Imam Ali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr Holiday", + "2004-12-08": "Martyrdom of Imam Ja'far al-Sadiq", + "2005-01-21": "Eid al-Adha", + "2005-01-29": "Eid al-Ghadeer", "2005-02-10": "Islamic Revolution Day", - "2005-02-18": "Tasua (estimated)", - "2005-02-19": "Ashura (estimated)", + "2005-02-19": "Tasua", + "2005-02-20": "Ashura", "2005-03-19": "Iranian Oil Industry Nationalization Day", - "2005-03-21": "Persian New Year", - "2005-03-22": "Persian New Year", - "2005-03-23": "Persian New Year", - "2005-03-24": "Persian New Year", - "2005-03-30": "Arbaeen (estimated)", + "2005-03-20": "Last Day of Year", + "2005-03-21": "Nowruz", + "2005-03-22": "Nowruz Holiday", + "2005-03-23": "Nowruz Holiday", + "2005-03-24": "Nowruz Holiday", + "2005-03-31": "Arbaeen", "2005-04-01": "Islamic Republic Day", "2005-04-02": "Nature's Day", - "2005-04-07": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2005-04-09": "Martyrdom of Ali al-Rida (estimated)", - "2005-04-17": "Martyrdom of Hasan al-Askari (estimated)", - "2005-04-26": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2005-06-04": "Death of Khomeini", - "2005-06-05": "Khordad National Uprising", - "2005-07-09": "Martyrdom of Fatima (estimated)", - "2005-08-18": "Birthday of Ali (estimated)", - "2005-09-01": "Isra' and Mi'raj (estimated)", - "2005-09-19": "Birthday of Mahdi (estimated)", - "2005-10-24": "Martyrdom of Ali (estimated)", - "2005-11-03": "Eid al-Fitr (estimated)", - "2005-11-04": "Eid al-Fitr (estimated)", - "2005-11-27": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2006-01-10": "Eid al-Adha (estimated)", - "2006-01-18": "Eid al-Ghadeer (estimated)", - "2006-02-08": "Tasua (estimated)", - "2006-02-09": "Ashura (estimated)", + "2005-04-08": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2005-04-09": "Martyrdom of Ali al-Rida", + "2005-04-17": "Martyrdom of Hasan al-Askari", + "2005-04-26": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2005-06-04": "Death of Imam Khomeini", + "2005-06-05": "15 Khordad Uprising", + "2005-07-10": "Martyrdom of Fatima", + "2005-08-19": "Birthday of Imam Ali", + "2005-09-02": "Isra' and Mi'raj", + "2005-09-20": "Birthday of Mahdi", + "2005-10-25": "Martyrdom of Imam Ali", + "2005-11-04": "Eid al-Fitr", + "2005-11-05": "Eid al-Fitr Holiday", + "2005-11-28": "Martyrdom of Imam Ja'far al-Sadiq", + "2006-01-11": "Eid al-Adha", + "2006-01-19": "Eid al-Ghadeer", + "2006-02-08": "Tasua", + "2006-02-09": "Ashura", "2006-02-11": "Islamic Revolution Day", - "2006-03-20": "Arbaeen (estimated); Iranian Oil Industry Nationalization Day", - "2006-03-21": "Persian New Year", - "2006-03-22": "Persian New Year", - "2006-03-23": "Persian New Year", - "2006-03-24": "Persian New Year", - "2006-03-28": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2006-03-29": "Martyrdom of Ali al-Rida (estimated)", + "2006-03-20": "Iranian Oil Industry Nationalization Day", + "2006-03-21": "Arbaeen; Nowruz", + "2006-03-22": "Nowruz Holiday", + "2006-03-23": "Nowruz Holiday", + "2006-03-24": "Nowruz Holiday", + "2006-03-29": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2006-03-30": "Martyrdom of Ali al-Rida", "2006-04-01": "Islamic Republic Day", "2006-04-02": "Nature's Day", - "2006-04-06": "Martyrdom of Hasan al-Askari (estimated)", - "2006-04-15": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2006-06-04": "Death of Khomeini", - "2006-06-05": "Khordad National Uprising", - "2006-06-29": "Martyrdom of Fatima (estimated)", - "2006-08-07": "Birthday of Ali (estimated)", - "2006-08-21": "Isra' and Mi'raj (estimated)", - "2006-09-08": "Birthday of Mahdi (estimated)", - "2006-10-14": "Martyrdom of Ali (estimated)", - "2006-10-23": "Eid al-Fitr (estimated)", - "2006-10-24": "Eid al-Fitr (estimated)", - "2006-11-16": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2006-12-31": "Eid al-Adha (estimated)", - "2007-01-08": "Eid al-Ghadeer (estimated)", - "2007-01-28": "Tasua (estimated)", - "2007-01-29": "Ashura (estimated)", + "2006-04-07": "Martyrdom of Hasan al-Askari", + "2006-04-16": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2006-06-04": "Death of Imam Khomeini", + "2006-06-05": "15 Khordad Uprising", + "2006-06-29": "Martyrdom of Fatima", + "2006-08-08": "Birthday of Imam Ali", + "2006-08-22": "Isra' and Mi'raj", + "2006-09-09": "Birthday of Mahdi", + "2006-10-15": "Martyrdom of Imam Ali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr Holiday", + "2006-11-17": "Martyrdom of Imam Ja'far al-Sadiq", + "2006-12-31": "Eid al-Adha", + "2007-01-08": "Eid al-Ghadeer", + "2007-01-29": "Tasua", + "2007-01-30": "Ashura", "2007-02-11": "Islamic Revolution Day", - "2007-03-10": "Arbaeen (estimated)", - "2007-03-18": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2007-03-19": "Martyrdom of Ali al-Rida (estimated)", - "2007-03-20": "Iranian Oil Industry Nationalization Day", - "2007-03-21": "Persian New Year", - "2007-03-22": "Persian New Year", - "2007-03-23": "Persian New Year", - "2007-03-24": "Persian New Year", - "2007-03-27": "Martyrdom of Hasan al-Askari (estimated)", + "2007-03-10": "Arbaeen", + "2007-03-18": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2007-03-20": "Iranian Oil Industry Nationalization Day; Martyrdom of Ali al-Rida", + "2007-03-21": "Nowruz", + "2007-03-22": "Nowruz Holiday", + "2007-03-23": "Nowruz Holiday", + "2007-03-24": "Nowruz Holiday", + "2007-03-28": "Martyrdom of Hasan al-Askari", "2007-04-01": "Islamic Republic Day", "2007-04-02": "Nature's Day", - "2007-04-05": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2007-06-04": "Death of Khomeini", - "2007-06-05": "Khordad National Uprising", - "2007-06-18": "Martyrdom of Fatima (estimated)", - "2007-07-27": "Birthday of Ali (estimated)", - "2007-08-10": "Isra' and Mi'raj (estimated)", - "2007-08-28": "Birthday of Mahdi (estimated)", - "2007-10-03": "Martyrdom of Ali (estimated)", - "2007-10-13": "Eid al-Fitr (estimated)", - "2007-10-14": "Eid al-Fitr (estimated)", - "2007-11-06": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2007-12-20": "Eid al-Adha (estimated)", - "2007-12-28": "Eid al-Ghadeer (estimated)", - "2008-01-18": "Tasua (estimated)", - "2008-01-19": "Ashura (estimated)", + "2007-04-06": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2007-06-04": "Death of Imam Khomeini", + "2007-06-05": "15 Khordad Uprising", + "2007-06-18": "Martyrdom of Fatima", + "2007-07-28": "Birthday of Imam Ali", + "2007-08-11": "Isra' and Mi'raj", + "2007-08-29": "Birthday of Mahdi", + "2007-10-03": "Martyrdom of Imam Ali", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr Holiday", + "2007-11-06": "Martyrdom of Imam Ja'far al-Sadiq", + "2007-12-21": "Eid al-Adha", + "2007-12-29": "Eid al-Ghadeer", + "2008-01-18": "Tasua", + "2008-01-19": "Ashura", "2008-02-11": "Islamic Revolution Day", - "2008-02-27": "Arbaeen (estimated)", - "2008-03-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2008-03-08": "Martyrdom of Ali al-Rida (estimated)", - "2008-03-16": "Martyrdom of Hasan al-Askari (estimated)", + "2008-02-28": "Arbaeen", + "2008-03-07": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2008-03-08": "Martyrdom of Ali al-Rida", + "2008-03-16": "Martyrdom of Hasan al-Askari", "2008-03-19": "Iranian Oil Industry Nationalization Day", - "2008-03-20": "Persian New Year", - "2008-03-21": "Persian New Year", - "2008-03-22": "Persian New Year", - "2008-03-23": "Persian New Year", - "2008-03-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2008-03-20": "Nowruz", + "2008-03-21": "Nowruz Holiday", + "2008-03-22": "Nowruz Holiday", + "2008-03-23": "Nowruz Holiday", + "2008-03-25": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2008-03-31": "Islamic Republic Day", "2008-04-01": "Nature's Day", - "2008-06-03": "Death of Khomeini", - "2008-06-04": "Khordad National Uprising", - "2008-06-07": "Martyrdom of Fatima (estimated)", - "2008-07-16": "Birthday of Ali (estimated)", - "2008-07-30": "Isra' and Mi'raj (estimated)", - "2008-08-16": "Birthday of Mahdi (estimated)", - "2008-09-21": "Martyrdom of Ali (estimated)", - "2008-10-01": "Eid al-Fitr (estimated)", - "2008-10-02": "Eid al-Fitr (estimated)", - "2008-10-25": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2008-12-08": "Eid al-Adha (estimated)", - "2008-12-16": "Eid al-Ghadeer (estimated)", - "2009-01-06": "Tasua (estimated)", - "2009-01-07": "Ashura (estimated)", + "2008-06-03": "Death of Imam Khomeini", + "2008-06-04": "15 Khordad Uprising", + "2008-06-07": "Martyrdom of Fatima", + "2008-07-16": "Birthday of Imam Ali", + "2008-07-30": "Isra' and Mi'raj", + "2008-08-17": "Birthday of Mahdi", + "2008-09-22": "Martyrdom of Imam Ali", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr Holiday", + "2008-10-25": "Martyrdom of Imam Ja'far al-Sadiq", + "2008-12-09": "Eid al-Adha", + "2008-12-17": "Eid al-Ghadeer", + "2009-01-06": "Tasua", + "2009-01-07": "Ashura", "2009-02-10": "Islamic Revolution Day", - "2009-02-15": "Arbaeen (estimated)", - "2009-02-23": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2009-02-25": "Martyrdom of Ali al-Rida (estimated)", - "2009-03-05": "Martyrdom of Hasan al-Askari (estimated)", - "2009-03-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2009-02-16": "Arbaeen", + "2009-02-24": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2009-02-26": "Martyrdom of Ali al-Rida", + "2009-03-06": "Martyrdom of Hasan al-Askari", + "2009-03-15": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2009-03-19": "Iranian Oil Industry Nationalization Day", - "2009-03-21": "Persian New Year", - "2009-03-22": "Persian New Year", - "2009-03-23": "Persian New Year", - "2009-03-24": "Persian New Year", + "2009-03-20": "Last Day of Year", + "2009-03-21": "Nowruz", + "2009-03-22": "Nowruz Holiday", + "2009-03-23": "Nowruz Holiday", + "2009-03-24": "Nowruz Holiday", "2009-04-01": "Islamic Republic Day", "2009-04-02": "Nature's Day", - "2009-05-27": "Martyrdom of Fatima (estimated)", - "2009-06-04": "Death of Khomeini", - "2009-06-05": "Khordad National Uprising", - "2009-07-06": "Birthday of Ali (estimated)", - "2009-07-20": "Isra' and Mi'raj (estimated)", - "2009-08-06": "Birthday of Mahdi (estimated)", - "2009-09-11": "Martyrdom of Ali (estimated)", - "2009-09-20": "Eid al-Fitr (estimated)", - "2009-09-21": "Eid al-Fitr (estimated)", - "2009-10-14": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2009-11-27": "Eid al-Adha (estimated)", - "2009-12-05": "Eid al-Ghadeer (estimated)", - "2009-12-26": "Tasua (estimated)", - "2009-12-27": "Ashura (estimated)", - "2010-02-04": "Arbaeen (estimated)", + "2009-05-28": "Martyrdom of Fatima", + "2009-06-04": "Death of Imam Khomeini", + "2009-06-05": "15 Khordad Uprising", + "2009-07-06": "Birthday of Imam Ali", + "2009-07-20": "Isra' and Mi'raj", + "2009-08-07": "Birthday of Mahdi", + "2009-09-11": "Martyrdom of Imam Ali", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr Holiday", + "2009-10-14": "Martyrdom of Imam Ja'far al-Sadiq", + "2009-11-28": "Eid al-Adha", + "2009-12-06": "Eid al-Ghadeer", + "2009-12-26": "Tasua", + "2009-12-27": "Ashura", + "2010-02-05": "Arbaeen", "2010-02-11": "Islamic Revolution Day", - "2010-02-12": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2010-02-14": "Martyrdom of Ali al-Rida (estimated)", - "2010-02-22": "Martyrdom of Hasan al-Askari (estimated)", - "2010-03-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2010-02-13": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2010-02-15": "Martyrdom of Ali al-Rida", + "2010-02-23": "Martyrdom of Hasan al-Askari", + "2010-03-04": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2010-03-20": "Iranian Oil Industry Nationalization Day", - "2010-03-21": "Persian New Year", - "2010-03-22": "Persian New Year", - "2010-03-23": "Persian New Year", - "2010-03-24": "Persian New Year", + "2010-03-21": "Nowruz", + "2010-03-22": "Nowruz Holiday", + "2010-03-23": "Nowruz Holiday", + "2010-03-24": "Nowruz Holiday", "2010-04-01": "Islamic Republic Day", "2010-04-02": "Nature's Day", - "2010-05-17": "Martyrdom of Fatima (estimated)", - "2010-06-04": "Death of Khomeini", - "2010-06-05": "Khordad National Uprising", - "2010-06-25": "Birthday of Ali (estimated)", - "2010-07-09": "Isra' and Mi'raj (estimated)", - "2010-07-27": "Birthday of Mahdi (estimated)", - "2010-08-31": "Martyrdom of Ali (estimated)", - "2010-09-10": "Eid al-Fitr (estimated)", - "2010-09-11": "Eid al-Fitr (estimated)", - "2010-10-04": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2010-11-16": "Eid al-Adha (estimated)", - "2010-11-24": "Eid al-Ghadeer (estimated)", - "2010-12-15": "Tasua (estimated)", - "2010-12-16": "Ashura (estimated)", - "2011-01-24": "Arbaeen (estimated)", - "2011-02-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2011-02-03": "Martyrdom of Ali al-Rida (estimated)", - "2011-02-11": "Islamic Revolution Day; Martyrdom of Hasan al-Askari (estimated)", - "2011-02-20": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2010-05-17": "Martyrdom of Fatima", + "2010-06-04": "Death of Imam Khomeini", + "2010-06-05": "15 Khordad Uprising", + "2010-06-26": "Birthday of Imam Ali", + "2010-07-10": "Isra' and Mi'raj", + "2010-07-27": "Birthday of Mahdi", + "2010-09-01": "Martyrdom of Imam Ali", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr Holiday", + "2010-10-04": "Martyrdom of Imam Ja'far al-Sadiq", + "2010-11-17": "Eid al-Adha", + "2010-11-25": "Eid al-Ghadeer", + "2010-12-15": "Tasua", + "2010-12-16": "Ashura", + "2011-01-25": "Arbaeen", + "2011-02-02": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2011-02-04": "Martyrdom of Ali al-Rida", + "2011-02-11": "Islamic Revolution Day", + "2011-02-12": "Martyrdom of Hasan al-Askari", + "2011-02-21": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2011-03-20": "Iranian Oil Industry Nationalization Day", - "2011-03-21": "Persian New Year", - "2011-03-22": "Persian New Year", - "2011-03-23": "Persian New Year", - "2011-03-24": "Persian New Year", + "2011-03-21": "Nowruz", + "2011-03-22": "Nowruz Holiday", + "2011-03-23": "Nowruz Holiday", + "2011-03-24": "Nowruz Holiday", "2011-04-01": "Islamic Republic Day", "2011-04-02": "Nature's Day", - "2011-05-06": "Martyrdom of Fatima (estimated)", - "2011-06-04": "Death of Khomeini", - "2011-06-05": "Khordad National Uprising", - "2011-06-15": "Birthday of Ali (estimated)", - "2011-06-29": "Isra' and Mi'raj (estimated)", - "2011-07-16": "Birthday of Mahdi (estimated)", - "2011-08-21": "Martyrdom of Ali (estimated)", - "2011-08-30": "Eid al-Fitr (estimated)", - "2011-08-31": "Eid al-Fitr (estimated)", - "2011-09-23": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2011-11-06": "Eid al-Adha (estimated)", - "2011-11-14": "Eid al-Ghadeer (estimated)", - "2011-12-04": "Tasua (estimated)", - "2011-12-05": "Ashura (estimated)", - "2012-01-14": "Arbaeen (estimated)", - "2012-01-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2012-01-23": "Martyrdom of Ali al-Rida (estimated)", - "2012-01-31": "Martyrdom of Hasan al-Askari (estimated)", - "2012-02-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2011-05-07": "Martyrdom of Fatima", + "2011-06-04": "Death of Imam Khomeini", + "2011-06-05": "15 Khordad Uprising", + "2011-06-16": "Birthday of Imam Ali", + "2011-06-30": "Isra' and Mi'raj", + "2011-07-17": "Birthday of Mahdi", + "2011-08-21": "Martyrdom of Imam Ali", + "2011-08-31": "Eid al-Fitr", + "2011-09-01": "Eid al-Fitr Holiday", + "2011-09-24": "Martyrdom of Imam Ja'far al-Sadiq", + "2011-11-07": "Eid al-Adha", + "2011-11-15": "Eid al-Ghadeer", + "2011-12-05": "Tasua", + "2011-12-06": "Ashura", + "2012-01-14": "Arbaeen", + "2012-01-22": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2012-01-24": "Martyrdom of Ali al-Rida", + "2012-02-01": "Martyrdom of Hasan al-Askari", + "2012-02-10": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2012-02-11": "Islamic Revolution Day", "2012-03-19": "Iranian Oil Industry Nationalization Day", - "2012-03-20": "Persian New Year", - "2012-03-21": "Persian New Year", - "2012-03-22": "Persian New Year", - "2012-03-23": "Persian New Year", + "2012-03-20": "Nowruz", + "2012-03-21": "Nowruz Holiday", + "2012-03-22": "Nowruz Holiday", + "2012-03-23": "Nowruz Holiday", "2012-03-31": "Islamic Republic Day", "2012-04-01": "Nature's Day", - "2012-04-24": "Martyrdom of Fatima (estimated)", - "2012-06-03": "Birthday of Ali (estimated); Death of Khomeini", - "2012-06-04": "Khordad National Uprising", - "2012-06-17": "Isra' and Mi'raj (estimated)", - "2012-07-05": "Birthday of Mahdi (estimated)", - "2012-08-09": "Martyrdom of Ali (estimated)", - "2012-08-19": "Eid al-Fitr (estimated)", - "2012-08-20": "Eid al-Fitr (estimated)", - "2012-09-12": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2012-10-26": "Eid al-Adha (estimated)", - "2012-11-03": "Eid al-Ghadeer (estimated)", - "2012-11-23": "Tasua (estimated)", - "2012-11-24": "Ashura (estimated)", - "2013-01-02": "Arbaeen (estimated)", - "2013-01-10": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2013-01-12": "Martyrdom of Ali al-Rida (estimated)", - "2013-01-20": "Martyrdom of Hasan al-Askari (estimated)", - "2013-01-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2012-04-25": "Martyrdom of Fatima", + "2012-06-03": "Death of Imam Khomeini", + "2012-06-04": "15 Khordad Uprising; Birthday of Imam Ali", + "2012-06-18": "Isra' and Mi'raj", + "2012-07-05": "Birthday of Mahdi", + "2012-08-10": "Martyrdom of Imam Ali", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr Holiday", + "2012-09-12": "Martyrdom of Imam Ja'far al-Sadiq", + "2012-10-26": "Eid al-Adha", + "2012-11-03": "Eid al-Ghadeer", + "2012-11-24": "Tasua", + "2012-11-25": "Ashura", + "2013-01-03": "Arbaeen", + "2013-01-11": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2013-01-12": "Martyrdom of Ali al-Rida", + "2013-01-20": "Martyrdom of Hasan al-Askari", + "2013-01-29": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2013-02-10": "Islamic Revolution Day", "2013-03-19": "Iranian Oil Industry Nationalization Day", - "2013-03-21": "Persian New Year", - "2013-03-22": "Persian New Year", - "2013-03-23": "Persian New Year", - "2013-03-24": "Persian New Year", + "2013-03-20": "Last Day of Year", + "2013-03-21": "Nowruz", + "2013-03-22": "Nowruz Holiday", + "2013-03-23": "Nowruz Holiday", + "2013-03-24": "Nowruz Holiday", "2013-04-01": "Islamic Republic Day", "2013-04-02": "Nature's Day", - "2013-04-13": "Martyrdom of Fatima (estimated)", - "2013-05-23": "Birthday of Ali (estimated)", - "2013-06-04": "Death of Khomeini", - "2013-06-05": "Khordad National Uprising", - "2013-06-06": "Isra' and Mi'raj (estimated)", - "2013-06-24": "Birthday of Mahdi (estimated)", - "2013-07-29": "Martyrdom of Ali (estimated)", - "2013-08-08": "Eid al-Fitr (estimated)", - "2013-08-09": "Eid al-Fitr (estimated)", - "2013-09-01": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2013-10-15": "Eid al-Adha (estimated)", - "2013-10-23": "Eid al-Ghadeer (estimated)", - "2013-11-12": "Tasua (estimated)", - "2013-11-13": "Ashura (estimated)", - "2013-12-23": "Arbaeen (estimated)", - "2013-12-31": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2014-01-01": "Martyrdom of Ali al-Rida (estimated)", - "2014-01-09": "Martyrdom of Hasan al-Askari (estimated)", - "2014-01-18": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2013-04-14": "Martyrdom of Fatima", + "2013-05-24": "Birthday of Imam Ali", + "2013-06-04": "Death of Imam Khomeini", + "2013-06-05": "15 Khordad Uprising", + "2013-06-07": "Isra' and Mi'raj", + "2013-06-24": "Birthday of Mahdi", + "2013-07-30": "Martyrdom of Imam Ali", + "2013-08-09": "Eid al-Fitr", + "2013-08-10": "Eid al-Fitr Holiday", + "2013-09-02": "Martyrdom of Imam Ja'far al-Sadiq", + "2013-10-16": "Eid al-Adha", + "2013-10-24": "Eid al-Ghadeer", + "2013-11-13": "Tasua", + "2013-11-14": "Ashura", + "2013-12-23": "Arbaeen", + "2013-12-31": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2014-01-02": "Martyrdom of Ali al-Rida", + "2014-01-10": "Martyrdom of Hasan al-Askari", + "2014-01-19": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2014-02-11": "Islamic Revolution Day", "2014-03-20": "Iranian Oil Industry Nationalization Day", - "2014-03-21": "Persian New Year", - "2014-03-22": "Persian New Year", - "2014-03-23": "Persian New Year", - "2014-03-24": "Persian New Year", + "2014-03-21": "Nowruz", + "2014-03-22": "Nowruz Holiday", + "2014-03-23": "Nowruz Holiday", + "2014-03-24": "Nowruz Holiday", "2014-04-01": "Islamic Republic Day", "2014-04-02": "Nature's Day", - "2014-04-03": "Martyrdom of Fatima (estimated)", - "2014-05-12": "Birthday of Ali (estimated)", - "2014-05-26": "Isra' and Mi'raj (estimated)", - "2014-06-04": "Death of Khomeini", - "2014-06-05": "Khordad National Uprising", - "2014-06-13": "Birthday of Mahdi (estimated)", - "2014-07-18": "Martyrdom of Ali (estimated)", - "2014-07-28": "Eid al-Fitr (estimated)", - "2014-07-29": "Eid al-Fitr (estimated)", - "2014-08-21": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2014-10-04": "Eid al-Adha (estimated)", - "2014-10-12": "Eid al-Ghadeer (estimated)", - "2014-11-02": "Tasua (estimated)", - "2014-11-03": "Ashura (estimated)", - "2014-12-12": "Arbaeen (estimated)", - "2014-12-20": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2014-12-22": "Martyrdom of Ali al-Rida (estimated)", - "2014-12-30": "Martyrdom of Hasan al-Askari (estimated)", - "2015-01-08": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2014-04-03": "Martyrdom of Fatima", + "2014-05-13": "Birthday of Imam Ali", + "2014-05-27": "Isra' and Mi'raj", + "2014-06-04": "Death of Imam Khomeini", + "2014-06-05": "15 Khordad Uprising", + "2014-06-13": "Birthday of Mahdi", + "2014-07-19": "Martyrdom of Imam Ali", + "2014-07-29": "Eid al-Fitr", + "2014-07-30": "Eid al-Fitr Holiday", + "2014-08-22": "Martyrdom of Imam Ja'far al-Sadiq", + "2014-10-05": "Eid al-Adha", + "2014-10-13": "Eid al-Ghadeer", + "2014-11-03": "Tasua", + "2014-11-04": "Ashura", + "2014-12-13": "Arbaeen", + "2014-12-21": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2014-12-23": "Martyrdom of Ali al-Rida", + "2014-12-31": "Martyrdom of Hasan al-Askari", + "2015-01-09": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2015-02-11": "Islamic Revolution Day", "2015-03-20": "Iranian Oil Industry Nationalization Day", - "2015-03-21": "Persian New Year", - "2015-03-22": "Persian New Year", - "2015-03-23": "Martyrdom of Fatima (estimated); Persian New Year", - "2015-03-24": "Persian New Year", + "2015-03-21": "Nowruz", + "2015-03-22": "Nowruz Holiday", + "2015-03-23": "Nowruz Holiday", + "2015-03-24": "Martyrdom of Fatima; Nowruz Holiday", "2015-04-01": "Islamic Republic Day", "2015-04-02": "Nature's Day", - "2015-05-02": "Birthday of Ali (estimated)", - "2015-05-16": "Isra' and Mi'raj (estimated)", - "2015-06-02": "Birthday of Mahdi (estimated)", - "2015-06-04": "Death of Khomeini", - "2015-06-05": "Khordad National Uprising", - "2015-07-08": "Martyrdom of Ali (estimated)", - "2015-07-17": "Eid al-Fitr (estimated)", - "2015-07-18": "Eid al-Fitr (estimated)", - "2015-08-10": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2015-09-23": "Eid al-Adha (estimated)", - "2015-10-01": "Eid al-Ghadeer (estimated)", - "2015-10-22": "Tasua (estimated)", - "2015-10-23": "Ashura (estimated)", - "2015-12-02": "Arbaeen (estimated)", - "2015-12-10": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2015-12-11": "Martyrdom of Ali al-Rida (estimated)", - "2015-12-19": "Martyrdom of Hasan al-Askari (estimated)", - "2015-12-28": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2015-05-02": "Birthday of Imam Ali", + "2015-05-16": "Isra' and Mi'raj", + "2015-06-03": "Birthday of Mahdi", + "2015-06-04": "Death of Imam Khomeini", + "2015-06-05": "15 Khordad Uprising", + "2015-07-08": "Martyrdom of Imam Ali", + "2015-07-18": "Eid al-Fitr", + "2015-07-19": "Eid al-Fitr Holiday", + "2015-08-11": "Martyrdom of Imam Ja'far al-Sadiq", + "2015-09-24": "Eid al-Adha", + "2015-10-02": "Eid al-Ghadeer", + "2015-10-23": "Tasua", + "2015-10-24": "Ashura", + "2015-12-02": "Arbaeen", + "2015-12-10": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2015-12-12": "Martyrdom of Ali al-Rida", + "2015-12-20": "Martyrdom of Hasan al-Askari", + "2015-12-29": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2016-02-11": "Islamic Revolution Day", - "2016-03-12": "Martyrdom of Fatima (estimated)", + "2016-03-13": "Martyrdom of Fatima", "2016-03-19": "Iranian Oil Industry Nationalization Day", - "2016-03-20": "Persian New Year", - "2016-03-21": "Persian New Year", - "2016-03-22": "Persian New Year", - "2016-03-23": "Persian New Year", + "2016-03-20": "Nowruz", + "2016-03-21": "Nowruz Holiday", + "2016-03-22": "Nowruz Holiday", + "2016-03-23": "Nowruz Holiday", "2016-03-31": "Islamic Republic Day", "2016-04-01": "Nature's Day", - "2016-04-20": "Birthday of Ali (estimated)", - "2016-05-04": "Isra' and Mi'raj (estimated)", - "2016-05-22": "Birthday of Mahdi (estimated)", - "2016-06-03": "Death of Khomeini", - "2016-06-04": "Khordad National Uprising", - "2016-06-26": "Martyrdom of Ali (estimated)", - "2016-07-06": "Eid al-Fitr (estimated)", - "2016-07-07": "Eid al-Fitr (estimated)", - "2016-07-30": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2016-09-11": "Eid al-Adha (estimated)", - "2016-09-19": "Eid al-Ghadeer (estimated)", - "2016-10-10": "Tasua (estimated)", - "2016-10-11": "Ashura (estimated)", - "2016-11-20": "Arbaeen (estimated)", - "2016-11-28": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2016-11-29": "Martyrdom of Ali al-Rida (estimated)", - "2016-12-07": "Martyrdom of Hasan al-Askari (estimated)", - "2016-12-16": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2016-04-21": "Birthday of Imam Ali", + "2016-05-05": "Isra' and Mi'raj", + "2016-05-22": "Birthday of Mahdi", + "2016-06-03": "Death of Imam Khomeini", + "2016-06-04": "15 Khordad Uprising", + "2016-06-27": "Martyrdom of Imam Ali", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr Holiday", + "2016-07-30": "Martyrdom of Imam Ja'far al-Sadiq", + "2016-09-12": "Eid al-Adha", + "2016-09-20": "Eid al-Ghadeer", + "2016-10-11": "Tasua", + "2016-10-12": "Ashura", + "2016-11-20": "Arbaeen", + "2016-11-28": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2016-11-30": "Martyrdom of Ali al-Rida", + "2016-12-08": "Martyrdom of Hasan al-Askari", + "2016-12-17": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2017-02-10": "Islamic Revolution Day", - "2017-03-02": "Martyrdom of Fatima (estimated)", + "2017-03-02": "Martyrdom of Fatima", "2017-03-19": "Iranian Oil Industry Nationalization Day", - "2017-03-21": "Persian New Year", - "2017-03-22": "Persian New Year", - "2017-03-23": "Persian New Year", - "2017-03-24": "Persian New Year", + "2017-03-20": "Last Day of Year", + "2017-03-21": "Nowruz", + "2017-03-22": "Nowruz Holiday", + "2017-03-23": "Nowruz Holiday", + "2017-03-24": "Nowruz Holiday", "2017-04-01": "Islamic Republic Day", "2017-04-02": "Nature's Day", - "2017-04-10": "Birthday of Ali (estimated)", - "2017-04-24": "Isra' and Mi'raj (estimated)", - "2017-05-11": "Birthday of Mahdi (estimated)", - "2017-06-04": "Death of Khomeini", - "2017-06-05": "Khordad National Uprising", - "2017-06-16": "Martyrdom of Ali (estimated)", - "2017-06-25": "Eid al-Fitr (estimated)", - "2017-06-26": "Eid al-Fitr (estimated)", - "2017-07-19": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2017-09-01": "Eid al-Adha (estimated)", - "2017-09-09": "Eid al-Ghadeer (estimated)", - "2017-09-29": "Tasua (estimated)", - "2017-09-30": "Ashura (estimated)", - "2017-11-09": "Arbaeen (estimated)", - "2017-11-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2017-11-18": "Martyrdom of Ali al-Rida (estimated)", - "2017-11-26": "Martyrdom of Hasan al-Askari (estimated)", - "2017-12-05": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2017-04-11": "Birthday of Imam Ali", + "2017-04-25": "Isra' and Mi'raj", + "2017-05-12": "Birthday of Mahdi", + "2017-06-04": "Death of Imam Khomeini", + "2017-06-05": "15 Khordad Uprising", + "2017-06-16": "Martyrdom of Imam Ali", + "2017-06-26": "Eid al-Fitr", + "2017-06-27": "Eid al-Fitr Holiday", + "2017-07-20": "Martyrdom of Imam Ja'far al-Sadiq", + "2017-09-01": "Eid al-Adha", + "2017-09-09": "Eid al-Ghadeer", + "2017-09-30": "Tasua", + "2017-10-01": "Ashura", + "2017-11-09": "Arbaeen", + "2017-11-17": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2017-11-19": "Martyrdom of Ali al-Rida", + "2017-11-27": "Martyrdom of Hasan al-Askari", + "2017-12-06": "Birthday of Muhammad and Imam Ja'far al-Sadiq", "2018-02-11": "Islamic Revolution Day", - "2018-02-19": "Martyrdom of Fatima (estimated)", + "2018-02-20": "Martyrdom of Fatima", "2018-03-20": "Iranian Oil Industry Nationalization Day", - "2018-03-21": "Persian New Year", - "2018-03-22": "Persian New Year", - "2018-03-23": "Persian New Year", - "2018-03-24": "Persian New Year", - "2018-03-30": "Birthday of Ali (estimated)", + "2018-03-21": "Nowruz", + "2018-03-22": "Nowruz Holiday", + "2018-03-23": "Nowruz Holiday", + "2018-03-24": "Nowruz Holiday", + "2018-03-31": "Birthday of Imam Ali", "2018-04-01": "Islamic Republic Day", "2018-04-02": "Nature's Day", - "2018-04-13": "Isra' and Mi'raj (estimated)", - "2018-05-01": "Birthday of Mahdi (estimated)", - "2018-06-04": "Death of Khomeini", - "2018-06-05": "Khordad National Uprising; Martyrdom of Ali (estimated)", - "2018-06-15": "Eid al-Fitr (estimated)", - "2018-06-16": "Eid al-Fitr (estimated)", - "2018-07-09": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2018-08-21": "Eid al-Adha (estimated)", - "2018-08-29": "Eid al-Ghadeer (estimated)", - "2018-09-19": "Tasua (estimated)", - "2018-09-20": "Ashura (estimated)", - "2018-10-29": "Arbaeen (estimated)", - "2018-11-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2018-11-08": "Martyrdom of Ali al-Rida (estimated)", - "2018-11-16": "Martyrdom of Hasan al-Askari (estimated)", - "2018-11-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2019-02-08": "Martyrdom of Fatima (estimated)", + "2018-04-14": "Isra' and Mi'raj", + "2018-05-02": "Birthday of Mahdi", + "2018-06-04": "Death of Imam Khomeini", + "2018-06-05": "15 Khordad Uprising", + "2018-06-06": "Martyrdom of Imam Ali", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr Holiday", + "2018-07-09": "Martyrdom of Imam Ja'far al-Sadiq", + "2018-08-22": "Eid al-Adha", + "2018-08-30": "Eid al-Ghadeer", + "2018-09-19": "Tasua", + "2018-09-20": "Ashura", + "2018-10-30": "Arbaeen", + "2018-11-07": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2018-11-08": "Martyrdom of Ali al-Rida", + "2018-11-16": "Martyrdom of Hasan al-Askari", + "2018-11-25": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2019-02-09": "Martyrdom of Fatima", "2019-02-11": "Islamic Revolution Day", - "2019-03-20": "Birthday of Ali (estimated); Iranian Oil Industry Nationalization Day", - "2019-03-21": "Persian New Year", - "2019-03-22": "Persian New Year", - "2019-03-23": "Persian New Year", - "2019-03-24": "Persian New Year", + "2019-03-20": "Birthday of Imam Ali; Iranian Oil Industry Nationalization Day", + "2019-03-21": "Nowruz", + "2019-03-22": "Nowruz Holiday", + "2019-03-23": "Nowruz Holiday", + "2019-03-24": "Nowruz Holiday", "2019-04-01": "Islamic Republic Day", "2019-04-02": "Nature's Day", - "2019-04-03": "Isra' and Mi'raj (estimated)", - "2019-04-20": "Birthday of Mahdi (estimated)", - "2019-05-26": "Martyrdom of Ali (estimated)", - "2019-06-04": "Death of Khomeini; Eid al-Fitr (estimated)", - "2019-06-05": "Eid al-Fitr (estimated); Khordad National Uprising", - "2019-06-28": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2019-08-11": "Eid al-Adha (estimated)", - "2019-08-19": "Eid al-Ghadeer (estimated)", - "2019-09-08": "Tasua (estimated)", - "2019-09-09": "Ashura (estimated)", - "2019-10-19": "Arbaeen (estimated)", - "2019-10-27": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2019-10-28": "Martyrdom of Ali al-Rida (estimated)", - "2019-11-05": "Martyrdom of Hasan al-Askari (estimated)", - "2019-11-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2020-01-28": "Martyrdom of Fatima (estimated)", + "2019-04-03": "Isra' and Mi'raj", + "2019-04-21": "Birthday of Mahdi", + "2019-05-27": "Martyrdom of Imam Ali", + "2019-06-04": "Death of Imam Khomeini", + "2019-06-05": "15 Khordad Uprising; Eid al-Fitr", + "2019-06-06": "Eid al-Fitr Holiday", + "2019-06-29": "Martyrdom of Imam Ja'far al-Sadiq", + "2019-08-12": "Eid al-Adha", + "2019-08-20": "Eid al-Ghadeer", + "2019-09-09": "Tasua", + "2019-09-10": "Ashura", + "2019-10-19": "Arbaeen", + "2019-10-27": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2019-10-29": "Martyrdom of Ali al-Rida", + "2019-11-06": "Martyrdom of Hasan al-Askari", + "2019-11-15": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2020-01-29": "Martyrdom of Fatima", "2020-02-11": "Islamic Revolution Day", - "2020-03-08": "Birthday of Ali (estimated)", + "2020-03-08": "Birthday of Imam Ali", "2020-03-19": "Iranian Oil Industry Nationalization Day", - "2020-03-20": "Persian New Year", - "2020-03-21": "Persian New Year", - "2020-03-22": "Isra' and Mi'raj (estimated); Persian New Year", - "2020-03-23": "Persian New Year", + "2020-03-20": "Nowruz", + "2020-03-21": "Nowruz Holiday", + "2020-03-22": "Isra' and Mi'raj; Nowruz Holiday", + "2020-03-23": "Nowruz Holiday", "2020-03-31": "Islamic Republic Day", "2020-04-01": "Nature's Day", - "2020-04-08": "Birthday of Mahdi (estimated)", - "2020-05-14": "Martyrdom of Ali (estimated)", - "2020-05-24": "Eid al-Fitr (estimated)", - "2020-05-25": "Eid al-Fitr (estimated)", - "2020-06-03": "Death of Khomeini", - "2020-06-04": "Khordad National Uprising", - "2020-06-17": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2020-07-31": "Eid al-Adha (estimated)", - "2020-08-08": "Eid al-Ghadeer (estimated)", - "2020-08-28": "Tasua (estimated)", - "2020-08-29": "Ashura (estimated)", - "2020-10-07": "Arbaeen (estimated)", - "2020-10-15": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2020-10-17": "Martyrdom of Ali al-Rida (estimated)", - "2020-10-25": "Martyrdom of Hasan al-Askari (estimated)", - "2020-11-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2021-01-16": "Martyrdom of Fatima (estimated)", + "2020-04-09": "Birthday of Mahdi", + "2020-05-15": "Martyrdom of Imam Ali", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr Holiday", + "2020-06-03": "Death of Imam Khomeini", + "2020-06-04": "15 Khordad Uprising", + "2020-06-17": "Martyrdom of Imam Ja'far al-Sadiq", + "2020-07-31": "Eid al-Adha", + "2020-08-08": "Eid al-Ghadeer", + "2020-08-29": "Tasua", + "2020-08-30": "Ashura", + "2020-10-08": "Arbaeen", + "2020-10-16": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2020-10-17": "Martyrdom of Ali al-Rida", + "2020-10-25": "Martyrdom of Hasan al-Askari", + "2020-11-03": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2021-01-17": "Martyrdom of Fatima", "2021-02-10": "Islamic Revolution Day", - "2021-02-25": "Birthday of Ali (estimated)", - "2021-03-11": "Isra' and Mi'raj (estimated)", + "2021-02-25": "Birthday of Imam Ali", + "2021-03-11": "Isra' and Mi'raj", "2021-03-19": "Iranian Oil Industry Nationalization Day", - "2021-03-21": "Persian New Year", - "2021-03-22": "Persian New Year", - "2021-03-23": "Persian New Year", - "2021-03-24": "Persian New Year", - "2021-03-28": "Birthday of Mahdi (estimated)", + "2021-03-20": "Last Day of Year", + "2021-03-21": "Nowruz", + "2021-03-22": "Nowruz Holiday", + "2021-03-23": "Nowruz Holiday", + "2021-03-24": "Nowruz Holiday", + "2021-03-29": "Birthday of Mahdi", "2021-04-01": "Islamic Republic Day", "2021-04-02": "Nature's Day", - "2021-05-03": "Martyrdom of Ali (estimated)", - "2021-05-13": "Eid al-Fitr (estimated)", - "2021-05-14": "Eid al-Fitr (estimated)", - "2021-06-04": "Death of Khomeini", - "2021-06-05": "Khordad National Uprising", - "2021-06-06": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2021-07-20": "Eid al-Adha (estimated)", - "2021-07-28": "Eid al-Ghadeer (estimated)", - "2021-08-17": "Tasua (estimated)", - "2021-08-18": "Ashura (estimated)", - "2021-09-27": "Arbaeen (estimated)", - "2021-10-05": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2021-10-06": "Martyrdom of Ali al-Rida (estimated)", - "2021-10-14": "Martyrdom of Hasan al-Askari (estimated)", - "2021-10-23": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2022-01-06": "Martyrdom of Fatima (estimated)", + "2021-05-04": "Martyrdom of Imam Ali", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr Holiday", + "2021-06-04": "Death of Imam Khomeini", + "2021-06-05": "15 Khordad Uprising", + "2021-06-06": "Martyrdom of Imam Ja'far al-Sadiq", + "2021-07-21": "Eid al-Adha", + "2021-07-29": "Eid al-Ghadeer", + "2021-08-18": "Tasua", + "2021-08-19": "Ashura", + "2021-09-27": "Arbaeen", + "2021-10-05": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2021-10-07": "Martyrdom of Ali al-Rida", + "2021-10-15": "Martyrdom of Hasan al-Askari", + "2021-10-24": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2022-01-06": "Martyrdom of Fatima", "2022-02-11": "Islamic Revolution Day", - "2022-02-14": "Birthday of Ali (estimated)", - "2022-02-28": "Isra' and Mi'raj (estimated)", - "2022-03-18": "Birthday of Mahdi (estimated)", + "2022-02-15": "Birthday of Imam Ali", + "2022-03-01": "Isra' and Mi'raj", + "2022-03-18": "Birthday of Mahdi", "2022-03-20": "Iranian Oil Industry Nationalization Day", - "2022-03-21": "Persian New Year", - "2022-03-22": "Persian New Year", - "2022-03-23": "Persian New Year", - "2022-03-24": "Persian New Year", + "2022-03-21": "Nowruz", + "2022-03-22": "Nowruz Holiday", + "2022-03-23": "Nowruz Holiday", + "2022-03-24": "Nowruz Holiday", "2022-04-01": "Islamic Republic Day", "2022-04-02": "Nature's Day", - "2022-04-22": "Martyrdom of Ali (estimated)", - "2022-05-02": "Eid al-Fitr (estimated)", - "2022-05-03": "Eid al-Fitr (estimated)", - "2022-05-26": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2022-06-04": "Death of Khomeini", - "2022-06-05": "Khordad National Uprising", - "2022-07-09": "Eid al-Adha (estimated)", - "2022-07-17": "Eid al-Ghadeer (estimated)", - "2022-08-07": "Tasua (estimated)", - "2022-08-08": "Ashura (estimated)", - "2022-09-16": "Arbaeen (estimated)", - "2022-09-24": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2022-09-26": "Martyrdom of Ali al-Rida (estimated)", - "2022-10-04": "Martyrdom of Hasan al-Askari (estimated)", - "2022-10-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2022-12-27": "Martyrdom of Fatima (estimated)", - "2023-02-04": "Birthday of Ali (estimated)", + "2022-04-23": "Martyrdom of Imam Ali", + "2022-05-03": "Eid al-Fitr", + "2022-05-04": "Eid al-Fitr Holiday", + "2022-05-27": "Martyrdom of Imam Ja'far al-Sadiq", + "2022-06-04": "Death of Imam Khomeini", + "2022-06-05": "15 Khordad Uprising", + "2022-07-10": "Eid al-Adha", + "2022-07-18": "Eid al-Ghadeer", + "2022-08-07": "Tasua", + "2022-08-08": "Ashura", + "2022-09-17": "Arbaeen", + "2022-09-25": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2022-09-27": "Martyrdom of Ali al-Rida", + "2022-10-05": "Martyrdom of Hasan al-Askari", + "2022-10-14": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2022-12-27": "Martyrdom of Fatima", + "2023-02-04": "Birthday of Imam Ali", "2023-02-11": "Islamic Revolution Day", - "2023-02-18": "Isra' and Mi'raj (estimated)", - "2023-03-07": "Birthday of Mahdi (estimated)", + "2023-02-18": "Isra' and Mi'raj", + "2023-03-08": "Birthday of Mahdi", "2023-03-20": "Iranian Oil Industry Nationalization Day", - "2023-03-21": "Persian New Year", - "2023-03-22": "Persian New Year", - "2023-03-23": "Persian New Year", - "2023-03-24": "Persian New Year", + "2023-03-21": "Nowruz", + "2023-03-22": "Nowruz Holiday", + "2023-03-23": "Nowruz Holiday", + "2023-03-24": "Nowruz Holiday", "2023-04-01": "Islamic Republic Day", "2023-04-02": "Nature's Day", - "2023-04-12": "Martyrdom of Ali (estimated)", - "2023-04-21": "Eid al-Fitr (estimated)", - "2023-04-22": "Eid al-Fitr (estimated)", - "2023-05-15": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2023-06-04": "Death of Khomeini", - "2023-06-05": "Khordad National Uprising", - "2023-06-28": "Eid al-Adha (estimated)", - "2023-07-06": "Eid al-Ghadeer (estimated)", - "2023-07-27": "Tasua (estimated)", - "2023-07-28": "Ashura (estimated)", - "2023-09-05": "Arbaeen (estimated)", - "2023-09-13": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2023-09-15": "Martyrdom of Ali al-Rida (estimated)", - "2023-09-23": "Martyrdom of Hasan al-Askari (estimated)", - "2023-10-02": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2023-12-16": "Martyrdom of Fatima (estimated)", - "2024-01-25": "Birthday of Ali (estimated)", - "2024-02-08": "Isra' and Mi'raj (estimated)", + "2023-04-12": "Martyrdom of Imam Ali", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr Holiday", + "2023-05-16": "Martyrdom of Imam Ja'far al-Sadiq", + "2023-06-04": "Death of Imam Khomeini", + "2023-06-05": "15 Khordad Uprising", + "2023-06-29": "Eid al-Adha", + "2023-07-07": "Eid al-Ghadeer", + "2023-07-27": "Tasua", + "2023-07-28": "Ashura", + "2023-09-06": "Arbaeen", + "2023-09-14": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2023-09-16": "Martyrdom of Ali al-Rida", + "2023-09-24": "Martyrdom of Hasan al-Askari", + "2023-10-03": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2023-12-17": "Martyrdom of Fatima", + "2024-01-25": "Birthday of Imam Ali", + "2024-02-08": "Isra' and Mi'raj", "2024-02-11": "Islamic Revolution Day", - "2024-02-25": "Birthday of Mahdi (estimated)", + "2024-02-25": "Birthday of Mahdi", "2024-03-19": "Iranian Oil Industry Nationalization Day", - "2024-03-20": "Persian New Year", - "2024-03-21": "Persian New Year", - "2024-03-22": "Persian New Year", - "2024-03-23": "Persian New Year", - "2024-03-31": "Islamic Republic Day; Martyrdom of Ali (estimated)", - "2024-04-01": "Nature's Day", - "2024-04-10": "Eid al-Fitr (estimated)", - "2024-04-11": "Eid al-Fitr (estimated)", - "2024-05-04": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2024-06-03": "Death of Khomeini", - "2024-06-04": "Khordad National Uprising", - "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-24": "Eid al-Ghadeer (estimated)", - "2024-07-15": "Tasua (estimated)", - "2024-07-16": "Ashura (estimated)", - "2024-08-24": "Arbaeen (estimated)", - "2024-09-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2024-09-03": "Martyrdom of Ali al-Rida (estimated)", - "2024-09-11": "Martyrdom of Hasan al-Askari (estimated)", - "2024-09-20": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2024-12-04": "Martyrdom of Fatima (estimated)", - "2025-01-13": "Birthday of Ali (estimated)", - "2025-01-27": "Isra' and Mi'raj (estimated)", + "2024-03-20": "Nowruz", + "2024-03-21": "Nowruz Holiday", + "2024-03-22": "Nowruz Holiday", + "2024-03-23": "Nowruz Holiday", + "2024-03-31": "Islamic Republic Day", + "2024-04-01": "Martyrdom of Imam Ali; Nature's Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr Holiday", + "2024-05-04": "Martyrdom of Imam Ja'far al-Sadiq", + "2024-06-03": "Death of Imam Khomeini", + "2024-06-04": "15 Khordad Uprising", + "2024-06-17": "Eid al-Adha", + "2024-06-25": "Eid al-Ghadeer", + "2024-07-15": "Tasua", + "2024-07-16": "Ashura", + "2024-08-25": "Arbaeen", + "2024-09-02": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2024-09-04": "Martyrdom of Ali al-Rida", + "2024-09-12": "Martyrdom of Hasan al-Askari", + "2024-09-21": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2024-12-05": "Martyrdom of Fatima", + "2025-01-14": "Birthday of Imam Ali", + "2025-01-28": "Isra' and Mi'raj", "2025-02-10": "Islamic Revolution Day", - "2025-02-14": "Birthday of Mahdi (estimated)", + "2025-02-14": "Birthday of Mahdi", "2025-03-19": "Iranian Oil Industry Nationalization Day", - "2025-03-21": "Martyrdom of Ali (estimated); Persian New Year", - "2025-03-22": "Persian New Year", - "2025-03-23": "Persian New Year", - "2025-03-24": "Persian New Year", - "2025-03-30": "Eid al-Fitr (estimated)", - "2025-03-31": "Eid al-Fitr (estimated)", - "2025-04-01": "Islamic Republic Day", + "2025-03-20": "Last Day of Year", + "2025-03-21": "Nowruz", + "2025-03-22": "Martyrdom of Imam Ali; Nowruz Holiday", + "2025-03-23": "Nowruz Holiday", + "2025-03-24": "Nowruz Holiday", + "2025-03-31": "Eid al-Fitr", + "2025-04-01": "Eid al-Fitr Holiday; Islamic Republic Day", "2025-04-02": "Nature's Day", - "2025-04-23": "Martyrdom of Ja'far al-Sadiq (estimated)", - "2025-06-04": "Death of Khomeini", - "2025-06-05": "Khordad National Uprising", - "2025-06-06": "Eid al-Adha (estimated)", - "2025-06-14": "Eid al-Ghadeer (estimated)", - "2025-07-04": "Tasua (estimated)", - "2025-07-05": "Ashura (estimated)", - "2025-08-14": "Arbaeen (estimated)", - "2025-08-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", - "2025-08-23": "Martyrdom of Ali al-Rida (estimated)", - "2025-08-31": "Martyrdom of Hasan al-Askari (estimated)", - "2025-09-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2025-11-24": "Martyrdom of Fatima (estimated)", - "2026-01-02": "Birthday of Ali (estimated)", + "2025-04-24": "Martyrdom of Imam Ja'far al-Sadiq", + "2025-06-04": "Death of Imam Khomeini", + "2025-06-05": "15 Khordad Uprising", + "2025-06-06": "Eid al-Adha", + "2025-06-14": "Eid al-Ghadeer", + "2025-07-05": "Tasua", + "2025-07-06": "Ashura", + "2025-08-14": "Arbaeen", + "2025-08-22": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali", + "2025-08-24": "Martyrdom of Ali al-Rida", + "2025-09-01": "Martyrdom of Hasan al-Askari", + "2025-09-10": "Birthday of Muhammad and Imam Ja'far al-Sadiq", + "2025-11-24": "Martyrdom of Fatima", + "2026-01-02": "Birthday of Imam Ali (estimated)", "2026-01-16": "Isra' and Mi'raj (estimated)", "2026-02-03": "Birthday of Mahdi (estimated)", "2026-02-11": "Islamic Revolution Day", - "2026-03-10": "Martyrdom of Ali (estimated)", + "2026-03-10": "Martyrdom of Imam Ali (estimated)", "2026-03-20": "Eid al-Fitr (estimated); Iranian Oil Industry Nationalization Day", - "2026-03-21": "Eid al-Fitr (estimated); Persian New Year", - "2026-03-22": "Persian New Year", - "2026-03-23": "Persian New Year", - "2026-03-24": "Persian New Year", + "2026-03-21": "Eid al-Fitr Holiday (estimated); Nowruz", + "2026-03-22": "Nowruz Holiday", + "2026-03-23": "Nowruz Holiday", + "2026-03-24": "Nowruz Holiday", "2026-04-01": "Islamic Republic Day", "2026-04-02": "Nature's Day", - "2026-04-13": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2026-04-13": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2026-05-27": "Eid al-Adha (estimated)", - "2026-06-04": "Death of Khomeini; Eid al-Ghadeer (estimated)", - "2026-06-05": "Khordad National Uprising", + "2026-06-04": "Death of Imam Khomeini; Eid al-Ghadeer (estimated)", + "2026-06-05": "15 Khordad Uprising", "2026-06-24": "Tasua (estimated)", "2026-06-25": "Ashura (estimated)", "2026-08-03": "Arbaeen (estimated)", - "2026-08-11": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2026-08-11": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2026-08-13": "Martyrdom of Ali al-Rida (estimated)", "2026-08-21": "Martyrdom of Hasan al-Askari (estimated)", - "2026-08-30": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2026-08-30": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2026-11-13": "Martyrdom of Fatima (estimated)", - "2026-12-22": "Birthday of Ali (estimated)", + "2026-12-22": "Birthday of Imam Ali (estimated)", "2027-01-05": "Isra' and Mi'raj (estimated)", "2027-01-23": "Birthday of Mahdi (estimated)", "2027-02-11": "Islamic Revolution Day", - "2027-02-28": "Martyrdom of Ali (estimated)", + "2027-02-28": "Martyrdom of Imam Ali (estimated)", "2027-03-09": "Eid al-Fitr (estimated)", - "2027-03-10": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", "2027-03-20": "Iranian Oil Industry Nationalization Day", - "2027-03-21": "Persian New Year", - "2027-03-22": "Persian New Year", - "2027-03-23": "Persian New Year", - "2027-03-24": "Persian New Year", + "2027-03-21": "Nowruz", + "2027-03-22": "Nowruz Holiday", + "2027-03-23": "Nowruz Holiday", + "2027-03-24": "Nowruz Holiday", "2027-04-01": "Islamic Republic Day", - "2027-04-02": "Martyrdom of Ja'far al-Sadiq (estimated); Nature's Day", + "2027-04-02": "Martyrdom of Imam Ja'far al-Sadiq (estimated); Nature's Day", "2027-05-16": "Eid al-Adha (estimated)", "2027-05-24": "Eid al-Ghadeer (estimated)", - "2027-06-04": "Death of Khomeini", - "2027-06-05": "Khordad National Uprising", + "2027-06-04": "Death of Imam Khomeini", + "2027-06-05": "15 Khordad Uprising", "2027-06-14": "Tasua (estimated)", "2027-06-15": "Ashura (estimated)", "2027-07-24": "Arbaeen (estimated)", - "2027-08-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2027-08-01": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2027-08-02": "Martyrdom of Ali al-Rida (estimated)", "2027-08-10": "Martyrdom of Hasan al-Askari (estimated)", - "2027-08-19": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2027-08-19": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2027-11-02": "Martyrdom of Fatima (estimated)", - "2027-12-11": "Birthday of Ali (estimated)", + "2027-12-11": "Birthday of Imam Ali (estimated)", "2027-12-25": "Isra' and Mi'raj (estimated)", "2028-01-12": "Birthday of Mahdi (estimated)", "2028-02-11": "Islamic Revolution Day", - "2028-02-17": "Martyrdom of Ali (estimated)", + "2028-02-17": "Martyrdom of Imam Ali (estimated)", "2028-02-26": "Eid al-Fitr (estimated)", - "2028-02-27": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", "2028-03-19": "Iranian Oil Industry Nationalization Day", - "2028-03-20": "Persian New Year", - "2028-03-21": "Martyrdom of Ja'far al-Sadiq (estimated); Persian New Year", - "2028-03-22": "Persian New Year", - "2028-03-23": "Persian New Year", + "2028-03-20": "Nowruz", + "2028-03-21": "Martyrdom of Imam Ja'far al-Sadiq (estimated); Nowruz Holiday", + "2028-03-22": "Nowruz Holiday", + "2028-03-23": "Nowruz Holiday", "2028-03-31": "Islamic Republic Day", "2028-04-01": "Nature's Day", "2028-05-05": "Eid al-Adha (estimated)", "2028-05-13": "Eid al-Ghadeer (estimated)", "2028-06-02": "Tasua (estimated)", - "2028-06-03": "Ashura (estimated); Death of Khomeini", - "2028-06-04": "Khordad National Uprising", + "2028-06-03": "Ashura (estimated); Death of Imam Khomeini", + "2028-06-04": "15 Khordad Uprising", "2028-07-13": "Arbaeen (estimated)", - "2028-07-21": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2028-07-21": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2028-07-22": "Martyrdom of Ali al-Rida (estimated)", "2028-07-30": "Martyrdom of Hasan al-Askari (estimated)", - "2028-08-08": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2028-08-08": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2028-10-21": "Martyrdom of Fatima (estimated)", - "2028-11-30": "Birthday of Ali (estimated)", + "2028-11-30": "Birthday of Imam Ali (estimated)", "2028-12-14": "Isra' and Mi'raj (estimated)", "2028-12-31": "Birthday of Mahdi (estimated)", - "2029-02-05": "Martyrdom of Ali (estimated)", + "2029-02-05": "Martyrdom of Imam Ali (estimated)", "2029-02-10": "Islamic Revolution Day", "2029-02-14": "Eid al-Fitr (estimated)", - "2029-02-15": "Eid al-Fitr (estimated)", - "2029-03-10": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-03-10": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2029-03-19": "Iranian Oil Industry Nationalization Day", - "2029-03-20": "Persian New Year", - "2029-03-21": "Persian New Year", - "2029-03-22": "Persian New Year", - "2029-03-23": "Persian New Year", + "2029-03-20": "Nowruz", + "2029-03-21": "Nowruz Holiday", + "2029-03-22": "Nowruz Holiday", + "2029-03-23": "Nowruz Holiday", "2029-03-31": "Islamic Republic Day", "2029-04-01": "Nature's Day", "2029-04-24": "Eid al-Adha (estimated)", "2029-05-02": "Eid al-Ghadeer (estimated)", "2029-05-22": "Tasua (estimated)", "2029-05-23": "Ashura (estimated)", - "2029-06-03": "Death of Khomeini", - "2029-06-04": "Khordad National Uprising", + "2029-06-03": "Death of Imam Khomeini", + "2029-06-04": "15 Khordad Uprising", "2029-07-02": "Arbaeen (estimated)", - "2029-07-10": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2029-07-10": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2029-07-12": "Martyrdom of Ali al-Rida (estimated)", "2029-07-20": "Martyrdom of Hasan al-Askari (estimated)", - "2029-07-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2029-07-29": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2029-10-11": "Martyrdom of Fatima (estimated)", - "2029-11-19": "Birthday of Ali (estimated)", + "2029-11-19": "Birthday of Imam Ali (estimated)", "2029-12-03": "Isra' and Mi'raj (estimated)", "2029-12-21": "Birthday of Mahdi (estimated)", - "2030-01-25": "Martyrdom of Ali (estimated)", + "2030-01-25": "Martyrdom of Imam Ali (estimated)", "2030-02-04": "Eid al-Fitr (estimated)", - "2030-02-05": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", "2030-02-10": "Islamic Revolution Day", - "2030-02-28": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2030-02-28": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2030-03-19": "Iranian Oil Industry Nationalization Day", - "2030-03-21": "Persian New Year", - "2030-03-22": "Persian New Year", - "2030-03-23": "Persian New Year", - "2030-03-24": "Persian New Year", + "2030-03-20": "Last Day of Year", + "2030-03-21": "Nowruz", + "2030-03-22": "Nowruz Holiday", + "2030-03-23": "Nowruz Holiday", + "2030-03-24": "Nowruz Holiday", "2030-04-01": "Islamic Republic Day", "2030-04-02": "Nature's Day", "2030-04-13": "Eid al-Adha (estimated)", "2030-04-21": "Eid al-Ghadeer (estimated)", "2030-05-11": "Tasua (estimated)", "2030-05-12": "Ashura (estimated)", - "2030-06-04": "Death of Khomeini", - "2030-06-05": "Khordad National Uprising", + "2030-06-04": "Death of Imam Khomeini", + "2030-06-05": "15 Khordad Uprising", "2030-06-21": "Arbaeen (estimated)", - "2030-06-29": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2030-06-29": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2030-07-01": "Martyrdom of Ali al-Rida (estimated)", "2030-07-09": "Martyrdom of Hasan al-Askari (estimated)", - "2030-07-18": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2030-07-18": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2030-10-01": "Martyrdom of Fatima (estimated)", - "2030-11-09": "Birthday of Ali (estimated)", + "2030-11-09": "Birthday of Imam Ali (estimated)", "2030-11-23": "Isra' and Mi'raj (estimated)", "2030-12-10": "Birthday of Mahdi (estimated)", - "2031-01-15": "Martyrdom of Ali (estimated)", + "2031-01-15": "Martyrdom of Imam Ali (estimated)", "2031-01-24": "Eid al-Fitr (estimated)", - "2031-01-25": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated)", "2031-02-11": "Islamic Revolution Day", - "2031-02-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2031-02-17": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2031-03-20": "Iranian Oil Industry Nationalization Day", - "2031-03-21": "Persian New Year", - "2031-03-22": "Persian New Year", - "2031-03-23": "Persian New Year", - "2031-03-24": "Persian New Year", + "2031-03-21": "Nowruz", + "2031-03-22": "Nowruz Holiday", + "2031-03-23": "Nowruz Holiday", + "2031-03-24": "Nowruz Holiday", "2031-04-01": "Islamic Republic Day", "2031-04-02": "Eid al-Adha (estimated); Nature's Day", "2031-04-10": "Eid al-Ghadeer (estimated)", "2031-05-01": "Tasua (estimated)", "2031-05-02": "Ashura (estimated)", - "2031-06-04": "Death of Khomeini", - "2031-06-05": "Khordad National Uprising", + "2031-06-04": "Death of Imam Khomeini", + "2031-06-05": "15 Khordad Uprising", "2031-06-10": "Arbaeen (estimated)", - "2031-06-18": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2031-06-18": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2031-06-20": "Martyrdom of Ali al-Rida (estimated)", "2031-06-28": "Martyrdom of Hasan al-Askari (estimated)", - "2031-07-07": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2031-07-07": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2031-09-20": "Martyrdom of Fatima (estimated)", - "2031-10-29": "Birthday of Ali (estimated)", + "2031-10-29": "Birthday of Imam Ali (estimated)", "2031-11-12": "Isra' and Mi'raj (estimated)", "2031-11-30": "Birthday of Mahdi (estimated)", - "2032-01-04": "Martyrdom of Ali (estimated)", + "2032-01-04": "Martyrdom of Imam Ali (estimated)", "2032-01-14": "Eid al-Fitr (estimated)", - "2032-01-15": "Eid al-Fitr (estimated)", - "2032-02-07": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-02-07": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2032-02-11": "Islamic Revolution Day", "2032-03-19": "Iranian Oil Industry Nationalization Day", - "2032-03-20": "Persian New Year", - "2032-03-21": "Persian New Year", - "2032-03-22": "Eid al-Adha (estimated); Persian New Year", - "2032-03-23": "Persian New Year", + "2032-03-20": "Nowruz", + "2032-03-21": "Nowruz Holiday", + "2032-03-22": "Eid al-Adha (estimated); Nowruz Holiday", + "2032-03-23": "Nowruz Holiday", "2032-03-30": "Eid al-Ghadeer (estimated)", "2032-03-31": "Islamic Republic Day", "2032-04-01": "Nature's Day", "2032-04-19": "Tasua (estimated)", "2032-04-20": "Ashura (estimated)", "2032-05-29": "Arbaeen (estimated)", - "2032-06-03": "Death of Khomeini", - "2032-06-04": "Khordad National Uprising", - "2032-06-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2032-06-03": "Death of Imam Khomeini", + "2032-06-04": "15 Khordad Uprising", + "2032-06-06": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2032-06-08": "Martyrdom of Ali al-Rida (estimated)", "2032-06-16": "Martyrdom of Hasan al-Askari (estimated)", - "2032-06-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2032-06-25": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2032-09-08": "Martyrdom of Fatima (estimated)", - "2032-10-18": "Birthday of Ali (estimated)", + "2032-10-18": "Birthday of Imam Ali (estimated)", "2032-11-01": "Isra' and Mi'raj (estimated)", "2032-11-18": "Birthday of Mahdi (estimated)", - "2032-12-24": "Martyrdom of Ali (estimated)", + "2032-12-24": "Martyrdom of Imam Ali (estimated)", "2033-01-02": "Eid al-Fitr (estimated)", - "2033-01-03": "Eid al-Fitr (estimated)", - "2033-01-26": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-01-26": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2033-02-10": "Islamic Revolution Day", "2033-03-11": "Eid al-Adha (estimated)", "2033-03-19": "Eid al-Ghadeer (estimated); Iranian Oil Industry Nationalization Day", - "2033-03-20": "Persian New Year", - "2033-03-21": "Persian New Year", - "2033-03-22": "Persian New Year", - "2033-03-23": "Persian New Year", + "2033-03-20": "Nowruz", + "2033-03-21": "Nowruz Holiday", + "2033-03-22": "Nowruz Holiday", + "2033-03-23": "Nowruz Holiday", "2033-03-31": "Islamic Republic Day", "2033-04-01": "Nature's Day", "2033-04-09": "Tasua (estimated)", "2033-04-10": "Ashura (estimated)", "2033-05-19": "Arbaeen (estimated)", - "2033-05-27": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2033-05-27": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2033-05-28": "Martyrdom of Ali al-Rida (estimated)", - "2033-06-03": "Death of Khomeini", - "2033-06-04": "Khordad National Uprising", + "2033-06-03": "Death of Imam Khomeini", + "2033-06-04": "15 Khordad Uprising", "2033-06-05": "Martyrdom of Hasan al-Askari (estimated)", - "2033-06-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2033-06-14": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2033-08-28": "Martyrdom of Fatima (estimated)", - "2033-10-07": "Birthday of Ali (estimated)", + "2033-10-07": "Birthday of Imam Ali (estimated)", "2033-10-21": "Isra' and Mi'raj (estimated)", "2033-11-07": "Birthday of Mahdi (estimated)", - "2033-12-13": "Martyrdom of Ali (estimated)", + "2033-12-13": "Martyrdom of Imam Ali (estimated)", "2033-12-23": "Eid al-Fitr (estimated)", - "2033-12-24": "Eid al-Fitr (estimated)", - "2034-01-16": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", + "2034-01-16": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2034-02-10": "Islamic Revolution Day", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-09": "Eid al-Ghadeer (estimated)", "2034-03-19": "Iranian Oil Industry Nationalization Day", - "2034-03-21": "Persian New Year", - "2034-03-22": "Persian New Year", - "2034-03-23": "Persian New Year", - "2034-03-24": "Persian New Year", + "2034-03-20": "Last Day of Year", + "2034-03-21": "Nowruz", + "2034-03-22": "Nowruz Holiday", + "2034-03-23": "Nowruz Holiday", + "2034-03-24": "Nowruz Holiday", "2034-03-29": "Tasua (estimated)", "2034-03-30": "Ashura (estimated)", "2034-04-01": "Islamic Republic Day", "2034-04-02": "Nature's Day", "2034-05-09": "Arbaeen (estimated)", - "2034-05-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2034-05-17": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2034-05-18": "Martyrdom of Ali al-Rida (estimated)", "2034-05-26": "Martyrdom of Hasan al-Askari (estimated)", - "2034-06-04": "Birthday of Muhammad and Ja'far al-Sadiq (estimated); Death of Khomeini", - "2034-06-05": "Khordad National Uprising", + "2034-06-04": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated); Death of Imam Khomeini", + "2034-06-05": "15 Khordad Uprising", "2034-08-17": "Martyrdom of Fatima (estimated)", - "2034-09-26": "Birthday of Ali (estimated)", + "2034-09-26": "Birthday of Imam Ali (estimated)", "2034-10-10": "Isra' and Mi'raj (estimated)", "2034-10-27": "Birthday of Mahdi (estimated)", - "2034-12-02": "Martyrdom of Ali (estimated)", + "2034-12-02": "Martyrdom of Imam Ali (estimated)", "2034-12-12": "Eid al-Fitr (estimated)", - "2034-12-13": "Eid al-Fitr (estimated)", - "2035-01-05": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", + "2035-01-05": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2035-02-11": "Islamic Revolution Day", "2035-02-18": "Eid al-Adha (estimated)", "2035-02-26": "Eid al-Ghadeer (estimated)", "2035-03-19": "Tasua (estimated)", "2035-03-20": "Ashura (estimated); Iranian Oil Industry Nationalization Day", - "2035-03-21": "Persian New Year", - "2035-03-22": "Persian New Year", - "2035-03-23": "Persian New Year", - "2035-03-24": "Persian New Year", + "2035-03-21": "Nowruz", + "2035-03-22": "Nowruz Holiday", + "2035-03-23": "Nowruz Holiday", + "2035-03-24": "Nowruz Holiday", "2035-04-01": "Islamic Republic Day", "2035-04-02": "Nature's Day", "2035-04-28": "Arbaeen (estimated)", - "2035-05-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2035-05-06": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2035-05-08": "Martyrdom of Ali al-Rida (estimated)", "2035-05-16": "Martyrdom of Hasan al-Askari (estimated)", - "2035-05-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2035-06-04": "Death of Khomeini", - "2035-06-05": "Khordad National Uprising", + "2035-05-25": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", + "2035-06-04": "Death of Imam Khomeini", + "2035-06-05": "15 Khordad Uprising", "2035-08-07": "Martyrdom of Fatima (estimated)", - "2035-09-15": "Birthday of Ali (estimated)", + "2035-09-15": "Birthday of Imam Ali (estimated)", "2035-09-29": "Isra' and Mi'raj (estimated)", "2035-10-16": "Birthday of Mahdi (estimated)", - "2035-11-21": "Martyrdom of Ali (estimated)", + "2035-11-21": "Martyrdom of Imam Ali (estimated)", "2035-12-01": "Eid al-Fitr (estimated)", - "2035-12-02": "Eid al-Fitr (estimated)", - "2035-12-25": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated)", + "2035-12-25": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2036-02-07": "Eid al-Adha (estimated)", "2036-02-11": "Islamic Revolution Day", "2036-02-15": "Eid al-Ghadeer (estimated)", "2036-03-07": "Tasua (estimated)", "2036-03-08": "Ashura (estimated)", "2036-03-19": "Iranian Oil Industry Nationalization Day", - "2036-03-20": "Persian New Year", - "2036-03-21": "Persian New Year", - "2036-03-22": "Persian New Year", - "2036-03-23": "Persian New Year", + "2036-03-20": "Nowruz", + "2036-03-21": "Nowruz Holiday", + "2036-03-22": "Nowruz Holiday", + "2036-03-23": "Nowruz Holiday", "2036-03-31": "Islamic Republic Day", "2036-04-01": "Nature's Day", "2036-04-17": "Arbaeen (estimated)", - "2036-04-25": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2036-04-25": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2036-04-26": "Martyrdom of Ali al-Rida (estimated)", "2036-05-04": "Martyrdom of Hasan al-Askari (estimated)", - "2036-05-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2036-06-03": "Death of Khomeini", - "2036-06-04": "Khordad National Uprising", + "2036-05-13": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", + "2036-06-03": "Death of Imam Khomeini", + "2036-06-04": "15 Khordad Uprising", "2036-07-26": "Martyrdom of Fatima (estimated)", - "2036-09-04": "Birthday of Ali (estimated)", + "2036-09-04": "Birthday of Imam Ali (estimated)", "2036-09-18": "Isra' and Mi'raj (estimated)", "2036-10-05": "Birthday of Mahdi (estimated)", - "2036-11-09": "Martyrdom of Ali (estimated)", + "2036-11-09": "Martyrdom of Imam Ali (estimated)", "2036-11-19": "Eid al-Fitr (estimated)", - "2036-11-20": "Eid al-Fitr (estimated)", - "2036-12-13": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", + "2036-12-13": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2037-01-26": "Eid al-Adha (estimated)", "2037-02-03": "Eid al-Ghadeer (estimated)", "2037-02-10": "Islamic Revolution Day", "2037-02-24": "Tasua (estimated)", "2037-02-25": "Ashura (estimated)", "2037-03-19": "Iranian Oil Industry Nationalization Day", - "2037-03-20": "Persian New Year", - "2037-03-21": "Persian New Year", - "2037-03-22": "Persian New Year", - "2037-03-23": "Persian New Year", + "2037-03-20": "Nowruz", + "2037-03-21": "Nowruz Holiday", + "2037-03-22": "Nowruz Holiday", + "2037-03-23": "Nowruz Holiday", "2037-03-31": "Islamic Republic Day", "2037-04-01": "Nature's Day", "2037-04-06": "Arbaeen (estimated)", - "2037-04-14": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2037-04-14": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2037-04-16": "Martyrdom of Ali al-Rida (estimated)", "2037-04-24": "Martyrdom of Hasan al-Askari (estimated)", - "2037-05-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2037-06-03": "Death of Khomeini", - "2037-06-04": "Khordad National Uprising", + "2037-05-03": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", + "2037-06-03": "Death of Imam Khomeini", + "2037-06-04": "15 Khordad Uprising", "2037-07-16": "Martyrdom of Fatima (estimated)", - "2037-08-24": "Birthday of Ali (estimated)", + "2037-08-24": "Birthday of Imam Ali (estimated)", "2037-09-07": "Isra' and Mi'raj (estimated)", "2037-09-25": "Birthday of Mahdi (estimated)", - "2037-10-30": "Martyrdom of Ali (estimated)", + "2037-10-30": "Martyrdom of Imam Ali (estimated)", "2037-11-08": "Eid al-Fitr (estimated)", - "2037-11-09": "Eid al-Fitr (estimated)", - "2037-12-02": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", + "2037-12-02": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2038-01-16": "Eid al-Adha (estimated)", "2038-01-24": "Eid al-Ghadeer (estimated)", "2038-02-10": "Islamic Revolution Day", "2038-02-13": "Tasua (estimated)", "2038-02-14": "Ashura (estimated)", "2038-03-19": "Iranian Oil Industry Nationalization Day", - "2038-03-21": "Persian New Year", - "2038-03-22": "Persian New Year", - "2038-03-23": "Persian New Year", - "2038-03-24": "Persian New Year", + "2038-03-20": "Last Day of Year", + "2038-03-21": "Nowruz", + "2038-03-22": "Nowruz Holiday", + "2038-03-23": "Nowruz Holiday", + "2038-03-24": "Nowruz Holiday", "2038-03-26": "Arbaeen (estimated)", "2038-04-01": "Islamic Republic Day", "2038-04-02": "Nature's Day", - "2038-04-03": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2038-04-03": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2038-04-05": "Martyrdom of Ali al-Rida (estimated)", "2038-04-13": "Martyrdom of Hasan al-Askari (estimated)", - "2038-04-22": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2038-06-04": "Death of Khomeini", - "2038-06-05": "Khordad National Uprising", + "2038-04-22": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", + "2038-06-04": "Death of Imam Khomeini", + "2038-06-05": "15 Khordad Uprising", "2038-07-05": "Martyrdom of Fatima (estimated)", - "2038-08-14": "Birthday of Ali (estimated)", + "2038-08-14": "Birthday of Imam Ali (estimated)", "2038-08-28": "Isra' and Mi'raj (estimated)", "2038-09-14": "Birthday of Mahdi (estimated)", - "2038-10-20": "Martyrdom of Ali (estimated)", + "2038-10-20": "Martyrdom of Imam Ali (estimated)", "2038-10-29": "Eid al-Fitr (estimated)", - "2038-10-30": "Eid al-Fitr (estimated)", - "2038-11-22": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", + "2038-11-22": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2039-01-05": "Eid al-Adha (estimated)", "2039-01-13": "Eid al-Ghadeer (estimated)", "2039-02-03": "Tasua (estimated)", @@ -1597,326 +1615,329 @@ "2039-02-11": "Islamic Revolution Day", "2039-03-15": "Arbaeen (estimated)", "2039-03-20": "Iranian Oil Industry Nationalization Day", - "2039-03-21": "Persian New Year", - "2039-03-22": "Persian New Year", - "2039-03-23": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated); Persian New Year", - "2039-03-24": "Persian New Year", + "2039-03-21": "Nowruz", + "2039-03-22": "Nowruz Holiday", + "2039-03-23": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated); Nowruz Holiday", + "2039-03-24": "Nowruz Holiday", "2039-03-25": "Martyrdom of Ali al-Rida (estimated)", "2039-04-01": "Islamic Republic Day", "2039-04-02": "Martyrdom of Hasan al-Askari (estimated); Nature's Day", - "2039-04-11": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", - "2039-06-04": "Death of Khomeini", - "2039-06-05": "Khordad National Uprising", + "2039-04-11": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", + "2039-06-04": "Death of Imam Khomeini", + "2039-06-05": "15 Khordad Uprising", "2039-06-25": "Martyrdom of Fatima (estimated)", - "2039-08-03": "Birthday of Ali (estimated)", + "2039-08-03": "Birthday of Imam Ali (estimated)", "2039-08-17": "Isra' and Mi'raj (estimated)", "2039-09-04": "Birthday of Mahdi (estimated)", - "2039-10-09": "Martyrdom of Ali (estimated)", + "2039-10-09": "Martyrdom of Imam Ali (estimated)", "2039-10-19": "Eid al-Fitr (estimated)", - "2039-10-20": "Eid al-Fitr (estimated)", - "2039-11-12": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-11-12": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2039-12-26": "Eid al-Adha (estimated)", "2040-01-03": "Eid al-Ghadeer (estimated)", "2040-01-23": "Tasua (estimated)", "2040-01-24": "Ashura (estimated)", "2040-02-11": "Islamic Revolution Day", "2040-03-04": "Arbaeen (estimated)", - "2040-03-12": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2040-03-12": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2040-03-13": "Martyrdom of Ali al-Rida (estimated)", "2040-03-19": "Iranian Oil Industry Nationalization Day", - "2040-03-20": "Persian New Year", - "2040-03-21": "Martyrdom of Hasan al-Askari (estimated); Persian New Year", - "2040-03-22": "Persian New Year", - "2040-03-23": "Persian New Year", - "2040-03-30": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2040-03-20": "Nowruz", + "2040-03-21": "Martyrdom of Hasan al-Askari (estimated); Nowruz Holiday", + "2040-03-22": "Nowruz Holiday", + "2040-03-23": "Nowruz Holiday", + "2040-03-30": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2040-03-31": "Islamic Republic Day", "2040-04-01": "Nature's Day", - "2040-06-03": "Death of Khomeini", - "2040-06-04": "Khordad National Uprising", + "2040-06-03": "Death of Imam Khomeini", + "2040-06-04": "15 Khordad Uprising", "2040-06-13": "Martyrdom of Fatima (estimated)", - "2040-07-22": "Birthday of Ali (estimated)", + "2040-07-22": "Birthday of Imam Ali (estimated)", "2040-08-05": "Isra' and Mi'raj (estimated)", "2040-08-23": "Birthday of Mahdi (estimated)", - "2040-09-27": "Martyrdom of Ali (estimated)", + "2040-09-27": "Martyrdom of Imam Ali (estimated)", "2040-10-07": "Eid al-Fitr (estimated)", - "2040-10-08": "Eid al-Fitr (estimated)", - "2040-10-31": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-10-31": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2040-12-14": "Eid al-Adha (estimated)", "2040-12-22": "Eid al-Ghadeer (estimated)", "2041-01-12": "Tasua (estimated)", "2041-01-13": "Ashura (estimated)", "2041-02-10": "Islamic Revolution Day", "2041-02-21": "Arbaeen (estimated)", - "2041-03-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2041-03-01": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2041-03-03": "Martyrdom of Ali al-Rida (estimated)", "2041-03-11": "Martyrdom of Hasan al-Askari (estimated)", "2041-03-19": "Iranian Oil Industry Nationalization Day", - "2041-03-20": "Birthday of Muhammad and Ja'far al-Sadiq (estimated); Persian New Year", - "2041-03-21": "Persian New Year", - "2041-03-22": "Persian New Year", - "2041-03-23": "Persian New Year", + "2041-03-20": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated); Nowruz", + "2041-03-21": "Nowruz Holiday", + "2041-03-22": "Nowruz Holiday", + "2041-03-23": "Nowruz Holiday", "2041-03-31": "Islamic Republic Day", "2041-04-01": "Nature's Day", "2041-06-02": "Martyrdom of Fatima (estimated)", - "2041-06-03": "Death of Khomeini", - "2041-06-04": "Khordad National Uprising", - "2041-07-11": "Birthday of Ali (estimated)", + "2041-06-03": "Death of Imam Khomeini", + "2041-06-04": "15 Khordad Uprising", + "2041-07-11": "Birthday of Imam Ali (estimated)", "2041-07-25": "Isra' and Mi'raj (estimated)", "2041-08-12": "Birthday of Mahdi (estimated)", - "2041-09-17": "Martyrdom of Ali (estimated)", + "2041-09-17": "Martyrdom of Imam Ali (estimated)", "2041-09-26": "Eid al-Fitr (estimated)", - "2041-09-27": "Eid al-Fitr (estimated)", - "2041-10-20": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-10-20": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2041-12-04": "Eid al-Adha (estimated)", "2041-12-12": "Eid al-Ghadeer (estimated)", "2042-01-01": "Tasua (estimated)", "2042-01-02": "Ashura (estimated)", "2042-02-10": "Islamic Revolution Day", "2042-02-11": "Arbaeen (estimated)", - "2042-02-19": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2042-02-19": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2042-02-20": "Martyrdom of Ali al-Rida (estimated)", "2042-02-28": "Martyrdom of Hasan al-Askari (estimated)", - "2042-03-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2042-03-09": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2042-03-19": "Iranian Oil Industry Nationalization Day", - "2042-03-21": "Persian New Year", - "2042-03-22": "Persian New Year", - "2042-03-23": "Persian New Year", - "2042-03-24": "Persian New Year", + "2042-03-20": "Last Day of Year", + "2042-03-21": "Nowruz", + "2042-03-22": "Nowruz Holiday", + "2042-03-23": "Nowruz Holiday", + "2042-03-24": "Nowruz Holiday", "2042-04-01": "Islamic Republic Day", "2042-04-02": "Nature's Day", "2042-05-22": "Martyrdom of Fatima (estimated)", - "2042-06-04": "Death of Khomeini", - "2042-06-05": "Khordad National Uprising", - "2042-07-01": "Birthday of Ali (estimated)", + "2042-06-04": "Death of Imam Khomeini", + "2042-06-05": "15 Khordad Uprising", + "2042-07-01": "Birthday of Imam Ali (estimated)", "2042-07-15": "Isra' and Mi'raj (estimated)", "2042-08-01": "Birthday of Mahdi (estimated)", - "2042-09-06": "Martyrdom of Ali (estimated)", + "2042-09-06": "Martyrdom of Imam Ali (estimated)", "2042-09-15": "Eid al-Fitr (estimated)", - "2042-09-16": "Eid al-Fitr (estimated)", - "2042-10-09": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-10-09": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2042-11-23": "Eid al-Adha (estimated)", "2042-12-01": "Eid al-Ghadeer (estimated)", "2042-12-22": "Tasua (estimated)", "2042-12-23": "Ashura (estimated)", "2043-01-31": "Arbaeen (estimated)", - "2043-02-08": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2043-02-08": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2043-02-10": "Martyrdom of Ali al-Rida (estimated)", "2043-02-11": "Islamic Revolution Day", "2043-02-18": "Martyrdom of Hasan al-Askari (estimated)", - "2043-02-27": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2043-02-27": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2043-03-20": "Iranian Oil Industry Nationalization Day", - "2043-03-21": "Persian New Year", - "2043-03-22": "Persian New Year", - "2043-03-23": "Persian New Year", - "2043-03-24": "Persian New Year", + "2043-03-21": "Nowruz", + "2043-03-22": "Nowruz Holiday", + "2043-03-23": "Nowruz Holiday", + "2043-03-24": "Nowruz Holiday", "2043-04-01": "Islamic Republic Day", "2043-04-02": "Nature's Day", "2043-05-12": "Martyrdom of Fatima (estimated)", - "2043-06-04": "Death of Khomeini", - "2043-06-05": "Khordad National Uprising", - "2043-06-20": "Birthday of Ali (estimated)", + "2043-06-04": "Death of Imam Khomeini", + "2043-06-05": "15 Khordad Uprising", + "2043-06-20": "Birthday of Imam Ali (estimated)", "2043-07-04": "Isra' and Mi'raj (estimated)", "2043-07-22": "Birthday of Mahdi (estimated)", - "2043-08-26": "Martyrdom of Ali (estimated)", + "2043-08-26": "Martyrdom of Imam Ali (estimated)", "2043-09-04": "Eid al-Fitr (estimated)", - "2043-09-05": "Eid al-Fitr (estimated)", - "2043-09-28": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-09-28": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2043-11-12": "Eid al-Adha (estimated)", "2043-11-20": "Eid al-Ghadeer (estimated)", "2043-12-11": "Tasua (estimated)", "2043-12-12": "Ashura (estimated)", "2044-01-21": "Arbaeen (estimated)", - "2044-01-29": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2044-01-29": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2044-01-30": "Martyrdom of Ali al-Rida (estimated)", "2044-02-07": "Martyrdom of Hasan al-Askari (estimated)", "2044-02-11": "Islamic Revolution Day", - "2044-02-16": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2044-02-16": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2044-03-19": "Iranian Oil Industry Nationalization Day", - "2044-03-20": "Persian New Year", - "2044-03-21": "Persian New Year", - "2044-03-22": "Persian New Year", - "2044-03-23": "Persian New Year", + "2044-03-20": "Nowruz", + "2044-03-21": "Nowruz Holiday", + "2044-03-22": "Nowruz Holiday", + "2044-03-23": "Nowruz Holiday", "2044-03-31": "Islamic Republic Day", "2044-04-01": "Nature's Day", "2044-05-01": "Martyrdom of Fatima (estimated)", - "2044-06-03": "Death of Khomeini", - "2044-06-04": "Khordad National Uprising", - "2044-06-09": "Birthday of Ali (estimated)", + "2044-06-03": "Death of Imam Khomeini", + "2044-06-04": "15 Khordad Uprising", + "2044-06-09": "Birthday of Imam Ali (estimated)", "2044-06-23": "Isra' and Mi'raj (estimated)", "2044-07-10": "Birthday of Mahdi (estimated)", - "2044-08-15": "Martyrdom of Ali (estimated)", + "2044-08-15": "Martyrdom of Imam Ali (estimated)", "2044-08-24": "Eid al-Fitr (estimated)", - "2044-08-25": "Eid al-Fitr (estimated)", - "2044-09-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-09-17": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2044-10-31": "Eid al-Adha (estimated)", "2044-11-08": "Eid al-Ghadeer (estimated)", "2044-11-29": "Tasua (estimated)", "2044-11-30": "Ashura (estimated)", "2045-01-09": "Arbaeen (estimated)", - "2045-01-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2045-01-17": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2045-01-18": "Martyrdom of Ali al-Rida (estimated)", "2045-01-26": "Martyrdom of Hasan al-Askari (estimated)", - "2045-02-04": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2045-02-04": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2045-02-10": "Islamic Revolution Day", "2045-03-19": "Iranian Oil Industry Nationalization Day", - "2045-03-20": "Persian New Year", - "2045-03-21": "Persian New Year", - "2045-03-22": "Persian New Year", - "2045-03-23": "Persian New Year", + "2045-03-20": "Nowruz", + "2045-03-21": "Nowruz Holiday", + "2045-03-22": "Nowruz Holiday", + "2045-03-23": "Nowruz Holiday", "2045-03-31": "Islamic Republic Day", "2045-04-01": "Nature's Day", "2045-04-20": "Martyrdom of Fatima (estimated)", - "2045-05-30": "Birthday of Ali (estimated)", - "2045-06-03": "Death of Khomeini", - "2045-06-04": "Khordad National Uprising", + "2045-05-30": "Birthday of Imam Ali (estimated)", + "2045-06-03": "Death of Imam Khomeini", + "2045-06-04": "15 Khordad Uprising", "2045-06-13": "Isra' and Mi'raj (estimated)", "2045-06-30": "Birthday of Mahdi (estimated)", - "2045-08-04": "Martyrdom of Ali (estimated)", + "2045-08-04": "Martyrdom of Imam Ali (estimated)", "2045-08-14": "Eid al-Fitr (estimated)", - "2045-08-15": "Eid al-Fitr (estimated)", - "2045-09-07": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-09-07": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2045-10-21": "Eid al-Adha (estimated)", "2045-10-29": "Eid al-Ghadeer (estimated)", "2045-11-18": "Tasua (estimated)", "2045-11-19": "Ashura (estimated)", "2045-12-29": "Arbaeen (estimated)", - "2046-01-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2046-01-06": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2046-01-07": "Martyrdom of Ali al-Rida (estimated)", "2046-01-15": "Martyrdom of Hasan al-Askari (estimated)", - "2046-01-24": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2046-01-24": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2046-02-10": "Islamic Revolution Day", "2046-03-19": "Iranian Oil Industry Nationalization Day", - "2046-03-21": "Persian New Year", - "2046-03-22": "Persian New Year", - "2046-03-23": "Persian New Year", - "2046-03-24": "Persian New Year", + "2046-03-20": "Last Day of Year", + "2046-03-21": "Nowruz", + "2046-03-22": "Nowruz Holiday", + "2046-03-23": "Nowruz Holiday", + "2046-03-24": "Nowruz Holiday", "2046-04-01": "Islamic Republic Day", "2046-04-02": "Nature's Day", "2046-04-09": "Martyrdom of Fatima (estimated)", - "2046-05-19": "Birthday of Ali (estimated)", + "2046-05-19": "Birthday of Imam Ali (estimated)", "2046-06-02": "Isra' and Mi'raj (estimated)", - "2046-06-04": "Death of Khomeini", - "2046-06-05": "Khordad National Uprising", + "2046-06-04": "Death of Imam Khomeini", + "2046-06-05": "15 Khordad Uprising", "2046-06-19": "Birthday of Mahdi (estimated)", - "2046-07-25": "Martyrdom of Ali (estimated)", + "2046-07-25": "Martyrdom of Imam Ali (estimated)", "2046-08-03": "Eid al-Fitr (estimated)", - "2046-08-04": "Eid al-Fitr (estimated)", - "2046-08-27": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-08-27": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2046-10-10": "Eid al-Adha (estimated)", "2046-10-18": "Eid al-Ghadeer (estimated)", "2046-11-08": "Tasua (estimated)", "2046-11-09": "Ashura (estimated)", "2046-12-18": "Arbaeen (estimated)", - "2046-12-26": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2046-12-26": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2046-12-27": "Martyrdom of Ali al-Rida (estimated)", "2047-01-04": "Martyrdom of Hasan al-Askari (estimated)", - "2047-01-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2047-01-13": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2047-02-11": "Islamic Revolution Day", "2047-03-20": "Iranian Oil Industry Nationalization Day", - "2047-03-21": "Persian New Year", - "2047-03-22": "Persian New Year", - "2047-03-23": "Persian New Year", - "2047-03-24": "Persian New Year", + "2047-03-21": "Nowruz", + "2047-03-22": "Nowruz Holiday", + "2047-03-23": "Nowruz Holiday", + "2047-03-24": "Nowruz Holiday", "2047-03-29": "Martyrdom of Fatima (estimated)", "2047-04-01": "Islamic Republic Day", "2047-04-02": "Nature's Day", - "2047-05-08": "Birthday of Ali (estimated)", + "2047-05-08": "Birthday of Imam Ali (estimated)", "2047-05-22": "Isra' and Mi'raj (estimated)", - "2047-06-04": "Death of Khomeini", - "2047-06-05": "Khordad National Uprising", + "2047-06-04": "Death of Imam Khomeini", + "2047-06-05": "15 Khordad Uprising", "2047-06-09": "Birthday of Mahdi (estimated)", - "2047-07-14": "Martyrdom of Ali (estimated)", + "2047-07-14": "Martyrdom of Imam Ali (estimated)", "2047-07-24": "Eid al-Fitr (estimated)", - "2047-07-25": "Eid al-Fitr (estimated)", - "2047-08-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated)", + "2047-08-17": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2047-09-30": "Eid al-Adha (estimated)", "2047-10-08": "Eid al-Ghadeer (estimated)", "2047-10-28": "Tasua (estimated)", "2047-10-29": "Ashura (estimated)", "2047-12-08": "Arbaeen (estimated)", - "2047-12-16": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2047-12-16": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2047-12-17": "Martyrdom of Ali al-Rida (estimated)", "2047-12-25": "Martyrdom of Hasan al-Askari (estimated)", - "2048-01-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2048-01-03": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2048-02-11": "Islamic Revolution Day", "2048-03-18": "Martyrdom of Fatima (estimated)", "2048-03-19": "Iranian Oil Industry Nationalization Day", - "2048-03-20": "Persian New Year", - "2048-03-21": "Persian New Year", - "2048-03-22": "Persian New Year", - "2048-03-23": "Persian New Year", + "2048-03-20": "Nowruz", + "2048-03-21": "Nowruz Holiday", + "2048-03-22": "Nowruz Holiday", + "2048-03-23": "Nowruz Holiday", "2048-03-31": "Islamic Republic Day", "2048-04-01": "Nature's Day", - "2048-04-26": "Birthday of Ali (estimated)", + "2048-04-26": "Birthday of Imam Ali (estimated)", "2048-05-10": "Isra' and Mi'raj (estimated)", "2048-05-28": "Birthday of Mahdi (estimated)", - "2048-06-03": "Death of Khomeini", - "2048-06-04": "Khordad National Uprising", - "2048-07-02": "Martyrdom of Ali (estimated)", + "2048-06-03": "Death of Imam Khomeini", + "2048-06-04": "15 Khordad Uprising", + "2048-07-02": "Martyrdom of Imam Ali (estimated)", "2048-07-12": "Eid al-Fitr (estimated)", - "2048-07-13": "Eid al-Fitr (estimated)", - "2048-08-05": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-08-05": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2048-09-19": "Eid al-Adha (estimated)", "2048-09-27": "Eid al-Ghadeer (estimated)", "2048-10-17": "Tasua (estimated)", "2048-10-18": "Ashura (estimated)", "2048-11-26": "Arbaeen (estimated)", - "2048-12-04": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2048-12-04": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2048-12-06": "Martyrdom of Ali al-Rida (estimated)", "2048-12-14": "Martyrdom of Hasan al-Askari (estimated)", - "2048-12-23": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2048-12-23": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2049-02-10": "Islamic Revolution Day", "2049-03-07": "Martyrdom of Fatima (estimated)", "2049-03-19": "Iranian Oil Industry Nationalization Day", - "2049-03-20": "Persian New Year", - "2049-03-21": "Persian New Year", - "2049-03-22": "Persian New Year", - "2049-03-23": "Persian New Year", + "2049-03-20": "Nowruz", + "2049-03-21": "Nowruz Holiday", + "2049-03-22": "Nowruz Holiday", + "2049-03-23": "Nowruz Holiday", "2049-03-31": "Islamic Republic Day", "2049-04-01": "Nature's Day", - "2049-04-15": "Birthday of Ali (estimated)", + "2049-04-15": "Birthday of Imam Ali (estimated)", "2049-04-29": "Isra' and Mi'raj (estimated)", "2049-05-17": "Birthday of Mahdi (estimated)", - "2049-06-03": "Death of Khomeini", - "2049-06-04": "Khordad National Uprising", - "2049-06-22": "Martyrdom of Ali (estimated)", + "2049-06-03": "Death of Imam Khomeini", + "2049-06-04": "15 Khordad Uprising", + "2049-06-22": "Martyrdom of Imam Ali (estimated)", "2049-07-01": "Eid al-Fitr (estimated)", - "2049-07-02": "Eid al-Fitr (estimated)", - "2049-07-25": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-07-25": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2049-09-08": "Eid al-Adha (estimated)", "2049-09-16": "Eid al-Ghadeer (estimated)", "2049-10-06": "Tasua (estimated)", "2049-10-07": "Ashura (estimated)", "2049-11-16": "Arbaeen (estimated)", - "2049-11-24": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2049-11-24": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2049-11-25": "Martyrdom of Ali al-Rida (estimated)", "2049-12-03": "Martyrdom of Hasan al-Askari (estimated)", - "2049-12-12": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2049-12-12": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)", "2050-02-10": "Islamic Revolution Day", "2050-02-25": "Martyrdom of Fatima (estimated)", "2050-03-19": "Iranian Oil Industry Nationalization Day", - "2050-03-21": "Persian New Year", - "2050-03-22": "Persian New Year", - "2050-03-23": "Persian New Year", - "2050-03-24": "Persian New Year", + "2050-03-20": "Last Day of Year", + "2050-03-21": "Nowruz", + "2050-03-22": "Nowruz Holiday", + "2050-03-23": "Nowruz Holiday", + "2050-03-24": "Nowruz Holiday", "2050-04-01": "Islamic Republic Day", "2050-04-02": "Nature's Day", - "2050-04-05": "Birthday of Ali (estimated)", + "2050-04-05": "Birthday of Imam Ali (estimated)", "2050-04-19": "Isra' and Mi'raj (estimated)", "2050-05-06": "Birthday of Mahdi (estimated)", - "2050-06-04": "Death of Khomeini", - "2050-06-05": "Khordad National Uprising", - "2050-06-11": "Martyrdom of Ali (estimated)", + "2050-06-04": "Death of Imam Khomeini", + "2050-06-05": "15 Khordad Uprising", + "2050-06-11": "Martyrdom of Imam Ali (estimated)", "2050-06-20": "Eid al-Fitr (estimated)", - "2050-06-21": "Eid al-Fitr (estimated)", - "2050-07-14": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", + "2050-07-14": "Martyrdom of Imam Ja'far al-Sadiq (estimated)", "2050-08-28": "Eid al-Adha (estimated)", "2050-09-05": "Eid al-Ghadeer (estimated)", "2050-09-25": "Tasua (estimated)", "2050-09-26": "Ashura (estimated)", "2050-11-05": "Arbaeen (estimated)", - "2050-11-13": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2050-11-13": "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali (estimated)", "2050-11-14": "Martyrdom of Ali al-Rida (estimated)", "2050-11-22": "Martyrdom of Hasan al-Askari (estimated)", - "2050-12-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)" + "2050-12-01": "Birthday of Muhammad and Imam Ja'far al-Sadiq (estimated)" } diff --git a/tests/countries/test_iran.py b/tests/countries/test_iran.py index f7b4f3114..28aae8dfb 100644 --- a/tests/countries/test_iran.py +++ b/tests/countries/test_iran.py @@ -28,97 +28,129 @@ def test_no_holidays(self): self.assertNoHolidays(Iran(years=1979)) self.assertNoHolidays(Iran(years=2102)) + def test_2021(self): + self.assertHolidays( + ("2021-01-17", "شهادت حضرت فاطمه زهرا سلام الله علیها"), + ("2021-02-10", "پیروزی انقلاب اسلامی"), + ("2021-02-25", "ولادت امام علی علیه السلام و روز پدر"), + ("2021-03-11", "مبعث رسول اکرم (ص)"), + ("2021-03-19", "روز ملی شدن صنعت نفت ایران"), + ("2021-03-20", "آخرین روز سال"), + ("2021-03-21", "جشن نوروز"), + ("2021-03-22", "عیدنوروز"), + ("2021-03-23", "عیدنوروز"), + ("2021-03-24", "عیدنوروز"), + ("2021-03-29", "ولادت حضرت قائم عجل الله تعالی فرجه و جشن نیمه شعبان"), + ("2021-04-01", "روز جمهوری اسلامی"), + ("2021-04-02", "روز طبیعت"), + ("2021-05-04", "شهادت حضرت علی علیه السلام"), + ("2021-05-13", "عید سعید فطر"), + ("2021-05-14", "تعطیل به مناسبت عید سعید فطر"), + ("2021-06-04", "رحلت حضرت امام خمینی"), + ("2021-06-05", "قیام 15 خرداد"), + ("2021-06-06", "شهادت امام جعفر صادق علیه السلام"), + ("2021-07-21", "عید سعید قربان"), + ("2021-07-29", "عید سعید غدیر خم"), + ("2021-08-18", "تاسوعای حسینی"), + ("2021-08-19", "عاشورای حسینی"), + ("2021-09-27", "اربعین حسینی"), + ("2021-10-05", "رحلت رسول اکرم؛شهادت امام حسن مجتبی علیه السلام"), + ("2021-10-07", "شهادت امام رضا علیه السلام"), + ("2021-10-15", "شهادت امام حسن عسکری علیه السلام"), + ("2021-10-24", "میلاد رسول اکرم و امام جعفر صادق علیه السلام"), + ) + def test_2022(self): self.assertHolidays( - ("2022-01-06", "(تخمین زده) کشته‌شدن فاطمه زهرا"), - ("2022-02-11", "پیروزی انقلاب ۵۷"), - ("2022-02-14", "(تخمین زده) زادروز علی بن ابی‌طالب"), - ("2022-02-28", "(تخمین زده) مبعث"), - ("2022-03-18", "(تخمین زده) زادروز حجت بن الحسن"), - ("2022-03-20", "ملی‌شدن صنعت نفت"), - ("2022-03-21", "نوروز"), - ("2022-03-22", "نوروز"), - ("2022-03-23", "نوروز"), - ("2022-03-24", "نوروز"), + ("2022-01-06", "شهادت حضرت فاطمه زهرا سلام الله علیها"), + ("2022-02-11", "پیروزی انقلاب اسلامی"), + ("2022-02-15", "ولادت امام علی علیه السلام و روز پدر"), + ("2022-03-01", "مبعث رسول اکرم (ص)"), + ("2022-03-18", "ولادت حضرت قائم عجل الله تعالی فرجه و جشن نیمه شعبان"), + ("2022-03-20", "روز ملی شدن صنعت نفت ایران"), + ("2022-03-21", "جشن نوروز"), + ("2022-03-22", "عیدنوروز"), + ("2022-03-23", "عیدنوروز"), + ("2022-03-24", "عیدنوروز"), ("2022-04-01", "روز جمهوری اسلامی"), ("2022-04-02", "روز طبیعت"), - ("2022-04-22", "(تخمین زده) کشته‌شدن علی بن ابی‌طالب"), - ("2022-05-02", "(تخمین زده) عید فطر"), - ("2022-05-03", "(تخمین زده) عید فطر"), - ("2022-05-26", "(تخمین زده) کشته‌شدن جعفر صادق"), - ("2022-06-04", "درگذشت سید روح‌الله خمینی"), - ("2022-06-05", "تظاهرات ۱۵ خرداد"), - ("2022-07-09", "(تخمین زده) عید قربان"), - ("2022-07-17", "(تخمین زده) عید غدیر"), - ("2022-08-07", "(تخمین زده) تاسوعا"), - ("2022-08-08", "(تخمین زده) کشته‌شدن حسین بن علی، عاشورا"), - ("2022-09-16", "(تخمین زده) چهلم حسین بن علی اربعین"), - ("2022-09-24", "(تخمین زده) کشته‌شدن حسن مجتبی و درگذشت محمد"), - ("2022-09-26", "(تخمین زده) کشته‌شدن علی بن موسی الرضا"), - ("2022-10-04", "(تخمین زده) کشته‌شدن حسن عسکری"), - ("2022-10-13", "(تخمین زده) زادروز محمد و جعفر صادق"), - ("2022-12-27", "(تخمین زده) کشته‌شدن فاطمه زهرا"), + ("2022-04-23", "شهادت حضرت علی علیه السلام"), + ("2022-05-03", "عید سعید فطر"), + ("2022-05-04", "تعطیل به مناسبت عید سعید فطر"), + ("2022-05-27", "شهادت امام جعفر صادق علیه السلام"), + ("2022-06-04", "رحلت حضرت امام خمینی"), + ("2022-06-05", "قیام 15 خرداد"), + ("2022-07-10", "عید سعید قربان"), + ("2022-07-18", "عید سعید غدیر خم"), + ("2022-08-07", "تاسوعای حسینی"), + ("2022-08-08", "عاشورای حسینی"), + ("2022-09-17", "اربعین حسینی"), + ("2022-09-25", "رحلت رسول اکرم؛شهادت امام حسن مجتبی علیه السلام"), + ("2022-09-27", "شهادت امام رضا علیه السلام"), + ("2022-10-05", "شهادت امام حسن عسکری علیه السلام"), + ("2022-10-14", "میلاد رسول اکرم و امام جعفر صادق علیه السلام"), + ("2022-12-27", "شهادت حضرت فاطمه زهرا سلام الله علیها"), ) def test_l10n_default(self): self.assertLocalizedHolidays( - ("2023-02-04", "(تخمین زده) زادروز علی بن ابی‌طالب"), - ("2023-02-11", "پیروزی انقلاب ۵۷"), - ("2023-02-18", "(تخمین زده) مبعث"), - ("2023-03-07", "(تخمین زده) زادروز حجت بن الحسن"), - ("2023-03-20", "ملی‌شدن صنعت نفت"), - ("2023-03-21", "نوروز"), - ("2023-03-22", "نوروز"), - ("2023-03-23", "نوروز"), - ("2023-03-24", "نوروز"), + ("2023-02-04", "ولادت امام علی علیه السلام و روز پدر"), + ("2023-02-11", "پیروزی انقلاب اسلامی"), + ("2023-02-18", "مبعث رسول اکرم (ص)"), + ("2023-03-08", "ولادت حضرت قائم عجل الله تعالی فرجه و جشن نیمه شعبان"), + ("2023-03-20", "روز ملی شدن صنعت نفت ایران"), + ("2023-03-21", "جشن نوروز"), + ("2023-03-22", "عیدنوروز"), + ("2023-03-23", "عیدنوروز"), + ("2023-03-24", "عیدنوروز"), ("2023-04-01", "روز جمهوری اسلامی"), ("2023-04-02", "روز طبیعت"), - ("2023-04-12", "(تخمین زده) کشته‌شدن علی بن ابی‌طالب"), - ("2023-04-21", "(تخمین زده) عید فطر"), - ("2023-04-22", "(تخمین زده) عید فطر"), - ("2023-05-15", "(تخمین زده) کشته‌شدن جعفر صادق"), - ("2023-06-04", "درگذشت سید روح‌الله خمینی"), - ("2023-06-05", "تظاهرات ۱۵ خرداد"), - ("2023-06-28", "(تخمین زده) عید قربان"), - ("2023-07-06", "(تخمین زده) عید غدیر"), - ("2023-07-27", "(تخمین زده) تاسوعا"), - ("2023-07-28", "(تخمین زده) کشته‌شدن حسین بن علی، عاشورا"), - ("2023-09-05", "(تخمین زده) چهلم حسین بن علی اربعین"), - ("2023-09-13", "(تخمین زده) کشته‌شدن حسن مجتبی و درگذشت محمد"), - ("2023-09-15", "(تخمین زده) کشته‌شدن علی بن موسی الرضا"), - ("2023-09-23", "(تخمین زده) کشته‌شدن حسن عسکری"), - ("2023-10-02", "(تخمین زده) زادروز محمد و جعفر صادق"), - ("2023-12-16", "(تخمین زده) کشته‌شدن فاطمه زهرا"), + ("2023-04-12", "شهادت حضرت علی علیه السلام"), + ("2023-04-22", "عید سعید فطر"), + ("2023-04-23", "تعطیل به مناسبت عید سعید فطر"), + ("2023-05-16", "شهادت امام جعفر صادق علیه السلام"), + ("2023-06-04", "رحلت حضرت امام خمینی"), + ("2023-06-05", "قیام 15 خرداد"), + ("2023-06-29", "عید سعید قربان"), + ("2023-07-07", "عید سعید غدیر خم"), + ("2023-07-27", "تاسوعای حسینی"), + ("2023-07-28", "عاشورای حسینی"), + ("2023-09-06", "اربعین حسینی"), + ("2023-09-14", "رحلت رسول اکرم؛شهادت امام حسن مجتبی علیه السلام"), + ("2023-09-16", "شهادت امام رضا علیه السلام"), + ("2023-09-24", "شهادت امام حسن عسکری علیه السلام"), + ("2023-10-03", "میلاد رسول اکرم و امام جعفر صادق علیه السلام"), + ("2023-12-17", "شهادت حضرت فاطمه زهرا سلام الله علیها"), ) def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", - ("2023-02-04", "Birthday of Ali (estimated)"), + ("2023-02-04", "Birthday of Imam Ali"), ("2023-02-11", "Islamic Revolution Day"), - ("2023-02-18", "Isra' and Mi'raj (estimated)"), - ("2023-03-07", "Birthday of Mahdi (estimated)"), + ("2023-02-18", "Isra' and Mi'raj"), + ("2023-03-08", "Birthday of Mahdi"), ("2023-03-20", "Iranian Oil Industry Nationalization Day"), - ("2023-03-21", "Persian New Year"), - ("2023-03-22", "Persian New Year"), - ("2023-03-23", "Persian New Year"), - ("2023-03-24", "Persian New Year"), + ("2023-03-21", "Nowruz"), + ("2023-03-22", "Nowruz Holiday"), + ("2023-03-23", "Nowruz Holiday"), + ("2023-03-24", "Nowruz Holiday"), ("2023-04-01", "Islamic Republic Day"), ("2023-04-02", "Nature's Day"), - ("2023-04-12", "Martyrdom of Ali (estimated)"), - ("2023-04-21", "Eid al-Fitr (estimated)"), - ("2023-04-22", "Eid al-Fitr (estimated)"), - ("2023-05-15", "Martyrdom of Ja'far al-Sadiq (estimated)"), - ("2023-06-04", "Death of Khomeini"), - ("2023-06-05", "Khordad National Uprising"), - ("2023-06-28", "Eid al-Adha (estimated)"), - ("2023-07-06", "Eid al-Ghadeer (estimated)"), - ("2023-07-27", "Tasua (estimated)"), - ("2023-07-28", "Ashura (estimated)"), - ("2023-09-05", "Arbaeen (estimated)"), - ("2023-09-13", "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)"), - ("2023-09-15", "Martyrdom of Ali al-Rida (estimated)"), - ("2023-09-23", "Martyrdom of Hasan al-Askari (estimated)"), - ("2023-10-02", "Birthday of Muhammad and Ja'far al-Sadiq (estimated)"), - ("2023-12-16", "Martyrdom of Fatima (estimated)"), + ("2023-04-12", "Martyrdom of Imam Ali"), + ("2023-04-22", "Eid al-Fitr"), + ("2023-04-23", "Eid al-Fitr Holiday"), + ("2023-05-16", "Martyrdom of Imam Ja'far al-Sadiq"), + ("2023-06-04", "Death of Imam Khomeini"), + ("2023-06-05", "15 Khordad Uprising"), + ("2023-06-29", "Eid al-Adha"), + ("2023-07-07", "Eid al-Ghadeer"), + ("2023-07-27", "Tasua"), + ("2023-07-28", "Ashura"), + ("2023-09-06", "Arbaeen"), + ("2023-09-14", "Death of Prophet Muhammad and Martyrdom of Hasan ibn Ali"), + ("2023-09-16", "Martyrdom of Ali al-Rida"), + ("2023-09-24", "Martyrdom of Hasan al-Askari"), + ("2023-10-03", "Birthday of Muhammad and Imam Ja'far al-Sadiq"), + ("2023-12-17", "Martyrdom of Fatima"), )