From 0d8c698692e8967584970ace3c56165564008493 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Mon, 6 May 2024 19:54:08 +0300 Subject: [PATCH 01/10] Initialize v0.49 --- holidays/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/holidays/__init__.py b/holidays/__init__.py index d622c6adb..921c247e0 100644 --- a/holidays/__init__.py +++ b/holidays/__init__.py @@ -17,7 +17,7 @@ from holidays.registry import EntityLoader from holidays.utils import * -__version__ = "0.48" +__version__ = "0.49" EntityLoader.load("countries", globals()) From 4efae5107592fc18f29cd9edd17061596fada44c Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Thu, 9 May 2024 08:41:50 -0700 Subject: [PATCH 02/10] Address numpy int argument conversion issue (#1782) --- holidays/helpers.py | 12 +++++++--- requirements/tests.txt | 3 ++- tests/third_party/test_numpy.py | 42 +++++++++++++++++++++++++++++++++ tox.ini | 1 + 4 files changed, 54 insertions(+), 4 deletions(-) create mode 100644 tests/third_party/test_numpy.py diff --git a/holidays/helpers.py b/holidays/helpers.py index c14a294a1..261e8230f 100644 --- a/holidays/helpers.py +++ b/holidays/helpers.py @@ -24,13 +24,19 @@ def _normalize_arguments(cls, value): A set created from `value` argument. """ + if value is None: + return set() + if isinstance(value, cls): return {value} - return set(value) if value is not None else set() + try: + return {v if isinstance(v, cls) else cls(v) for v in value} + except TypeError: # non-iterable + return {value if isinstance(value, cls) else cls(value)} -def _normalize_tuple(data): +def _normalize_tuple(value): """Normalize tuple. :param data: @@ -40,4 +46,4 @@ def _normalize_tuple(data): An unchanged object for tuple of tuples, e.g., ((JAN, 10), (DEC, 31)). An object put into a tuple otherwise, e.g., ((JAN, 10),). """ - return data if not data or isinstance(data[0], tuple) else (data,) + return value if not value or isinstance(value[0], tuple) else (value,) diff --git a/requirements/tests.txt b/requirements/tests.txt index 8f59b1d44..959b49836 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -1,7 +1,8 @@ # Test requirements. coverage importlib-metadata +numpy +polib pytest pytest-cov pytest-xdist -polib diff --git a/tests/third_party/test_numpy.py b/tests/third_party/test_numpy.py new file mode 100644 index 000000000..8b90f590e --- /dev/null +++ b/tests/third_party/test_numpy.py @@ -0,0 +1,42 @@ +# 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/python-holidays +# License: MIT (see LICENSE file) + +from platform import platform, python_implementation, python_version +from unittest import TestCase + +import pytest + +from holidays.countries.cambodia import Cambodia +from holidays.countries.thailand import Thailand +from holidays.countries.ukraine import Ukraine + + +class TestNumpy(TestCase): + @pytest.mark.skipif( + platform().startswith("Windows") + and python_implementation().startswith("PyPy") + and python_version().startswith("3.10"), + reason='Avoid "make: *** [Makefile:63: test] Error 5" for pypy3.10 on Windows', + ) + def test_years_int_conversion(self): + import numpy as np # It seems the import causes the error mentioned above. + + years = (1995, 2000) + years_range = set(range(*years)) + + for cls in (Cambodia, Thailand, Ukraine): + # Test single value. + for int_x in (np.int16, np.int32, np.int64): + self.assertEqual(cls(years=int_x(2024)).years, {2024}) + + # Test iterable. + self.assertEqual(cls(years=np.arange(*years)).years, years_range) diff --git a/tox.ini b/tox.ini index eb3a417ab..6a92bf23a 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ env_list = docs pre-commit python3.{12, 11, 10, 9, 8} + pypy3.{10, 9} skip_missing_interpreters = true [testenv] From 0d4dcecdc8bf59267793a0ccdf96b351f87ae191 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Thu, 9 May 2024 19:03:42 +0300 Subject: [PATCH 03/10] Replace `datetime::timedelta` with custom function (#1785) --- holidays/calendars/gregorian.py | 24 ++++++++++---- holidays/calendars/persian.py | 5 +-- holidays/calendars/thai.py | 44 ++++++++++++++----------- holidays/countries/aruba.py | 5 ++- holidays/countries/cambodia.py | 15 ++++----- holidays/countries/curacao.py | 7 ++-- holidays/countries/finland.py | 4 +-- holidays/countries/hongkong.py | 25 +++++++++----- holidays/countries/israel.py | 26 +++++++-------- holidays/countries/italy.py | 6 ++-- holidays/countries/japan.py | 23 +++++++++---- holidays/countries/madagascar.py | 5 ++- holidays/countries/netherlands.py | 5 ++- holidays/countries/new_zealand.py | 7 ++-- holidays/countries/saudi_arabia.py | 5 ++- holidays/countries/south_korea.py | 21 +++++++++--- holidays/countries/sweden.py | 5 ++- holidays/countries/switzerland.py | 5 ++- holidays/financial/ny_stock_exchange.py | 21 +++++++++--- holidays/groups/chinese.py | 5 ++- holidays/groups/christian.py | 37 ++++++++++----------- holidays/groups/islamic.py | 4 +-- holidays/groups/persian.py | 4 +-- holidays/holiday_base.py | 33 ++++++++++--------- holidays/observed_holiday_base.py | 9 +++-- tests/calendars/test_gregorian.py | 23 +++++++++++-- tests/countries/test_pakistan.py | 12 +++---- tests/countries/test_turkey.py | 16 ++++++--- tests/countries/test_vietnam.py | 17 +++++----- 29 files changed, 245 insertions(+), 173 deletions(-) diff --git a/holidays/calendars/gregorian.py b/holidays/calendars/gregorian.py index 17c66aace..837967b64 100644 --- a/holidays/calendars/gregorian.py +++ b/holidays/calendars/gregorian.py @@ -11,7 +11,6 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td GREGORIAN_CALENDAR = "GREGORIAN_CALENDAR" @@ -30,6 +29,14 @@ WEEKDAYS = {w: i for i, w in enumerate(("mon", "tue", "wed", "thu", "fri", "sat", "sun"))} +def _timedelta(dt: date, days: int = 0) -> date: + """ + Return date that is `days` days after (days > 0) or before (days < 0) specified date. + """ + + return date.fromordinal(dt.toordinal() + days) + + def _get_nth_weekday_from(n: int, weekday: int, from_dt: date) -> date: """ Return date of a n-th weekday before a specific date @@ -39,10 +46,13 @@ def _get_nth_weekday_from(n: int, weekday: int, from_dt: date) -> date: Examples: 1st Monday, 2nd Saturday, etc). """ - return from_dt + td( - days=(n - 1) * 7 + (weekday - from_dt.weekday()) % 7 - if n > 0 - else (n + 1) * 7 - (from_dt.weekday() - weekday) % 7 + return _timedelta( + from_dt, + ( + (n - 1) * 7 + (weekday - from_dt.weekday()) % 7 + if n > 0 + else (n + 1) * 7 - (from_dt.weekday() - weekday) % 7 + ), ) @@ -61,7 +71,7 @@ def _get_nth_weekday_of_month(n: int, weekday: int, month: int, year: int) -> da if month > 12: month = 1 year += 1 - start_date = date(year, month, 1) + td(days=-1) + start_date = _timedelta(date(year, month, 1), -1) else: start_date = date(year, month, 1) @@ -77,4 +87,4 @@ def _get_nth_weekday_of_month(n: int, weekday: int, month: int, year: int) -> da def _get_all_sundays(year): first_sunday = _get_nth_weekday_of_month(1, SUN, JAN, year) for n in range(0, (date(year, DEC, 31) - first_sunday).days + 1, 7): - yield first_sunday + td(days=n) + yield _timedelta(first_sunday, n) diff --git a/holidays/calendars/persian.py b/holidays/calendars/persian.py index ee7335e7b..d6c4b8cc8 100644 --- a/holidays/calendars/persian.py +++ b/holidays/calendars/persian.py @@ -11,9 +11,10 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from typing import Optional +from holidays.calendars.gregorian import _timedelta + class _Persian: """ @@ -54,4 +55,4 @@ def persian_to_gregorian(self, year: int, j_month: int, j_day: int) -> Optional[ m = j_month - 1 delta = (31 * m if m < 6 else 186 + 30 * (m - 6)) + j_day - 1 - return start_date + td(days=delta) + return _timedelta(start_date, delta) diff --git a/holidays/calendars/thai.py b/holidays/calendars/thai.py index a75cc36e0..9a0ded39a 100644 --- a/holidays/calendars/thai.py +++ b/holidays/calendars/thai.py @@ -11,10 +11,11 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from functools import lru_cache from typing import Optional +from holidays.calendars.gregorian import _timedelta + KHMER_CALENDAR = "KHMER_CALENDAR" THAI_CALENDAR = "THAI_CALENDAR" @@ -230,7 +231,7 @@ def _get_start_date(self, year: int) -> Optional[date]: elif iter_year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: delta_days += 1 - return _ThaiLunisolar.START_DATE + td(days=delta_days) + return _timedelta(_ThaiLunisolar.START_DATE, delta_days) def makha_bucha_date(self, year: int, calendar=None) -> Optional[date]: """ @@ -267,13 +268,14 @@ def makha_bucha_date(self, year: int, calendar=None) -> Optional[date]: if not start_date: return None - return start_date + td( - days=+102 + return _timedelta( + start_date, + +102 if ( year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN and not self.__is_khmer_calendar(calendar) ) - else +73 + else +73, ) def visakha_bucha_date(self, year: int, calendar=None) -> Optional[date]: @@ -310,13 +312,14 @@ def visakha_bucha_date(self, year: int, calendar=None) -> Optional[date]: if not start_date: return None - return start_date + td( - days=+191 + return _timedelta( + start_date, + +191 if ( year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN and not self.__is_khmer_calendar(calendar) ) - else +161 + else +161, ) def preah_neangkoal_date(self, year: int) -> Optional[date]: @@ -346,7 +349,7 @@ def preah_neangkoal_date(self, year: int) -> Optional[date]: if not start_date: return None - return start_date + td(days=+165) + return _timedelta(start_date, +165) def atthami_bucha_date(self, year: int, calendar=None) -> Optional[date]: """ @@ -383,13 +386,14 @@ def atthami_bucha_date(self, year: int, calendar=None) -> Optional[date]: if not start_date: return None - return start_date + td( - days=+199 + return _timedelta( + start_date, + +199 if ( year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN and not self.__is_khmer_calendar(calendar) ) - else +169 + else +169, ) def asarnha_bucha_date(self, year: int) -> Optional[date]: @@ -430,7 +434,7 @@ def asarnha_bucha_date(self, year: int) -> Optional[date]: delta_days = +221 else: delta_days = +220 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) def khao_phansa_date(self, year: int) -> Optional[date]: """ @@ -469,7 +473,7 @@ def khao_phansa_date(self, year: int) -> Optional[date]: delta_days = +222 else: delta_days = +221 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) def boun_haw_khao_padapdin_date(self, year: int) -> Optional[date]: """ @@ -503,7 +507,7 @@ def boun_haw_khao_padapdin_date(self, year: int) -> Optional[date]: delta_days = +265 else: delta_days = +264 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) def boun_haw_khao_salark_date(self, year: int) -> Optional[date]: """ @@ -537,7 +541,7 @@ def boun_haw_khao_salark_date(self, year: int) -> Optional[date]: delta_days = +280 else: delta_days = +279 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) def pchum_ben_date(self, year: int) -> Optional[date]: """ @@ -571,7 +575,7 @@ def pchum_ben_date(self, year: int) -> Optional[date]: delta_days = +295 else: delta_days = +294 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) def ok_phansa_date(self, year: int) -> Optional[date]: """ @@ -605,7 +609,7 @@ def ok_phansa_date(self, year: int) -> Optional[date]: delta_days = +310 else: delta_days = +309 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) def boun_suang_heua_date(self, year: int) -> Optional[date]: """ @@ -639,7 +643,7 @@ def boun_suang_heua_date(self, year: int) -> Optional[date]: delta_days = +311 else: delta_days = +310 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) def loy_krathong_date(self, year: int) -> Optional[date]: """ @@ -673,4 +677,4 @@ def loy_krathong_date(self, year: int) -> Optional[date]: delta_days = +339 else: delta_days = +338 - return start_date + td(days=delta_days) + return _timedelta(start_date, delta_days) diff --git a/holidays/countries/aruba.py b/holidays/countries/aruba.py index 4023bc22c..a5ef01cef 100644 --- a/holidays/countries/aruba.py +++ b/holidays/countries/aruba.py @@ -11,10 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import APR, AUG +from holidays.calendars.gregorian import APR, AUG, _timedelta from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -118,7 +117,7 @@ def _populate_public_holidays(self): else: dt = (AUG, 31) if self._is_sunday(dt): - dt = date(self._year, *dt) + td(days=-1 if self._year >= 1980 else +1) + dt = _timedelta(date(self._year, *dt), -1 if self._year >= 1980 else +1) self._add_holiday(name, dt) # Dia di Labor/Dia di Obrero. diff --git a/holidays/countries/cambodia.py b/holidays/countries/cambodia.py index bd33a6ca9..a74e1a8f6 100644 --- a/holidays/countries/cambodia.py +++ b/holidays/countries/cambodia.py @@ -10,10 +10,9 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import MAY, AUG, SEP +from holidays.calendars.gregorian import MAY, AUG, SEP, _timedelta from holidays.calendars.thai import KHMER_CALENDAR from holidays.groups import InternationalHolidays, StaticHolidays, ThaiCalendarHolidays from holidays.holiday_base import HolidayBase @@ -98,8 +97,8 @@ def _populate_public_holidays(self): if self._year in sangkranta_years_apr_14 else self._add_holiday_apr_13(sangkranta) ) - self._add_holiday(sangkranta, dt + td(days=+1)) - self._add_holiday(sangkranta, dt + td(days=+2)) + self._add_holiday(sangkranta, _timedelta(dt, +1)) + self._add_holiday(sangkranta, _timedelta(dt, +2)) # ទិវាពលកម្មអន្តរជាតិ # Status: In-Use. @@ -253,9 +252,9 @@ def _populate_public_holidays(self): pchum_ben = tr("ពិធីបុណ្យភ្ផុំបិណ្ឌ") pchum_ben_date = self._add_pchum_ben(pchum_ben) if pchum_ben_date: - self._add_holiday(pchum_ben, pchum_ben_date + td(days=-1)) + self._add_holiday(pchum_ben, _timedelta(pchum_ben_date, -1)) if self._year >= 2017: - self._add_holiday(pchum_ben, pchum_ben_date + td(days=+1)) + self._add_holiday(pchum_ben, _timedelta(pchum_ben_date, +1)) # ព្រះរាជពិធីបុណ្យអុំទូក បណ្តែតប្រទីប និងសំពះព្រះខែអកអំបុក # Status: In-Use. @@ -265,8 +264,8 @@ def _populate_public_holidays(self): bon_om_touk = tr("ព្រះរាជពិធីបុណ្យអុំទូក បណ្តែតប្រទីប និងសំពះព្រះខែអកអំបុក") bon_om_touk_date = self._add_loy_krathong(bon_om_touk) if bon_om_touk_date: - self._add_holiday(bon_om_touk, bon_om_touk_date + td(days=-1)) - self._add_holiday(bon_om_touk, bon_om_touk_date + td(days=+1)) + self._add_holiday(bon_om_touk, _timedelta(bon_om_touk_date, -1)) + self._add_holiday(bon_om_touk, _timedelta(bon_om_touk_date, +1)) class KH(Cambodia): diff --git a/holidays/countries/curacao.py b/holidays/countries/curacao.py index 9ee821685..7e8c173c5 100644 --- a/holidays/countries/curacao.py +++ b/holidays/countries/curacao.py @@ -11,10 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import APR, MAY +from holidays.calendars.gregorian import APR, MAY, _timedelta from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -90,7 +89,7 @@ def _populate_public_holidays(self): ) dt = date(self._year, APR, 27 if self._year >= 2014 else 30) if self._is_sunday(dt): - dt += td(days=-1 if self._year >= 1980 else +1) + dt = _timedelta(dt, -1 if self._year >= 1980 else +1) self._add_holiday(name, dt) # Dia di Obrero. @@ -99,7 +98,7 @@ def _populate_public_holidays(self): dt = date(self._year, MAY, 1) if self._is_sunday(dt) or (self._is_monday(dt) and self._year <= 1979): - dt += td(days=+1) + dt = _timedelta(dt, +1) # Labor Day self._add_holiday(tr("Dia di Obrero"), dt) diff --git a/holidays/countries/finland.py b/holidays/countries/finland.py index b2969acd3..951f9b095 100644 --- a/holidays/countries/finland.py +++ b/holidays/countries/finland.py @@ -10,9 +10,9 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import timedelta as td from gettext import gettext as tr +from holidays.calendars.gregorian import _timedelta from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -72,7 +72,7 @@ def _populate_public_holidays(self): dt = self._add_holiday_jun_23(name) # Midsummer Day. - self._add_holiday(tr("Juhannuspäivä"), dt + td(days=+1)) + self._add_holiday(tr("Juhannuspäivä"), _timedelta(dt, +1)) # All Saints' Day. name = tr("Pyhäinpäivä") diff --git a/holidays/countries/hongkong.py b/holidays/countries/hongkong.py index fffb78cdc..ea2d23a4b 100644 --- a/holidays/countries/hongkong.py +++ b/holidays/countries/hongkong.py @@ -11,10 +11,17 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from typing import Optional -from holidays.calendars.gregorian import JUL, AUG, SEP, MON, SUN, _get_nth_weekday_of_month +from holidays.calendars.gregorian import ( + JUL, + AUG, + SEP, + MON, + SUN, + _timedelta, + _get_nth_weekday_of_month, +) from holidays.groups import ( ChineseCalendarHolidays, ChristianHolidays, @@ -106,11 +113,11 @@ def _populate_public_holidays(self): # Ching Ming Festival name = "Ching Ming Festival" dt_qingming = self._qingming_date - if self.observed and dt_qingming == self._easter_sunday + td(days=+1): + if self.observed and dt_qingming == _timedelta(self._easter_sunday, +1): self._add_observed(dt_qingming, name=name, rule=MON_TO_NEXT_TUE) elif dt_qingming not in { - self._easter_sunday + td(days=-2), - self._easter_sunday + td(days=-1), + _timedelta(self._easter_sunday, -2), + _timedelta(self._easter_sunday, -1), }: self._add_holiday(name, dt_qingming) @@ -122,8 +129,8 @@ def _populate_public_holidays(self): self._add_easter_monday(easter_monday) if dt_qingming in { - self._easter_sunday + td(days=-2), - self._easter_sunday + td(days=-1), + _timedelta(self._easter_sunday, -2), + _timedelta(self._easter_sunday, -1), }: super()._add_holiday(name, dt_qingming) @@ -154,7 +161,7 @@ def _populate_public_holidays(self): self._add_mid_autumn_festival(name) else: self._add_holiday( - f"The second day of the {name} (Monday)", mid_autumn_date + td(days=+2) + f"The second day of the {name} (Monday)", _timedelta(mid_autumn_date, +2) ) else: self._add_mid_autumn_festival_day_two(f"The day following the {name}") @@ -203,7 +210,7 @@ def _populate_public_holidays(self): # Anniversary of the victory in the Second Sino-Japanese War super()._add_holiday( "Anniversary of the victory in the Second Sino-Japanese War", - _get_nth_weekday_of_month(-1, MON, AUG, self._year) + td(days=-1), + _timedelta(_get_nth_weekday_of_month(-1, MON, AUG, self._year), -1), ) diff --git a/holidays/countries/israel.py b/holidays/countries/israel.py index 3fd12e2bb..ebafba768 100644 --- a/holidays/countries/israel.py +++ b/holidays/countries/israel.py @@ -10,10 +10,10 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import timedelta as td from gettext import gettext as tr from holidays.calendars import _HebrewLunisolar +from holidays.calendars.gregorian import _timedelta from holidays.calendars.hebrew import ( HANUKKAH, INDEPENDENCE_DAY, @@ -73,7 +73,7 @@ def _populate_public_holidays(self): name = tr("ראש השנה") rosh_hashanah_dt = self._get_holiday(ROSH_HASHANAH) self._add_holiday(name, rosh_hashanah_dt) - self._add_holiday(name, rosh_hashanah_dt + td(days=+1)) + self._add_holiday(name, _timedelta(rosh_hashanah_dt, +1)) # Yom Kippur (Day of Atonement). self._add_holiday(tr("יום כיפור"), self._get_holiday(YOM_KIPPUR)) @@ -83,13 +83,13 @@ def _populate_public_holidays(self): sukkot_dt = self._get_holiday(SUKKOT) self._add_holiday(name, sukkot_dt) # Simchat Torah / Shemini Atzeret. - self._add_holiday(tr("שמחת תורה/שמיני עצרת"), sukkot_dt + td(days=+7)) + self._add_holiday(tr("שמחת תורה/שמיני עצרת"), _timedelta(sukkot_dt, +7)) passover_dt = self._get_holiday(PASSOVER) # Pesach (Passover). self._add_holiday(tr("פסח"), passover_dt) # Shvi'i shel Pesach (Seventh day of Passover) - self._add_holiday(tr("שביעי של פסח"), passover_dt + td(days=+6)) + self._add_holiday(tr("שביעי של פסח"), _timedelta(passover_dt, +6)) # Yom Ha-Atzmaut (Independence Day). name = tr("יום העצמאות") @@ -114,11 +114,11 @@ def _populate_optional_holidays(self): sukkot_dt = self._get_holiday(SUKKOT) for offset in range(1, 6): # Chol HaMoed Sukkot (Feast of Tabernacles holiday). - self._add_holiday(tr("חול המועד סוכות"), sukkot_dt + td(days=offset)) + self._add_holiday(tr("חול המועד סוכות"), _timedelta(sukkot_dt, offset)) if self._year >= 2008: # Sigd. - self._add_holiday(tr("סיגד"), self._get_holiday(YOM_KIPPUR) + td(days=+49)) + self._add_holiday(tr("סיגד"), _timedelta(self._get_holiday(YOM_KIPPUR), +49)) # Purim. self._add_holiday(tr("פורים"), self._get_holiday(PURIM)) @@ -126,12 +126,12 @@ def _populate_optional_holidays(self): passover_dt = self._get_holiday(PASSOVER) for offset in range(1, 6): # Chol HaMoed Pesach (Passover holiday). - self._add_holiday(tr("חול המועד פסח"), passover_dt + td(days=offset)) + self._add_holiday(tr("חול המועד פסח"), _timedelta(passover_dt, offset)) if self._year >= 1963: # Yom Hazikaron (Fallen Soldiers and Victims of Terrorism Remembrance Day). name = tr("יום הזיכרון לחללי מערכות ישראל ונפגעי פעולות האיבה") - remembrance_day_dt = self._get_holiday(INDEPENDENCE_DAY) + td(days=-1) + remembrance_day_dt = _timedelta(self._get_holiday(INDEPENDENCE_DAY), -1) rule = THU_TO_PREV_WED + FRI_TO_PREV_WED if self._year >= 2004: rule += SUN_TO_NEXT_MON @@ -141,7 +141,7 @@ def _populate_optional_holidays(self): if self._year >= 1998: # Yom Yerushalayim (Jerusalem Day). - self._add_holiday(tr("יום ירושלים"), self._get_holiday(LAG_BAOMER) + td(days=+10)) + self._add_holiday(tr("יום ירושלים"), _timedelta(self._get_holiday(LAG_BAOMER), +10)) # Tisha B'Av (Tisha B'Av, fast). name = tr("תשעה באב") @@ -160,18 +160,18 @@ def _populate_school_holidays(self): sukkot_dt = self._get_holiday(SUKKOT) for offset in range(1, 6): # Chol HaMoed Sukkot (Feast of Tabernacles holiday). - self._add_holiday(tr("חול המועד סוכות"), sukkot_dt + td(days=offset)) + self._add_holiday(tr("חול המועד סוכות"), _timedelta(sukkot_dt, offset)) for year in (self._year - 1, self._year): hanukkah_dt = _HebrewLunisolar._get_holiday(HANUKKAH, year) for offset in range(8): # Hanukkah. - self._add_holiday(tr("חנוכה"), hanukkah_dt + td(days=offset)) + self._add_holiday(tr("חנוכה"), _timedelta(hanukkah_dt, offset)) # Ta`anit Ester (Fast of Esther). name = tr("תענית אסתר") purim_dt = self._get_holiday(PURIM) - taanit_ester_dt = purim_dt + td(days=-1) + taanit_ester_dt = _timedelta(purim_dt, -1) is_observed, _ = self._add_observed(taanit_ester_dt, name, SAT_TO_PREV_THU) if not is_observed: self._add_holiday(name, taanit_ester_dt) @@ -182,7 +182,7 @@ def _populate_school_holidays(self): passover_dt = self._get_holiday(PASSOVER) for offset in range(1, 6): # Chol HaMoed Pesach (Passover holiday). - self._add_holiday(tr("חול המועד פסח"), passover_dt + td(days=offset)) + self._add_holiday(tr("חול המועד פסח"), _timedelta(passover_dt, offset)) # Lag Ba'omer (Lag BaOmer). self._add_holiday(tr('ל"ג בעומר'), self._get_holiday(LAG_BAOMER)) diff --git a/holidays/countries/italy.py b/holidays/countries/italy.py index c7ce72b69..dfbe0ebb0 100644 --- a/holidays/countries/italy.py +++ b/holidays/countries/italy.py @@ -10,8 +10,6 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import timedelta as td - from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -307,8 +305,8 @@ def _populate_subdiv_fi_public_holidays(self): self._add_saint_johns_day("San Giovanni Battista") def _populate_subdiv_fm_public_holidays(self): - aug_15 = self._add_assumption_of_mary_day("Maria Santissima Assunta") - self._add_holiday("Maria Santissima Assunta", aug_15 + td(days=+1)) + self._add_assumption_of_mary_day("Maria Santissima Assunta") + self._add_holiday_aug_16("Maria Santissima Assunta") def _populate_subdiv_fr_public_holidays(self): self._add_holiday_jun_20("San Silverio") diff --git a/holidays/countries/japan.py b/holidays/countries/japan.py index 1dea75291..548fa4d75 100644 --- a/holidays/countries/japan.py +++ b/holidays/countries/japan.py @@ -11,11 +11,22 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from gettext import gettext as tr from typing import Tuple -from holidays.calendars.gregorian import FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV +from holidays.calendars.gregorian import ( + FEB, + MAR, + APR, + MAY, + JUN, + JUL, + AUG, + SEP, + OCT, + NOV, + _timedelta, +) from holidays.constants import BANK, PUBLIC from holidays.groups import InternationalHolidays, StaticHolidays from holidays.helpers import _normalize_tuple @@ -171,18 +182,18 @@ def _populate_public_holidays(self): for dt in dts_observed.copy(): if not self._is_sunday(dt): continue - dt_observed = dt + td(days=+1) + dt_observed = _timedelta(dt, +1) while dt_observed in dts_observed: - dt_observed += td(days=+1) + dt_observed = _timedelta(dt_observed, +1) # Substitute Holiday. dts_observed.add(self._add_holiday(tr("振替休日"), dt_observed)) # A weekday between national holidays becomes # a holiday too (国民の休日) - citizens' holidays. for dt in dts_observed: - if dt + td(days=+2) not in dts_observed: + if _timedelta(dt, +2) not in dts_observed: continue - dt_observed = dt + td(days=+1) + dt_observed = _timedelta(dt, +1) if self._is_sunday(dt_observed) or dt_observed in dts_observed: continue # National Holiday. diff --git a/holidays/countries/madagascar.py b/holidays/countries/madagascar.py index 88208d40b..83ea06276 100644 --- a/holidays/countries/madagascar.py +++ b/holidays/countries/madagascar.py @@ -10,10 +10,9 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import MAY, SUN, _get_nth_weekday_of_month +from holidays.calendars.gregorian import MAY, SUN, _timedelta, _get_nth_weekday_of_month from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -70,7 +69,7 @@ def _populate_public_holidays(self): self._add_holiday( # Mother's Day. tr("Fetin'ny reny"), - last_sun_of_may + td(days=+7) if last_sun_of_may == whit_sunday else last_sun_of_may, + _timedelta(last_sun_of_may, +7) if last_sun_of_may == whit_sunday else last_sun_of_may, ) # Father's Day. diff --git a/holidays/countries/netherlands.py b/holidays/countries/netherlands.py index 168f1f0c1..e975bb2e5 100644 --- a/holidays/countries/netherlands.py +++ b/holidays/countries/netherlands.py @@ -11,10 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import APR, AUG +from holidays.calendars.gregorian import APR, AUG, _timedelta from holidays.constants import OPTIONAL, PUBLIC from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -65,7 +64,7 @@ def _populate_public_holidays(self): else: dt = date(self._year, AUG, 31) if self._is_sunday(dt): - dt += td(days=-1) if self._year >= 1980 else td(days=+1) + dt = _timedelta(dt, -1 if self._year >= 1980 else +1) self._add_holiday(name, dt) if self._year >= 1950 and self._year % 5 == 0: diff --git a/holidays/countries/new_zealand.py b/holidays/countries/new_zealand.py index c4ae77019..ad4d088aa 100644 --- a/holidays/countries/new_zealand.py +++ b/holidays/countries/new_zealand.py @@ -11,9 +11,8 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td -from holidays.calendars.gregorian import JAN, FEB, MAR, JUN, JUL, SEP, NOV, DEC +from holidays.calendars.gregorian import JAN, FEB, MAR, JUN, JUL, SEP, NOV, DEC, _timedelta from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays from holidays.observed_holiday_base import ( ObservedHolidayBase, @@ -243,8 +242,8 @@ def _populate_subdiv_ntl_public_holidays(self): def _populate_subdiv_ota_public_holidays(self): # there is no easily determined single day of local observance?!?! dt = self._get_nearest_monday(MAR, 23) - if dt == self._easter_sunday + td(days=+1): # Avoid Easter Monday - dt += td(days=+1) + if dt == _timedelta(self._easter_sunday, +1): # Avoid Easter Monday + dt = _timedelta(dt, +1) self._add_holiday("Otago Anniversary Day", dt) def _populate_subdiv_stc_public_holidays(self): diff --git a/holidays/countries/saudi_arabia.py b/holidays/countries/saudi_arabia.py index 9eed5b8d6..deb316d94 100644 --- a/holidays/countries/saudi_arabia.py +++ b/holidays/countries/saudi_arabia.py @@ -11,11 +11,10 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from gettext import gettext as tr from typing import Set -from holidays.calendars.gregorian import JAN, FEB, SEP, NOV, THU, FRI, SAT +from holidays.calendars.gregorian import JAN, FEB, SEP, NOV, THU, FRI, SAT, _timedelta from holidays.groups import IslamicHolidays, StaticHolidays from holidays.observed_holiday_base import ( ObservedHolidayBase, @@ -67,7 +66,7 @@ def _add_islamic_observed(self, dts: Set[date]) -> None: observed_rule = THU_FRI_TO_NEXT_WORKDAY if self._year <= 2012 else FRI_SAT_TO_NEXT_WORKDAY for dt in dts: for i in range(4): - self._add_observed(dt + td(days=-i), name=self[dt], rule=observed_rule) + self._add_observed(_timedelta(dt, -i), name=self[dt], rule=observed_rule) def _populate_public_holidays(self): # Weekend used to be THU, FRI before June 28th, 2013. diff --git a/holidays/countries/south_korea.py b/holidays/countries/south_korea.py index eae907a46..bee6e04ef 100644 --- a/holidays/countries/south_korea.py +++ b/holidays/countries/south_korea.py @@ -12,12 +12,25 @@ import warnings from datetime import date -from datetime import timedelta as td from gettext import gettext as tr from typing import Dict, Set from holidays.calendars import _CustomChineseHolidays -from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC +from holidays.calendars.gregorian import ( + JAN, + FEB, + MAR, + APR, + MAY, + JUN, + JUL, + AUG, + SEP, + OCT, + NOV, + DEC, + _timedelta, +) from holidays.constants import BANK, PUBLIC from holidays.groups import ( ChineseCalendarHolidays, @@ -115,10 +128,10 @@ def add_three_day_holiday(dt: date, name: str): name = self.tr(name) for dt_alt in ( # The day preceding %s. - self._add_holiday(self.tr("%s 전날") % name, dt + td(days=-1)), + self._add_holiday(self.tr("%s 전날") % name, _timedelta(dt, -1)), dt, # The second day of %s. - self._add_holiday(self.tr("%s 다음날") % name, dt + td(days=+1)), + self._add_holiday(self.tr("%s 다음날") % name, _timedelta(dt, +1)), ): three_days_holidays[dt_alt] = name diff --git a/holidays/countries/sweden.py b/holidays/countries/sweden.py index 1e4b063e8..b284d097b 100644 --- a/holidays/countries/sweden.py +++ b/holidays/countries/sweden.py @@ -10,10 +10,9 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import _get_all_sundays +from holidays.calendars.gregorian import _timedelta, _get_all_sundays from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -101,7 +100,7 @@ def _populate_public_holidays(self): ) # Midsummer Day. - self._add_holiday(tr("Midsommardagen"), dt + td(days=+1)) + self._add_holiday(tr("Midsommardagen"), _timedelta(dt, +1)) # All Saints' Day. self._add_holiday_1st_sat_from_oct_31(tr("Alla helgons dag")) diff --git a/holidays/countries/switzerland.py b/holidays/countries/switzerland.py index 0a8ad9e4a..d6de9fb19 100644 --- a/holidays/countries/switzerland.py +++ b/holidays/countries/switzerland.py @@ -10,10 +10,9 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import APR, THU, _get_nth_weekday_of_month +from holidays.calendars.gregorian import APR, THU, _timedelta, _get_nth_weekday_of_month from holidays.constants import HALF_DAY, OPTIONAL, PUBLIC from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -202,7 +201,7 @@ def _populate_subdiv_gl_public_holidays(self): self._add_holiday( # Battle of Naefels Victory Day. tr("Näfelser Fahrt"), - dt + td(days=+7) if dt == self._easter_sunday + td(days=-3) else dt, + _timedelta(dt, +7) if dt == _timedelta(self._easter_sunday, -3) else dt, ) self._add_good_friday(tr("Karfreitag")) diff --git a/holidays/financial/ny_stock_exchange.py b/holidays/financial/ny_stock_exchange.py index 89badf3d0..4d2c899d9 100644 --- a/holidays/financial/ny_stock_exchange.py +++ b/holidays/financial/ny_stock_exchange.py @@ -11,9 +11,22 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td -from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC +from holidays.calendars.gregorian import ( + JAN, + FEB, + MAR, + APR, + MAY, + JUN, + JUL, + AUG, + SEP, + OCT, + NOV, + DEC, + _timedelta, +) from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays from holidays.observed_holiday_base import ObservedHolidayBase, SAT_TO_PREV_FRI, SUN_TO_NEXT_MON @@ -114,7 +127,7 @@ def _populate(self, year): # Beginning of WWI. begin = date(year, JUL, 31) end = date(year, NOV, 27) - for dt in (begin + td(days=n) for n in range((end - begin).days + 1)): + for dt in (_timedelta(begin, n) for n in range((end - begin).days + 1)): if self._is_weekend(dt) or dt in self: continue self._add_holiday("World War I", dt) @@ -122,7 +135,7 @@ def _populate(self, year): begin = date(year, JUN, 12) end = date(year, DEC, 24) # Wednesday special holiday. - for dt in (begin + td(days=n) for n in range(0, (end - begin).days + 1, 7)): + for dt in (_timedelta(begin, n) for n in range(0, (end - begin).days + 1, 7)): self._add_holiday("Paper Crisis", dt) diff --git a/holidays/groups/chinese.py b/holidays/groups/chinese.py index abd93e515..c40a9df0c 100644 --- a/holidays/groups/chinese.py +++ b/holidays/groups/chinese.py @@ -11,11 +11,10 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from typing import Optional, Tuple from holidays.calendars import _ChineseLunisolar -from holidays.calendars.gregorian import APR +from holidays.calendars.gregorian import APR, _timedelta class ChineseCalendarHolidays: @@ -61,7 +60,7 @@ def _add_chinese_calendar_holiday( dt, is_estimated = dt_estimated if days_delta != 0: - dt += td(days=days_delta) + dt = _timedelta(dt, days_delta) return self._add_holiday( self.tr(estimated_label) % self.tr(name) diff --git a/holidays/groups/christian.py b/holidays/groups/christian.py index ac61b7a9a..c190ddc95 100644 --- a/holidays/groups/christian.py +++ b/holidays/groups/christian.py @@ -11,11 +11,10 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from dateutil.easter import EASTER_ORTHODOX, EASTER_WESTERN, easter -from holidays.calendars.gregorian import GREGORIAN_CALENDAR, JAN, DEC +from holidays.calendars.gregorian import GREGORIAN_CALENDAR, JAN, DEC, _timedelta from holidays.calendars.julian import JULIAN_CALENDAR from holidays.calendars.julian_revised import JULIAN_REVISED_CALENDAR @@ -123,7 +122,7 @@ def _add_ascension_thursday(self, name) -> date: Day, or sometimes Holy Thursday. https://en.wikipedia.org/wiki/Feast_of_the_Ascension """ - return self._add_holiday(name, self._easter_sunday + td(days=+39)) + return self._add_holiday(name, _timedelta(self._easter_sunday, +39)) def _add_ash_monday(self, name) -> date: """ @@ -133,7 +132,7 @@ def _add_ash_monday(self, name) -> date: or Green Monday. The first day of Great Lent. https://en.wikipedia.org/wiki/Clean_Monday """ - return self._add_holiday(name, self._easter_sunday + td(days=-48)) + return self._add_holiday(name, _timedelta(self._easter_sunday, -48)) def _add_ash_wednesday(self, name) -> date: """ @@ -142,7 +141,7 @@ def _add_ash_wednesday(self, name) -> date: A holy day of prayer and fasting. It marks the beginning of Lent. https://en.wikipedia.org/wiki/Ash_Wednesday """ - return self._add_holiday(name, self._easter_sunday + td(days=-46)) + return self._add_holiday(name, _timedelta(self._easter_sunday, -46)) def _add_assumption_of_mary_day(self, name, calendar=None) -> date: """ @@ -182,7 +181,7 @@ def _add_carnival_monday(self, name) -> date: the liturgical season of Lent. https://en.wikipedia.org/wiki/Carnival """ - return self._add_holiday(name, self._easter_sunday + td(days=-48)) + return self._add_holiday(name, _timedelta(self._easter_sunday, -48)) def _add_carnival_tuesday(self, name) -> date: """ @@ -192,7 +191,7 @@ def _add_carnival_tuesday(self, name) -> date: the liturgical season of Lent. https://en.wikipedia.org/wiki/Carnival """ - return self._add_holiday(name, self._easter_sunday + td(days=-47)) + return self._add_holiday(name, _timedelta(self._easter_sunday, -47)) def _add_christmas_day(self, name, calendar=None) -> date: """ @@ -212,7 +211,7 @@ def _add_christmas_day_two(self, name, calendar=None) -> date: https://en.wikipedia.org/wiki/Boxing_Day https://en.wikipedia.org/wiki/Christmas """ - return self._add_holiday(name, self.__get_christmas_day(calendar) + td(days=+1)) + return self._add_holiday(name, _timedelta(self.__get_christmas_day(calendar), +1)) def _add_christmas_day_three(self, name, calendar=None) -> date: """ @@ -221,7 +220,7 @@ def _add_christmas_day_three(self, name, calendar=None) -> date: A holiday celebrated 2 days after Christmas Day (in some countries). https://en.wikipedia.org/wiki/Christmas """ - return self._add_holiday(name, self.__get_christmas_day(calendar) + td(days=+2)) + return self._add_holiday(name, _timedelta(self.__get_christmas_day(calendar), +2)) def _add_christmas_eve(self, name, calendar=None) -> date: """ @@ -231,7 +230,7 @@ def _add_christmas_eve(self, name, calendar=None) -> date: the festival commemorating the birth of Jesus Christ. https://en.wikipedia.org/wiki/Christmas_Eve """ - return self._add_holiday(name, self.__get_christmas_day(calendar) + td(days=-1)) + return self._add_holiday(name, _timedelta(self.__get_christmas_day(calendar), -1)) def _add_corpus_christi_day(self, name) -> date: """ @@ -243,7 +242,7 @@ def _add_corpus_christi_day(self, name) -> date: of Jesus Christ in the elements of the Eucharist. https://en.wikipedia.org/wiki/Feast_of_Corpus_Christi """ - return self._add_holiday(name, self._easter_sunday + td(days=+60)) + return self._add_holiday(name, _timedelta(self._easter_sunday, +60)) def _add_easter_monday(self, name, calendar=None) -> date: """ @@ -254,7 +253,7 @@ def _add_easter_monday(self, name, calendar=None) -> date: some countries. https://en.wikipedia.org/wiki/Easter_Monday """ - return self._add_holiday(name, self.__get_easter_sunday(calendar) + td(days=+1)) + return self._add_holiday(name, _timedelta(self.__get_easter_sunday(calendar), +1)) def _add_easter_sunday(self, name, calendar=None) -> date: """ @@ -294,7 +293,7 @@ def _add_good_friday(self, name, calendar=None) -> date: Great Friday, Great and Holy Friday. https://en.wikipedia.org/wiki/Good_Friday """ - return self._add_holiday(name, self.__get_easter_sunday(calendar) + td(days=-2)) + return self._add_holiday(name, _timedelta(self.__get_easter_sunday(calendar), -2)) def _add_holy_saturday(self, name) -> date: """ @@ -303,7 +302,7 @@ def _add_holy_saturday(self, name) -> date: Great and Holy Saturday is a day between Good Friday and Easter Sunday. https://en.wikipedia.org/wiki/Holy_Saturday """ - return self._add_holiday(name, self._easter_sunday + td(days=-1)) + return self._add_holiday(name, _timedelta(self._easter_sunday, -1)) def _add_holy_thursday(self, name) -> date: """ @@ -314,7 +313,7 @@ def _add_holy_thursday(self, name) -> date: Jesus Christ with the Apostles, as described in the canonical gospels. https://en.wikipedia.org/wiki/Maundy_Thursday """ - return self._add_holiday(name, self._easter_sunday + td(days=-3)) + return self._add_holiday(name, _timedelta(self._easter_sunday, -3)) def _add_immaculate_conception_day(self, name) -> date: """ @@ -345,7 +344,7 @@ def _add_palm_sunday(self, name) -> date: Palm Sunday marks the first day of Holy Week. https://en.wikipedia.org/wiki/Palm_Sunday """ - return self._add_holiday(name, self._easter_sunday + td(days=-7)) + return self._add_holiday(name, _timedelta(self._easter_sunday, -7)) def _add_rejoicing_day(self, name) -> date: """ @@ -356,7 +355,7 @@ def _add_rejoicing_day(self, name) -> date: Pascha (Easter).In Ukrainian tradition it is called Provody. https://en.wikipedia.org/wiki/Radonitsa """ - return self._add_holiday(name, self._easter_sunday + td(days=+9)) + return self._add_holiday(name, _timedelta(self._easter_sunday, +9)) def _add_saint_georges_day(self, name) -> date: """ @@ -418,7 +417,7 @@ def _add_whit_monday(self, name) -> date: https://en.wikipedia.org/wiki/Pentecost https://en.wikipedia.org/wiki/Whit_Monday """ - return self._add_holiday(name, self._easter_sunday + td(days=+50)) + return self._add_holiday(name, _timedelta(self._easter_sunday, +50)) def _add_whit_sunday(self, name) -> date: """ @@ -430,4 +429,4 @@ def _add_whit_sunday(self, name) -> date: Feast of Weeks. https://en.wikipedia.org/wiki/Pentecost """ - return self._add_holiday(name, self._easter_sunday + td(days=+49)) + return self._add_holiday(name, _timedelta(self._easter_sunday, +49)) diff --git a/holidays/groups/islamic.py b/holidays/groups/islamic.py index 5af3958fa..22e52055c 100644 --- a/holidays/groups/islamic.py +++ b/holidays/groups/islamic.py @@ -11,10 +11,10 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from typing import Iterable, Set, Tuple from holidays.calendars import _IslamicLunar +from holidays.calendars.gregorian import _timedelta class IslamicHolidays: @@ -264,7 +264,7 @@ def _add_islamic_calendar_holiday( estimated_label = getattr(self, "estimated_label", "%s (estimated)") for dt, is_estimated in dates: if days_delta != 0: - dt += td(days=days_delta) + dt = _timedelta(dt, days_delta) dt = self._add_holiday( self.tr(estimated_label) % self.tr(name) if is_estimated else name, dt diff --git a/holidays/groups/persian.py b/holidays/groups/persian.py index 1e30f94f7..15f623c11 100644 --- a/holidays/groups/persian.py +++ b/holidays/groups/persian.py @@ -11,9 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from typing import Optional +from holidays.calendars.gregorian import _timedelta from holidays.calendars.persian import _Persian @@ -142,5 +142,5 @@ def _add_persian_calendar_holiday( if dt is None: return None if days_delta != 0: - dt += td(days=days_delta) + dt = _timedelta(dt, days_delta) return self._add_holiday(name, dt) diff --git a/holidays/holiday_base.py b/holidays/holiday_base.py index 69fe8fb40..fc5dd1c75 100644 --- a/holidays/holiday_base.py +++ b/holidays/holiday_base.py @@ -31,6 +31,7 @@ FRI, SAT, SUN, + _timedelta, _get_nth_weekday_from, _get_nth_weekday_of_month, DAYS, @@ -479,8 +480,10 @@ def __getattr__(self, name): ): return lambda name: self._add_holiday( name, - self._easter_sunday - + timedelta(days=+int(days) if delta_direction == "past" else -int(days)), + _timedelta( + self._easter_sunday, + +int(days) if delta_direction == "past" else -int(days), + ), ) # Handle day(s) of patterns (e.g., @@ -500,13 +503,15 @@ def __getattr__(self, name): ): return lambda name: self._add_holiday( name, - _get_nth_weekday_of_month( - -1 if number == "last" else int(number[0]), - WEEKDAYS[weekday], - MONTHS[month], - self._year, - ) - + timedelta(days=+int(days) if delta_direction == "past" else -int(days)), + _timedelta( + _get_nth_weekday_of_month( + -1 if number == "last" else int(number[0]), + WEEKDAYS[weekday], + MONTHS[month], + self._year, + ), + +int(days) if delta_direction == "past" else -int(days), + ), ) # Handle patterns (e.g., @@ -557,7 +562,7 @@ def __getitem__(self, key: DateLike) -> Any: days_in_range = [] for delta_days in range(0, date_diff.days, step): - day = start + timedelta(days=delta_days) + day = _timedelta(start, delta_days) if day in self: days_in_range.append(day) @@ -963,9 +968,9 @@ def get_nth_workday(self, key: DateLike, n: int) -> date: direction = +1 if n > 0 else -1 dt = self.__keytransform__(key) for _ in range(abs(n)): - dt += timedelta(days=direction) + dt = _timedelta(dt, direction) while not self.is_workday(dt): - dt += timedelta(days=direction) + dt = _timedelta(dt, direction) return dt def get_workdays_number(self, key1: DateLike, key2: DateLike) -> int: @@ -977,9 +982,7 @@ def get_workdays_number(self, key1: DateLike, key2: DateLike) -> int: if dt1 > dt2: dt1, dt2 = dt2, dt1 - return sum( - self.is_workday(dt1 + timedelta(days=n)) for n in range(1, (dt2 - dt1).days + 1) - ) + return sum(self.is_workday(_timedelta(dt1, n)) for n in range(1, (dt2 - dt1).days + 1)) def is_workday(self, key: DateLike) -> bool: """Return True if date is a working day (not a holiday or a weekend).""" diff --git a/holidays/observed_holiday_base.py b/holidays/observed_holiday_base.py index 2d18ce6df..2e8704cf6 100644 --- a/holidays/observed_holiday_base.py +++ b/holidays/observed_holiday_base.py @@ -11,10 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from typing import Dict, Optional, Tuple, Set -from holidays.calendars.gregorian import MON, TUE, WED, THU, FRI, SAT, SUN +from holidays.calendars.gregorian import MON, TUE, WED, THU, FRI, SAT, SUN, _timedelta from holidays.holiday_base import DateArg, HolidayBase @@ -106,10 +105,10 @@ def _is_observed(self, *args, **kwargs) -> bool: return self._observed_since is None or self._year >= self._observed_since def _get_next_workday(self, dt: date, delta: int = +1) -> date: - dt_work = dt + td(days=delta) + dt_work = _timedelta(dt, delta) while dt_work.year == self._year: if dt_work in self or self._is_weekend(dt_work): # type: ignore[operator] - dt_work += td(days=delta) + dt_work = _timedelta(dt_work, delta) else: return dt_work return dt @@ -120,7 +119,7 @@ def _get_observed_date(self, dt: date, rule: ObservedRule) -> date: if abs(delta) == 7: dt = self._get_next_workday(dt, delta // 7) else: - dt += td(days=delta) + dt = _timedelta(dt, delta) return dt def _add_observed( diff --git a/tests/calendars/test_gregorian.py b/tests/calendars/test_gregorian.py index 1be8d0923..f0d775a47 100644 --- a/tests/calendars/test_gregorian.py +++ b/tests/calendars/test_gregorian.py @@ -10,12 +10,13 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -import unittest +from datetime import date +from unittest import TestCase -from holidays.calendars.gregorian import TUE, SAT, _get_nth_weekday_of_month +from holidays.calendars.gregorian import TUE, SAT, _timedelta, _get_nth_weekday_of_month -class TestGregorianCalendar(unittest.TestCase): +class TestGregorianCalendar(TestCase): def test_get_nth_weekday_of_month(self): year = 2023 # The first Tuesdays of 2023. @@ -27,3 +28,19 @@ def test_get_nth_weekday_of_month(self): for month, day in enumerate((28, 25, 25, 29, 27, 24, 29, 26, 30, 28, 25, 30), 1): last_friday = _get_nth_weekday_of_month(-1, SAT, month, year) self.assertEqual(last_friday.day, day) + + def test_delta_days(self): + for ymd1, ymd2 in ( + ((2023, 1, 1), (2023, 1, 6)), + ((2023, 1, 31), (2023, 2, 5)), + ((2023, 2, 24), (2023, 3, 1)), + ((2023, 2, 26), (2023, 3, 3)), + ((2024, 1, 1), (2024, 1, 6)), + ((2024, 1, 31), (2024, 2, 5)), + ((2024, 2, 24), (2024, 2, 29)), + ((2024, 2, 26), (2024, 3, 2)), + ): + dt1 = date(*ymd1) + dt2 = date(*ymd2) + self.assertEqual(_timedelta(dt1, +5), dt2) + self.assertEqual(_timedelta(dt2, -5), dt1) diff --git a/tests/countries/test_pakistan.py b/tests/countries/test_pakistan.py index e5d29971f..f6021992a 100644 --- a/tests/countries/test_pakistan.py +++ b/tests/countries/test_pakistan.py @@ -11,9 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from unittest import TestCase +from holidays.calendars.gregorian import _timedelta from holidays.countries.pakistan import Pakistan, PK, PAK from tests.common import CommonCountryTests @@ -75,8 +75,8 @@ def test_eid_ul_fitr(self): date(2023, 4, 22), ): self.assertHoliday(dt) - self.assertHoliday(dt + td(days=+1)) - self.assertHoliday(dt + td(days=+2)) + self.assertHoliday(_timedelta(dt, +1)) + self.assertHoliday(_timedelta(dt, +2)) self.assertIn(name, self.holidays.get(dt)) def test_eid_ul_adha(self): @@ -98,8 +98,8 @@ def test_eid_ul_adha(self): date(2023, 6, 29), ): self.assertHoliday(dt) - self.assertHoliday(dt + td(days=+1)) - self.assertHoliday(dt + td(days=+2)) + self.assertHoliday(_timedelta(dt, +1)) + self.assertHoliday(_timedelta(dt, +2)) self.assertIn(name, self.holidays.get(dt)) def test_eid_milad_un_nabi(self): @@ -142,7 +142,7 @@ def test_ashura(self): date(2023, 7, 28), ): self.assertHoliday(dt) - self.assertHoliday(dt + td(days=-1)) + self.assertHoliday(_timedelta(dt, -1)) self.assertIn(name, self.holidays.get(dt)) def test_2002(self): diff --git a/tests/countries/test_turkey.py b/tests/countries/test_turkey.py index d2f6ada9c..cdd11a390 100644 --- a/tests/countries/test_turkey.py +++ b/tests/countries/test_turkey.py @@ -11,9 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from unittest import TestCase +from holidays.calendars.gregorian import _timedelta from holidays.constants import HALF_DAY, PUBLIC from holidays.countries.turkey import Turkey, TR, TUR from tests.common import CommonCountryTests @@ -96,8 +96,10 @@ def test_eid_al_fitr(self): (2023, 4, 21), ): dt = date(*ymd) - self.assertHolidayName(name, dt, dt + td(days=+1), dt + td(days=+2)) - self.assertHolidayName(f"{name} (saat 13.00'ten)", half_day_holidays, dt + td(days=-1)) + self.assertHolidayName(name, dt, _timedelta(dt, +1), _timedelta(dt, +2)) + self.assertHolidayName( + f"{name} (saat 13.00'ten)", half_day_holidays, _timedelta(dt, -1) + ) def test_eid_al_adha(self): name = "Kurban Bayramı" @@ -114,8 +116,12 @@ def test_eid_al_adha(self): (2023, 6, 28), ): dt = date(*ymd) - self.assertHolidayName(name, dt, dt + td(days=+1), dt + td(days=+2), dt + td(days=+3)) - self.assertHolidayName(f"{name} (saat 13.00'ten)", half_day_holidays, dt + td(days=-1)) + self.assertHolidayName( + name, dt, _timedelta(dt, +1), _timedelta(dt, +2), _timedelta(dt, +3) + ) + self.assertHolidayName( + f"{name} (saat 13.00'ten)", half_day_holidays, _timedelta(dt, -1) + ) def test_2022(self): self.assertHolidays( diff --git a/tests/countries/test_vietnam.py b/tests/countries/test_vietnam.py index 958fb4181..e8fe354fd 100644 --- a/tests/countries/test_vietnam.py +++ b/tests/countries/test_vietnam.py @@ -11,9 +11,9 @@ # License: MIT (see LICENSE file) from datetime import date -from datetime import timedelta as td from unittest import TestCase +from holidays.calendars.gregorian import _timedelta from holidays.countries.vietnam import Vietnam, VN, VNM from tests.common import CommonCountryTests @@ -38,7 +38,7 @@ def test_first_day_of_january(self): ) def test_lunar_new_year(self): - for dt in ( + for dts in ( (1997, 2, 7), (2008, 2, 7), (2009, 1, 26), @@ -56,12 +56,13 @@ def test_lunar_new_year(self): (2021, 2, 12), (2022, 2, 1), ): - self.assertHolidayName("Vietnamese New Year's Eve", date(*dt) + td(days=-1)) - self.assertHolidayName("Vietnamese New Year", date(*dt)) - self.assertHolidayName("The second day of Tet Holiday", date(*dt) + td(days=+1)) - self.assertHolidayName("The third day of Tet Holiday", date(*dt) + td(days=+2)) - self.assertHolidayName("The forth day of Tet Holiday", date(*dt) + td(days=+3)) - self.assertHolidayName("The fifth day of Tet Holiday", date(*dt) + td(days=+4)) + dt = date(*dts) + self.assertHolidayName("Vietnamese New Year's Eve", _timedelta(dt, -1)) + self.assertHolidayName("Vietnamese New Year", dt) + self.assertHolidayName("The second day of Tet Holiday", _timedelta(dt, +1)) + self.assertHolidayName("The third day of Tet Holiday", _timedelta(dt, +2)) + self.assertHolidayName("The forth day of Tet Holiday", _timedelta(dt, +3)) + self.assertHolidayName("The fifth day of Tet Holiday", _timedelta(dt, +4)) def test_king_hung_day(self): self.assertHolidayName( From d22c5df71925f26572d62129ecb0d3fc13779bd9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 May 2024 17:52:18 -0700 Subject: [PATCH 04/10] Update pre-commit hooks (#1790) Co-authored-by: arkid15r <2201626+arkid15r@users.noreply.github.com> --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6a4b48024..7bfc5023b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,7 +19,7 @@ repos: - rst - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.3 + rev: v0.4.4 hooks: - id: ruff - id: ruff-format From 353d86df95c2d10207ed9dfaeaea31dd923c22ee Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Wed, 15 May 2024 19:35:28 +0300 Subject: [PATCH 05/10] Update Hong Kong holidays (#1767) Co-authored-by: Arkadii Yakovets --- README.rst | 2 +- docs/source/index.rst | 1 + docs/source/mixins.rst | 4 + holidays/calendars/gregorian.py | 5 + holidays/countries/hongkong.py | 522 +++++++++--- holidays/mixins.py | 31 + snapshots/countries/HK_COMMON.json | 721 +++++++++-------- tests/countries/test_hongkong.py | 1216 +++++++++++++++++++++++++--- 8 files changed, 1926 insertions(+), 576 deletions(-) create mode 100644 docs/source/mixins.rst create mode 100644 holidays/mixins.py diff --git a/README.rst b/README.rst index 1851c04b7..4d36e38b8 100644 --- a/README.rst +++ b/README.rst @@ -474,7 +474,7 @@ All other default values are highlighted with bold: - HK - - - - + - OPTIONAL * - Hungary - HU - diff --git a/docs/source/index.rst b/docs/source/index.rst index aa65c10fb..91c594407 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -18,6 +18,7 @@ examples contributing api + mixins Supported Entities changelog genindex diff --git a/docs/source/mixins.rst b/docs/source/mixins.rst new file mode 100644 index 000000000..fb80d2e37 --- /dev/null +++ b/docs/source/mixins.rst @@ -0,0 +1,4 @@ +Mixins +====== + +.. automodule:: holidays.mixins diff --git a/holidays/calendars/gregorian.py b/holidays/calendars/gregorian.py index 837967b64..50ecdfaaa 100644 --- a/holidays/calendars/gregorian.py +++ b/holidays/calendars/gregorian.py @@ -29,6 +29,11 @@ WEEKDAYS = {w: i for i, w in enumerate(("mon", "tue", "wed", "thu", "fri", "sat", "sun"))} +# Holiday names. +CHRISTMAS = "christmas" +WINTER_SOLSTICE = "winter_solstice" + + def _timedelta(dt: date, days: int = 0) -> date: """ Return date that is `days` days after (days > 0) or before (days < 0) specified date. diff --git a/holidays/countries/hongkong.py b/holidays/countries/hongkong.py index ea2d23a4b..4bb0651b8 100644 --- a/holidays/countries/hongkong.py +++ b/holidays/countries/hongkong.py @@ -11,29 +11,35 @@ # License: MIT (see LICENSE file) from datetime import date -from typing import Optional +from typing import Tuple from holidays.calendars.gregorian import ( + JAN, + MAY, + JUN, JUL, AUG, SEP, - MON, + OCT, + DEC, SUN, _timedelta, - _get_nth_weekday_of_month, + CHRISTMAS, + WINTER_SOLSTICE, ) +from holidays.constants import OPTIONAL, PUBLIC from holidays.groups import ( ChineseCalendarHolidays, ChristianHolidays, InternationalHolidays, StaticHolidays, ) +from holidays.mixins import PreferredDiscretionaryHolidays from holidays.observed_holiday_base import ( ObservedHolidayBase, - WORKDAY_TO_NEXT_WORKDAY, - MON_TO_NEXT_TUE, - SUN_TO_NEXT_WORKDAY, SAT_SUN_TO_NEXT_WORKDAY, + SUN_TO_NEXT_WORKDAY, + WORKDAY_TO_NEXT_WORKDAY, ) @@ -42,176 +48,386 @@ class HongKong( ChineseCalendarHolidays, ChristianHolidays, InternationalHolidays, + PreferredDiscretionaryHolidays, StaticHolidays, ): """ - https://en.wikipedia.org/wiki/Public_holidays_in_Hong_Kong - Holidays for 2007–2023 (government source): - https://www.gov.hk/en/about/abouthk/holiday/index.htm + References: + - `English Wikipedia `_ + - `Chinese Wikipedia `_ + Statutory Holidays: + - `Section 39 of Cap. 57 Employment Ordinance `_ # noqa: E501 + - `Holidays for 2010-2024 `_ + General Holidays: + - `Cap. 149 General Holidays Ordinance `_ # noqa: E501 + - `Holidays for 2007–2024 `_ """ country = "HK" - observed_label = "The day following %s" + default_preferred_discretionary_holidays = (CHRISTMAS,) + # %s(慶祝). + observed_label = "%s (observed)" + supported_categories = (OPTIONAL, PUBLIC) + weekend = {SUN} def __init__(self, *args, **kwargs): ChineseCalendarHolidays.__init__(self) ChristianHolidays.__init__(self) InternationalHolidays.__init__(self) + PreferredDiscretionaryHolidays.__init__( + self, kwargs.pop("preferred_discretionary_holidays", None) + ) StaticHolidays.__init__(self, HongKongStaticHolidays) kwargs.setdefault("observed_rule", SUN_TO_NEXT_WORKDAY) super().__init__(*args, **kwargs) - def _add_holiday(self, name: str, *args) -> Optional[date]: - dt = args if len(args) > 1 else args[0] - dt = dt if isinstance(dt, date) else date(self._year, *dt) - rule = ( - WORKDAY_TO_NEXT_WORKDAY + SAT_SUN_TO_NEXT_WORKDAY - if dt in self - else self._observed_rule - ) - is_obs, dt_observed = self._add_observed(dt, name=name, rule=rule) - return dt_observed if is_obs else super()._add_holiday(name, dt) # type: ignore[arg-type] - - def _populate_public_holidays(self): - # Current set of holidays actually valid since 1946 - if self._year <= 1945: - return None + def _add_mid_autumn(self) -> date: + # Chinese Mid-Autumn Festival. - self.weekend = {SUN} + mid_autumn_date = self._mid_autumn_festival + if self._year >= 1968: + mid_autumn_date = _timedelta(mid_autumn_date, +1) + # 中秋節翌日. + name = "The day following the Chinese Mid-Autumn Festival" + # 中秋節後第二日. + second_name = "The second day following the Chinese Mid-Autumn Festival" + else: + # 中秋節. + name = "Chinese Mid-Autumn Festival" + second_name = "The day following the Chinese Mid-Autumn Festival" - # The first day of January - self._add_new_years_day("The first day of January") + if self._is_sunday(mid_autumn_date): + if 1983 <= self._year <= 2010: + self._add_holiday("Chinese Mid-Autumn Festival", _timedelta(mid_autumn_date, -1)) + else: + self._add_holiday(second_name, _timedelta(mid_autumn_date, +1)) + else: + self._add_holiday(name, mid_autumn_date) + return mid_autumn_date - # Lunar New Year + def _add_lunar_new_year(self, day_three_start_year: int): + # Lunar New Year. + # 農曆年初一. name = "Lunar New Year's Day" + # 農曆年初一的前一日. preceding_day_lunar = "The day preceding Lunar New Year's Day" + # 農曆年初二. second_day_lunar = "The second day of Lunar New Year" + # 農曆年初三. third_day_lunar = "The third day of Lunar New Year" + # 農曆年初四. fourth_day_lunar = "The fourth day of Lunar New Year" dt_lunar_new_year = self._chinese_new_year - if self.observed: - if self._is_sunday(dt_lunar_new_year): - if self._year in {2006, 2007, 2010}: - self._add_chinese_new_years_eve(preceding_day_lunar) - else: + if self._year >= 1983: + if ( + self._is_friday(dt_lunar_new_year) + or self._is_saturday(dt_lunar_new_year) + or self._is_sunday(dt_lunar_new_year) + ): + if self._year >= 2012: self._add_chinese_new_years_day_four(fourth_day_lunar) - else: + else: + self._add_chinese_new_years_eve(preceding_day_lunar) + + if not self._is_sunday(dt_lunar_new_year): self._add_chinese_new_years_day(name) - if self._is_saturday(dt_lunar_new_year): - self._add_chinese_new_years_day_four(fourth_day_lunar) - else: + + if not self._is_saturday(dt_lunar_new_year): self._add_chinese_new_years_day_two(second_day_lunar) - if self._is_friday(dt_lunar_new_year): - self._add_chinese_new_years_day_four(fourth_day_lunar) - else: + + if not self._is_friday(dt_lunar_new_year): self._add_chinese_new_years_day_three(third_day_lunar) else: self._add_chinese_new_years_day(name) self._add_chinese_new_years_day_two(second_day_lunar) - self._add_chinese_new_years_day_three(third_day_lunar) - - # Ching Ming Festival - name = "Ching Ming Festival" - dt_qingming = self._qingming_date - if self.observed and dt_qingming == _timedelta(self._easter_sunday, +1): - self._add_observed(dt_qingming, name=name, rule=MON_TO_NEXT_TUE) - elif dt_qingming not in { - _timedelta(self._easter_sunday, -2), - _timedelta(self._easter_sunday, -1), - }: - self._add_holiday(name, dt_qingming) - - # Easter Holiday - good_friday = "Good Friday" - easter_monday = "Easter Monday" - self._add_good_friday(good_friday) - self._add_holy_saturday(self.observed_label % good_friday) - self._add_easter_monday(easter_monday) - - if dt_qingming in { - _timedelta(self._easter_sunday, -2), - _timedelta(self._easter_sunday, -1), - }: - super()._add_holiday(name, dt_qingming) + if self._year >= day_three_start_year: + self._add_chinese_new_years_day_three(third_day_lunar) + + def _populate_public_holidays(self): + # Statutory Holidays. + + # Industrial Employment Ordinance implemented in April 1962. + if self._year <= 1962: + return None + + # The first day of January. + # 一月一日. + if self._year >= 1977: + self._add_observed(self._add_new_years_day("The first day of January")) + + self._add_lunar_new_year(day_three_start_year=1977) + + # Good Friday. + # 耶穌受難節. + if self._year >= 2028: + self._add_good_friday("Good Friday") + + # The day following Good Friday. + # 耶穌受難節翌日. + if self._year >= 2030: + self._add_holy_saturday("The day following Good Friday") + + # Easter Monday. + # 復活節星期一. + if self._year >= 2026: + self._add_easter_monday("Easter Monday") + + # Ching Ming Festival. + # 清明節. + self._add_observed(self._add_qingming_festival("Ching Ming Festival")) + # The Birthday of the Buddha. + # 佛誕. + if self._year >= 2022: + self._add_observed(self._add_chinese_birthday_of_buddha("The Birthday of the Buddha")) + + # Labour Day. + # 勞動節. if self._year >= 1999: - # The Birthday of the Buddha - self._add_chinese_birthday_of_buddha("The Birthday of the Buddha") + self._add_observed(self._add_labor_day("Labour Day")) + + # Tuen Ng Festival. + # 端午節. + self._add_observed(self._add_dragon_boat_festival("Tuen Ng Festival")) + + # Hong Kong Special Administrative Region Establishment Day. + # 香港特別行政區成立紀念日. + if self._year >= 1997: + self._add_observed( + self._add_holiday_jul_1( + "Hong Kong Special Administrative Region Establishment Day" + ) + ) - # Labour Day - self._add_labor_day("Labour Day") + mid_autumn_date = self._add_mid_autumn() - # Tuen Ng Festival - self._add_dragon_boat_festival("Tuen Ng Festival") + # Chung Yeung Festival. + # 重陽節. + if self._year >= 1977: + dt_double_ninth = self._add_double_ninth_festival("Chung Yeung Festival") + self._add_observed(dt_double_ninth) - # Hong Kong Special Administrative Region Establishment Day + # National Day. + # 國慶日. if self._year >= 1997: - self._add_holiday_jul_1("Hong Kong Special Administrative Region Establishment Day") + name = "National Day" + oct_1 = self._add_holiday_oct_1(name) + self._add_observed( + oct_1, + name=name, + rule=WORKDAY_TO_NEXT_WORKDAY + SAT_SUN_TO_NEXT_WORKDAY + if oct_1 == mid_autumn_date or oct_1 == dt_double_ninth + else SUN_TO_NEXT_WORKDAY, + ) - # Chinese Mid-Autumn Festival - name = "Chinese Mid-Autumn Festival" - mid_autumn_date = self._mid_autumn_festival - if self.observed: - # if Chinese Mid-Autumn Festival lies on Saturday - # before 1983 public holiday lies on Monday - # from 1983 to 2010 public holiday lies on same day - # since 2011 public holiday lies on Monday - if self._is_saturday(mid_autumn_date): - if 1983 <= self._year <= 2010: - self._add_mid_autumn_festival(name) - else: - self._add_holiday( - f"The second day of the {name} (Monday)", _timedelta(mid_autumn_date, +2) - ) + # Chinese Winter Solstice Festival. + # 冬節. + if WINTER_SOLSTICE in self.preferred_discretionary_holidays: + self._add_observed( + self._add_holiday("Chinese Winter Solstice Festival", self._winter_solstice_date) + ) + + if self._year >= 2024: + # 聖誕節後第一個周日. + self._add_observed( + self._add_christmas_day_two("The first weekday after Christmas Day") + ) + + # Christmas Day. + # 聖誕節. + if CHRISTMAS in self.preferred_discretionary_holidays: + self._add_observed(self._add_christmas_day("Christmas Day")) + + def _populate_optional_holidays(self): + if self._year <= 1945: + return None + + # General Holidays. + + # The first day of January. + if self._is_sunday(JAN, 1): + # 一月一日翌日. + self._add_new_years_day_two("The day following the first day of January") + else: + # 一月一日. + self._add_new_years_day("The first day of January") + + self._add_lunar_new_year(day_three_start_year=1968) + + # Ching Ming Festival. + if self._year >= 1968: + dt_qingming = self._qingming_date + if self._is_sunday(dt_qingming) or dt_qingming == _timedelta(self._easter_sunday, +1): + # 清明節翌日. + self._add_holiday( + "The day following Ching Ming Festival", _timedelta(dt_qingming, +1) + ) else: - self._add_mid_autumn_festival_day_two(f"The day following the {name}") + # 清明節. + self._add_qingming_festival("Ching Ming Festival") + + # Good Friday. + # 耶穌受難節. + self._add_good_friday("Good Friday") + + # The day following Good Friday. + # 耶穌受難節翌日. + self._add_holy_saturday("The day following Good Friday") + + # Easter Monday. + if self._year >= 1968 and dt_qingming == self._easter_sunday: + # 復活節星期一翌日. + self._add_holiday_2_days_past_easter("The day following Easter Monday") else: - self._add_mid_autumn_festival_day_two(name) + # 復活節星期一. + self._add_easter_monday("Easter Monday") - # Chung Yeung Festival - self._add_double_ninth_festival("Chung Yeung Festival") + # The Birthday of the Buddha. + if self._year >= 1999: + dt_birthday_of_buddha = self._chinese_calendar.buddha_birthday_date(self._year)[0] + if self._is_sunday(dt_birthday_of_buddha): + # 佛誕翌日. + self._add_holiday( + "The day following the Birthday of the Buddha", + _timedelta(dt_birthday_of_buddha, +1), + ) + else: + # 佛誕. + self._add_chinese_birthday_of_buddha("The Birthday of the Buddha") - # National Day - if self._year >= 1997: - self._add_holiday_oct_1("National Day") + # Labour Day. + if self._year >= 1999: + if self._is_sunday(MAY, 1): + # 勞動節翌日. + self._add_labor_day_two("The day following Labour Day") + else: + # 勞動節. + self._add_labor_day("Labour Day") + + # Tuen Ng Festival. + if self._year >= 1968: + dt_dragon_boat = self._chinese_calendar.dragon_boat_date(self._year)[0] + if self._is_sunday(dt_dragon_boat): + # 端午節翌日. + self._add_holiday( + "The day following Tuen Ng Festival", _timedelta(dt_dragon_boat, +1) + ) + else: + # 端午節. + self._add_dragon_boat_festival("Tuen Ng Festival") - if self._year <= 1998: - self._add_holiday_oct_2("National Day") + # Hong Kong Special Administrative Region Establishment Day. + if self._year >= 1997: + if self._is_sunday(JUL, 1): + # 香港特別行政區成立紀念日翌日. + self._add_holiday_jul_2( + "The day following Hong Kong Special Administrative Region Establishment Day" + ) + else: + # 香港特別行政區成立紀念日. + self._add_holiday_jul_1( + "Hong Kong Special Administrative Region Establishment Day" + ) + + mid_autumn_date = self._add_mid_autumn() + + # Chung Yeung Festival. + if self._year >= 1968: + dt_double_ninth = self._chinese_calendar.double_ninth_date(self._year)[0] + if self._is_sunday(dt_double_ninth): + # 重陽節翌日. + self._add_holiday( + "The day following Chung Yeung Festival", _timedelta(dt_double_ninth, +1) + ) + else: + # 重陽節. + self._add_double_ninth_festival("Chung Yeung Festival") - # Christmas Day + # National Day. + if self._year >= 1997: + dt = date(self._year, OCT, 1) + if self._is_sunday(dt) or dt == mid_autumn_date or dt == dt_double_ninth: + # 國慶日翌日. + self._add_holiday("The day following National Day", self._get_next_workday(dt)) + else: + # 國慶日. + self._add_holiday_oct_1("National Day") + if self._year in {1997, 1998}: + # 國慶日翌日. + self._add_holiday_oct_2("The day following National Day") + + # Christmas Day. + # 聖誕節. name = "Christmas Day" - first_after_christmas = f"The first weekday after {name}" - second_after_christmas = f"The second weekday after {name}" + # 聖誕節後第一個周日. + first_after_christmas = "The first weekday after Christmas Day" + # 聖誕節後第二個周日. + second_after_christmas = "The second weekday after Christmas Day" dt_christmas = self._christmas_day - if self.observed: - if self._is_sunday(dt_christmas): - self._add_christmas_day_two(first_after_christmas) - self._add_christmas_day_three(second_after_christmas) - elif self._is_saturday(dt_christmas): - self._add_christmas_day(name) - self._add_christmas_day_three(first_after_christmas) - else: - self._add_christmas_day(name) - self._add_christmas_day_two(first_after_christmas) + if self._is_sunday(dt_christmas): + self._add_christmas_day_two(first_after_christmas) + self._add_christmas_day_three(second_after_christmas) + elif self._is_saturday(dt_christmas): + self._add_christmas_day(name) + self._add_christmas_day_three(first_after_christmas) else: self._add_christmas_day(name) self._add_christmas_day_two(first_after_christmas) - # Previous holidays - if 1952 <= self._year <= 1997: - # Queen's Birthday (June 2nd Monday) - self._add_holiday_2nd_mon_of_jun("Queen's Birthday") + # Previous holidays. + + # Queen's Birthday. + # 英女皇壽辰. + if 1952 <= self._year <= 1996: + name = "Queen's Birthday" + if self._year >= 1983: + self._add_holiday_2nd_sat_of_jun(name) + self._add_holiday_2_days_past_2nd_sat_of_jun(name) + else: + if self._year != 1952: + self._add_holiday_apr_21(name) + else: + self._add_holiday_jun_5(name) + + if self._year <= 1967: + # Monday after Pentecost. + # 靈降臨節後星期一. + self._add_whit_monday("Monday after Pentecost") + + # National Day of the Republic of China. + # 中華民國國慶日. + self._add_holiday_2nd_mon_of_oct("National Day of the Republic of China") + + # Monday after Peace Memorial Day. + # 和平紀念日後星期一. + self._add_holiday_1_day_past_2nd_sun_of_nov("Monday after Peace Memorial Day") if self._year <= 1996: - # Anniversary of the liberation of Hong Kong (August last Monday) - self._add_holiday_last_mon_of_aug("Anniversary of the liberation of Hong Kong") - - if self._year <= 1998: - # Anniversary of the victory in the Second Sino-Japanese War - super()._add_holiday( - "Anniversary of the victory in the Second Sino-Japanese War", - _timedelta(_get_nth_weekday_of_month(-1, MON, AUG, self._year), -1), - ) + # Anniversary of the liberation of Hong Kong. + # 重光紀念日. + name = "Anniversary of the liberation of Hong Kong" + if self._year >= 1983: + self._add_holiday_last_mon_of_aug(name) + self._add_holiday_2_days_prior_last_mon_of_aug(name) + elif self._year >= 1968: + self._add_holiday_1st_mon_of_aug(name) + self._add_holiday_last_mon_of_aug(name) + else: + self._add_holiday_aug_30(name) + + @property + def _winter_solstice_date(self) -> Tuple[int, int]: + # This approximation is reliable for 1952-2099 years. + if ( + (self._year % 4 == 0 and self._year >= 1988) + or (self._year % 4 == 1 and self._year >= 2021) + or (self._year % 4 == 2 and self._year >= 2058) + or (self._year % 4 == 3 and self._year >= 2091) + ): + day = 21 + else: + day = 22 + return DEC, day class HK(HongKong): @@ -223,14 +439,56 @@ class HKG(HongKong): class HongKongStaticHolidays: + # 英國王儲查理斯王子與戴安娜婚禮. + wedding_of_charles_and_diana = "Wedding of Prince Charles and Diana" + + # 英女王伊利沙伯二世伉儷訪港的第二天. + queen_visit_hk = "Second day of Queen Elizabeth II and her husband's visit to Hong Kong" + + # 英女皇壽辰. + queen_birthday = "Queen's Birthday" + + # 香港特別行政區成立紀念日翌日. + day_following_hksar_establishment_day = ( + "The day following Hong Kong Special Administrative Region Establishment Day" + ) + + # 中國人民抗日戰爭勝利70周年紀念日. + victory_70th_anniversary = ( + "The 70th anniversary day of the victory of the Chinese " + "people's war of resistance against Japanese aggression" + ) + + # 抗日戰爭勝利紀念日. + war_victory_day = "Sino-Japanese War Victory Day" + + # 國慶日翌日. + day_following_national_day = "The day following National Day" + + # 額外公眾假期. + additional_public_holiday = "Additional public holiday" + special_public_holidays = { - 1997: (JUL, 2, "Hong Kong Special Administrative Region Establishment Day"), - 2015: ( - ( - SEP, - 3, - "The 70th anniversary day of the victory of the Chinese " - "people's war of resistance against Japanese aggression", - ) + 1981: (JUL, 29, wedding_of_charles_and_diana), + 1986: (OCT, 22, queen_visit_hk), + 1997: (JUL, 2, day_following_hksar_establishment_day), + 2015: (SEP, 3, victory_70th_anniversary), + } + + special_optional_holidays = { + 1981: (JUL, 29, wedding_of_charles_and_diana), + 1986: (OCT, 22, queen_visit_hk), + 1997: ( + (JUN, 28, queen_birthday), + (JUN, 30, queen_birthday), + (JUL, 2, day_following_hksar_establishment_day), + (AUG, 18, war_victory_day), + (OCT, 2, day_following_national_day), + ), + 1998: ( + (AUG, 17, war_victory_day), + (OCT, 2, day_following_national_day), ), + 1999: (DEC, 31, additional_public_holiday), + 2015: (SEP, 3, victory_70th_anniversary), } diff --git a/holidays/mixins.py b/holidays/mixins.py new file mode 100644 index 000000000..6a2b6f3e8 --- /dev/null +++ b/holidays/mixins.py @@ -0,0 +1,31 @@ +# 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/python-holidays +# License: MIT (see LICENSE file) + + +from typing import Tuple + + +class PreferredDiscretionaryHolidays: + """A mixin for setting preferred discretionary holidays. + + See :class:`holidays.countries.hongkong.HongKong` for an example. + """ + + default_preferred_discretionary_holidays: Tuple[str, ...] = () + """Preferred discretionary holidays defaults.""" + + def __init__(self, preferred_discretionary_holidays): + self.preferred_discretionary_holidays = set( + preferred_discretionary_holidays + if preferred_discretionary_holidays + else self.default_preferred_discretionary_holidays + ) diff --git a/snapshots/countries/HK_COMMON.json b/snapshots/countries/HK_COMMON.json index 933af641c..bac0033b9 100644 --- a/snapshots/countries/HK_COMMON.json +++ b/snapshots/countries/HK_COMMON.json @@ -1,287 +1,263 @@ { - "1950-01-02": "The day following The first day of January", + "1950-01-02": "The day following the first day of January", "1950-02-17": "Lunar New Year's Day", "1950-02-18": "The second day of Lunar New Year", - "1950-02-20": "The fourth day of Lunar New Year", - "1950-04-05": "Ching Ming Festival", "1950-04-07": "Good Friday", "1950-04-08": "The day following Good Friday", "1950-04-10": "Easter Monday", - "1950-06-19": "Tuen Ng Festival", - "1950-08-27": "Anniversary of the victory in the Second Sino-Japanese War", - "1950-08-28": "Anniversary of the liberation of Hong Kong", - "1950-09-27": "The day following the Chinese Mid-Autumn Festival", - "1950-10-19": "Chung Yeung Festival", + "1950-05-29": "Monday after Pentecost", + "1950-08-30": "Anniversary of the liberation of Hong Kong", + "1950-09-26": "Chinese Mid-Autumn Festival", + "1950-10-09": "National Day of the Republic of China", + "1950-11-13": "Monday after Peace Memorial Day", "1950-12-25": "Christmas Day", "1950-12-26": "The first weekday after Christmas Day", "1951-01-01": "The first day of January", "1951-02-06": "Lunar New Year's Day", "1951-02-07": "The second day of Lunar New Year", - "1951-02-08": "The third day of Lunar New Year", "1951-03-23": "Good Friday", "1951-03-24": "The day following Good Friday", "1951-03-26": "Easter Monday", - "1951-04-05": "Ching Ming Festival", - "1951-06-09": "Tuen Ng Festival", - "1951-08-26": "Anniversary of the victory in the Second Sino-Japanese War", - "1951-08-27": "Anniversary of the liberation of Hong Kong", - "1951-09-17": "The second day of the Chinese Mid-Autumn Festival (Monday)", - "1951-10-09": "Chung Yeung Festival", + "1951-05-14": "Monday after Pentecost", + "1951-08-30": "Anniversary of the liberation of Hong Kong", + "1951-09-15": "Chinese Mid-Autumn Festival", + "1951-10-08": "National Day of the Republic of China", + "1951-11-12": "Monday after Peace Memorial Day", "1951-12-25": "Christmas Day", "1951-12-26": "The first weekday after Christmas Day", "1952-01-01": "The first day of January", + "1952-01-27": "Lunar New Year's Day", "1952-01-28": "The second day of Lunar New Year", - "1952-01-29": "The third day of Lunar New Year", - "1952-01-30": "The fourth day of Lunar New Year", - "1952-04-04": "Ching Ming Festival", "1952-04-11": "Good Friday", "1952-04-12": "The day following Good Friday", "1952-04-14": "Easter Monday", - "1952-05-28": "Tuen Ng Festival", - "1952-06-09": "Queen's Birthday", - "1952-08-24": "Anniversary of the victory in the Second Sino-Japanese War", - "1952-08-25": "Anniversary of the liberation of Hong Kong", - "1952-10-04": "The day following the Chinese Mid-Autumn Festival", - "1952-10-27": "Chung Yeung Festival", + "1952-06-02": "Monday after Pentecost", + "1952-06-05": "Queen's Birthday", + "1952-08-30": "Anniversary of the liberation of Hong Kong", + "1952-10-03": "Chinese Mid-Autumn Festival", + "1952-10-13": "National Day of the Republic of China", + "1952-11-10": "Monday after Peace Memorial Day", "1952-12-25": "Christmas Day", "1952-12-26": "The first weekday after Christmas Day", "1953-01-01": "The first day of January", "1953-02-14": "Lunar New Year's Day", - "1953-02-16": "The third day of Lunar New Year", - "1953-02-17": "The fourth day of Lunar New Year", + "1953-02-15": "The second day of Lunar New Year", "1953-04-03": "Good Friday", "1953-04-04": "The day following Good Friday", - "1953-04-06": "The day following Ching Ming Festival", - "1953-04-07": "The day following Easter Monday", - "1953-06-08": "Queen's Birthday", - "1953-06-15": "Tuen Ng Festival", - "1953-08-30": "Anniversary of the victory in the Second Sino-Japanese War", - "1953-08-31": "Anniversary of the liberation of Hong Kong", - "1953-09-23": "The day following the Chinese Mid-Autumn Festival", - "1953-10-16": "Chung Yeung Festival", + "1953-04-06": "Easter Monday", + "1953-04-21": "Queen's Birthday", + "1953-05-25": "Monday after Pentecost", + "1953-08-30": "Anniversary of the liberation of Hong Kong", + "1953-09-22": "Chinese Mid-Autumn Festival", + "1953-10-12": "National Day of the Republic of China", + "1953-11-09": "Monday after Peace Memorial Day", "1953-12-25": "Christmas Day", "1953-12-26": "The first weekday after Christmas Day", "1954-01-01": "The first day of January", "1954-02-03": "Lunar New Year's Day", "1954-02-04": "The second day of Lunar New Year", - "1954-02-05": "The third day of Lunar New Year", - "1954-04-05": "Ching Ming Festival", "1954-04-16": "Good Friday", "1954-04-17": "The day following Good Friday", "1954-04-19": "Easter Monday", - "1954-06-05": "Tuen Ng Festival", - "1954-06-14": "Queen's Birthday", - "1954-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1954-04-21": "Queen's Birthday", + "1954-06-07": "Monday after Pentecost", "1954-08-30": "Anniversary of the liberation of Hong Kong", - "1954-09-13": "The second day of the Chinese Mid-Autumn Festival (Monday)", - "1954-10-05": "Chung Yeung Festival", + "1954-09-11": "Chinese Mid-Autumn Festival", + "1954-10-11": "National Day of the Republic of China", + "1954-11-15": "Monday after Peace Memorial Day", "1954-12-25": "Christmas Day", "1954-12-27": "The first weekday after Christmas Day", "1955-01-01": "The first day of January", "1955-01-24": "Lunar New Year's Day", "1955-01-25": "The second day of Lunar New Year", - "1955-01-26": "The third day of Lunar New Year", - "1955-04-05": "Ching Ming Festival", "1955-04-08": "Good Friday", "1955-04-09": "The day following Good Friday", "1955-04-11": "Easter Monday", - "1955-06-13": "Queen's Birthday", - "1955-06-24": "Tuen Ng Festival", - "1955-08-28": "Anniversary of the victory in the Second Sino-Japanese War", - "1955-08-29": "Anniversary of the liberation of Hong Kong", - "1955-10-01": "The day following the Chinese Mid-Autumn Festival", - "1955-10-24": "Chung Yeung Festival", + "1955-04-21": "Queen's Birthday", + "1955-05-30": "Monday after Pentecost", + "1955-08-30": "Anniversary of the liberation of Hong Kong", + "1955-09-30": "Chinese Mid-Autumn Festival", + "1955-10-10": "National Day of the Republic of China", + "1955-11-14": "Monday after Peace Memorial Day", "1955-12-26": "The first weekday after Christmas Day", "1955-12-27": "The second weekday after Christmas Day", - "1956-01-02": "The day following The first day of January", + "1956-01-02": "The day following the first day of January", + "1956-02-12": "Lunar New Year's Day", "1956-02-13": "The second day of Lunar New Year", - "1956-02-14": "The third day of Lunar New Year", - "1956-02-15": "The fourth day of Lunar New Year", "1956-03-30": "Good Friday", "1956-03-31": "The day following Good Friday", "1956-04-02": "Easter Monday", - "1956-04-04": "Ching Ming Festival", - "1956-06-11": "Queen's Birthday", - "1956-06-13": "Tuen Ng Festival", - "1956-08-26": "Anniversary of the victory in the Second Sino-Japanese War", - "1956-08-27": "Anniversary of the liberation of Hong Kong", - "1956-09-20": "The day following the Chinese Mid-Autumn Festival", - "1956-10-12": "Chung Yeung Festival", + "1956-04-21": "Queen's Birthday", + "1956-05-21": "Monday after Pentecost", + "1956-08-30": "Anniversary of the liberation of Hong Kong", + "1956-09-19": "Chinese Mid-Autumn Festival", + "1956-10-08": "National Day of the Republic of China", + "1956-11-12": "Monday after Peace Memorial Day", "1956-12-25": "Christmas Day", "1956-12-26": "The first weekday after Christmas Day", "1957-01-01": "The first day of January", "1957-01-31": "Lunar New Year's Day", "1957-02-01": "The second day of Lunar New Year", - "1957-02-02": "The third day of Lunar New Year", - "1957-04-05": "Ching Ming Festival", "1957-04-19": "Good Friday", "1957-04-20": "The day following Good Friday", + "1957-04-21": "Queen's Birthday", "1957-04-22": "Easter Monday", - "1957-06-03": "The day following Tuen Ng Festival", - "1957-06-10": "Queen's Birthday", - "1957-08-25": "Anniversary of the victory in the Second Sino-Japanese War", - "1957-08-26": "Anniversary of the liberation of Hong Kong", + "1957-06-10": "Monday after Pentecost", + "1957-08-30": "Anniversary of the liberation of Hong Kong", "1957-09-09": "The day following the Chinese Mid-Autumn Festival", - "1957-10-31": "Chung Yeung Festival", + "1957-10-14": "National Day of the Republic of China", + "1957-11-11": "Monday after Peace Memorial Day", "1957-12-25": "Christmas Day", "1957-12-26": "The first weekday after Christmas Day", "1958-01-01": "The first day of January", "1958-02-18": "Lunar New Year's Day", "1958-02-19": "The second day of Lunar New Year", - "1958-02-20": "The third day of Lunar New Year", "1958-04-04": "Good Friday", - "1958-04-05": "Ching Ming Festival; The day following Good Friday", + "1958-04-05": "The day following Good Friday", "1958-04-07": "Easter Monday", - "1958-06-09": "Queen's Birthday", - "1958-06-21": "Tuen Ng Festival", - "1958-08-24": "Anniversary of the victory in the Second Sino-Japanese War", - "1958-08-25": "Anniversary of the liberation of Hong Kong", - "1958-09-29": "The second day of the Chinese Mid-Autumn Festival (Monday)", - "1958-10-21": "Chung Yeung Festival", + "1958-04-21": "Queen's Birthday", + "1958-05-26": "Monday after Pentecost", + "1958-08-30": "Anniversary of the liberation of Hong Kong", + "1958-09-27": "Chinese Mid-Autumn Festival", + "1958-10-13": "National Day of the Republic of China", + "1958-11-10": "Monday after Peace Memorial Day", "1958-12-25": "Christmas Day", "1958-12-26": "The first weekday after Christmas Day", "1959-01-01": "The first day of January", + "1959-02-08": "Lunar New Year's Day", "1959-02-09": "The second day of Lunar New Year", - "1959-02-10": "The third day of Lunar New Year", - "1959-02-11": "The fourth day of Lunar New Year", "1959-03-27": "Good Friday", "1959-03-28": "The day following Good Friday", "1959-03-30": "Easter Monday", - "1959-04-06": "The day following Ching Ming Festival", - "1959-06-08": "Queen's Birthday", - "1959-06-10": "Tuen Ng Festival", - "1959-08-30": "Anniversary of the victory in the Second Sino-Japanese War", - "1959-08-31": "Anniversary of the liberation of Hong Kong", - "1959-09-18": "The day following the Chinese Mid-Autumn Festival", - "1959-10-10": "Chung Yeung Festival", + "1959-04-21": "Queen's Birthday", + "1959-05-18": "Monday after Pentecost", + "1959-08-30": "Anniversary of the liberation of Hong Kong", + "1959-09-17": "Chinese Mid-Autumn Festival", + "1959-10-12": "National Day of the Republic of China", + "1959-11-09": "Monday after Peace Memorial Day", "1959-12-25": "Christmas Day", "1959-12-26": "The first weekday after Christmas Day", "1960-01-01": "The first day of January", "1960-01-28": "Lunar New Year's Day", "1960-01-29": "The second day of Lunar New Year", - "1960-01-30": "The third day of Lunar New Year", - "1960-04-04": "Ching Ming Festival", "1960-04-15": "Good Friday", "1960-04-16": "The day following Good Friday", "1960-04-18": "Easter Monday", - "1960-05-30": "The day following Tuen Ng Festival", - "1960-06-13": "Queen's Birthday", - "1960-08-28": "Anniversary of the victory in the Second Sino-Japanese War", - "1960-08-29": "Anniversary of the liberation of Hong Kong", - "1960-10-06": "The day following the Chinese Mid-Autumn Festival", - "1960-10-28": "Chung Yeung Festival", + "1960-04-21": "Queen's Birthday", + "1960-06-06": "Monday after Pentecost", + "1960-08-30": "Anniversary of the liberation of Hong Kong", + "1960-10-05": "Chinese Mid-Autumn Festival", + "1960-10-10": "National Day of the Republic of China", + "1960-11-14": "Monday after Peace Memorial Day", "1960-12-26": "The first weekday after Christmas Day", "1960-12-27": "The second weekday after Christmas Day", - "1961-01-02": "The day following The first day of January", + "1961-01-02": "The day following the first day of January", "1961-02-15": "Lunar New Year's Day", "1961-02-16": "The second day of Lunar New Year", - "1961-02-17": "The third day of Lunar New Year", "1961-03-31": "Good Friday", "1961-04-01": "The day following Good Friday", "1961-04-03": "Easter Monday", - "1961-04-05": "Ching Ming Festival", - "1961-06-12": "Queen's Birthday", - "1961-06-17": "Tuen Ng Festival", - "1961-08-27": "Anniversary of the victory in the Second Sino-Japanese War", - "1961-08-28": "Anniversary of the liberation of Hong Kong", + "1961-04-21": "Queen's Birthday", + "1961-05-22": "Monday after Pentecost", + "1961-08-30": "Anniversary of the liberation of Hong Kong", "1961-09-25": "The day following the Chinese Mid-Autumn Festival", - "1961-10-18": "Chung Yeung Festival", + "1961-10-09": "National Day of the Republic of China", + "1961-11-13": "Monday after Peace Memorial Day", "1961-12-25": "Christmas Day", "1961-12-26": "The first weekday after Christmas Day", "1962-01-01": "The first day of January", "1962-02-05": "Lunar New Year's Day", "1962-02-06": "The second day of Lunar New Year", - "1962-02-07": "The third day of Lunar New Year", - "1962-04-05": "Ching Ming Festival", "1962-04-20": "Good Friday", - "1962-04-21": "The day following Good Friday", + "1962-04-21": "Queen's Birthday; The day following Good Friday", "1962-04-23": "Easter Monday", - "1962-06-06": "Tuen Ng Festival", - "1962-06-11": "Queen's Birthday", - "1962-08-26": "Anniversary of the victory in the Second Sino-Japanese War", - "1962-08-27": "Anniversary of the liberation of Hong Kong", - "1962-09-14": "The day following the Chinese Mid-Autumn Festival", - "1962-10-08": "The day following Chung Yeung Festival", + "1962-06-11": "Monday after Pentecost", + "1962-08-30": "Anniversary of the liberation of Hong Kong", + "1962-09-13": "Chinese Mid-Autumn Festival", + "1962-10-08": "National Day of the Republic of China", + "1962-11-12": "Monday after Peace Memorial Day", "1962-12-25": "Christmas Day", "1962-12-26": "The first weekday after Christmas Day", "1963-01-01": "The first day of January", "1963-01-25": "Lunar New Year's Day", "1963-01-26": "The second day of Lunar New Year", - "1963-01-28": "The fourth day of Lunar New Year", "1963-04-05": "Ching Ming Festival", "1963-04-12": "Good Friday", "1963-04-13": "The day following Good Friday", "1963-04-15": "Easter Monday", - "1963-06-10": "Queen's Birthday", + "1963-04-21": "Queen's Birthday", + "1963-06-03": "Monday after Pentecost", "1963-06-25": "Tuen Ng Festival", - "1963-08-25": "Anniversary of the victory in the Second Sino-Japanese War", - "1963-08-26": "Anniversary of the liberation of Hong Kong", - "1963-10-03": "The day following the Chinese Mid-Autumn Festival", - "1963-10-25": "Chung Yeung Festival", + "1963-08-30": "Anniversary of the liberation of Hong Kong", + "1963-10-02": "Chinese Mid-Autumn Festival", + "1963-10-14": "National Day of the Republic of China", + "1963-11-11": "Monday after Peace Memorial Day", "1963-12-25": "Christmas Day", "1963-12-26": "The first weekday after Christmas Day", "1964-01-01": "The first day of January", "1964-02-13": "Lunar New Year's Day", "1964-02-14": "The second day of Lunar New Year", - "1964-02-15": "The third day of Lunar New Year", "1964-03-27": "Good Friday", "1964-03-28": "The day following Good Friday", "1964-03-30": "Easter Monday", "1964-04-04": "Ching Ming Festival", - "1964-06-08": "Queen's Birthday", - "1964-06-15": "The day following Tuen Ng Festival", - "1964-08-30": "Anniversary of the victory in the Second Sino-Japanese War", - "1964-08-31": "Anniversary of the liberation of Hong Kong", + "1964-04-21": "Queen's Birthday", + "1964-05-18": "Monday after Pentecost", + "1964-06-14": "Tuen Ng Festival", + "1964-06-15": "Tuen Ng Festival (observed)", + "1964-08-30": "Anniversary of the liberation of Hong Kong", "1964-09-21": "The day following the Chinese Mid-Autumn Festival", - "1964-10-14": "Chung Yeung Festival", + "1964-10-12": "National Day of the Republic of China", + "1964-11-09": "Monday after Peace Memorial Day", "1964-12-25": "Christmas Day", "1964-12-26": "The first weekday after Christmas Day", "1965-01-01": "The first day of January", "1965-02-02": "Lunar New Year's Day", "1965-02-03": "The second day of Lunar New Year", - "1965-02-04": "The third day of Lunar New Year", "1965-04-05": "Ching Ming Festival", "1965-04-16": "Good Friday", "1965-04-17": "The day following Good Friday", "1965-04-19": "Easter Monday", + "1965-04-21": "Queen's Birthday", "1965-06-04": "Tuen Ng Festival", - "1965-06-14": "Queen's Birthday", - "1965-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1965-06-07": "Monday after Pentecost", "1965-08-30": "Anniversary of the liberation of Hong Kong", - "1965-09-11": "The day following the Chinese Mid-Autumn Festival", - "1965-10-04": "The day following Chung Yeung Festival", + "1965-09-10": "Chinese Mid-Autumn Festival", + "1965-10-11": "National Day of the Republic of China", + "1965-11-15": "Monday after Peace Memorial Day", "1965-12-25": "Christmas Day", "1965-12-27": "The first weekday after Christmas Day", "1966-01-01": "The first day of January", "1966-01-21": "Lunar New Year's Day", "1966-01-22": "The second day of Lunar New Year", - "1966-01-24": "The fourth day of Lunar New Year", "1966-04-05": "Ching Ming Festival", "1966-04-08": "Good Friday", "1966-04-09": "The day following Good Friday", "1966-04-11": "Easter Monday", - "1966-06-13": "Queen's Birthday", + "1966-04-21": "Queen's Birthday", + "1966-05-30": "Monday after Pentecost", "1966-06-23": "Tuen Ng Festival", - "1966-08-28": "Anniversary of the victory in the Second Sino-Japanese War", - "1966-08-29": "Anniversary of the liberation of Hong Kong", - "1966-09-30": "The day following the Chinese Mid-Autumn Festival", - "1966-10-22": "Chung Yeung Festival", - "1966-12-26": "The first weekday after Christmas Day", + "1966-08-30": "Anniversary of the liberation of Hong Kong", + "1966-09-29": "Chinese Mid-Autumn Festival", + "1966-10-10": "National Day of the Republic of China", + "1966-11-14": "Monday after Peace Memorial Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "1966-12-27": "The second weekday after Christmas Day", - "1967-01-02": "The day following The first day of January", + "1967-01-02": "The day following the first day of January", "1967-02-09": "Lunar New Year's Day", "1967-02-10": "The second day of Lunar New Year", - "1967-02-11": "The third day of Lunar New Year", "1967-03-24": "Good Friday", "1967-03-25": "The day following Good Friday", "1967-03-27": "Easter Monday", "1967-04-05": "Ching Ming Festival", + "1967-04-21": "Queen's Birthday", + "1967-05-15": "Monday after Pentecost", "1967-06-12": "Tuen Ng Festival", - "1967-06-13": "The day following Queen's Birthday", - "1967-08-27": "Anniversary of the victory in the Second Sino-Japanese War", - "1967-08-28": "Anniversary of the liberation of Hong Kong", - "1967-09-19": "The day following the Chinese Mid-Autumn Festival", - "1967-10-12": "Chung Yeung Festival", + "1967-08-30": "Anniversary of the liberation of Hong Kong", + "1967-09-18": "Chinese Mid-Autumn Festival", + "1967-10-09": "National Day of the Republic of China", + "1967-11-13": "Monday after Peace Memorial Day", "1967-12-25": "Christmas Day", "1967-12-26": "The first weekday after Christmas Day", "1968-01-01": "The first day of January", @@ -292,9 +268,9 @@ "1968-04-12": "Good Friday", "1968-04-13": "The day following Good Friday", "1968-04-15": "Easter Monday", + "1968-04-21": "Queen's Birthday", "1968-05-31": "Tuen Ng Festival", - "1968-06-10": "Queen's Birthday", - "1968-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1968-08-05": "Anniversary of the liberation of Hong Kong", "1968-08-26": "Anniversary of the liberation of Hong Kong", "1968-10-07": "The day following the Chinese Mid-Autumn Festival", "1968-10-30": "Chung Yeung Festival", @@ -307,9 +283,9 @@ "1969-04-04": "Good Friday", "1969-04-05": "Ching Ming Festival; The day following Good Friday", "1969-04-07": "Easter Monday", - "1969-06-09": "Queen's Birthday", + "1969-04-21": "Queen's Birthday", "1969-06-19": "Tuen Ng Festival", - "1969-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1969-08-04": "Anniversary of the liberation of Hong Kong", "1969-08-25": "Anniversary of the liberation of Hong Kong", "1969-09-27": "The day following the Chinese Mid-Autumn Festival", "1969-10-20": "The day following Chung Yeung Festival", @@ -318,14 +294,15 @@ "1970-01-01": "The first day of January", "1970-02-06": "Lunar New Year's Day", "1970-02-07": "The second day of Lunar New Year", - "1970-02-09": "The fourth day of Lunar New Year", + "1970-02-08": "The third day of Lunar New Year", "1970-03-27": "Good Friday", "1970-03-28": "The day following Good Friday", "1970-03-30": "Easter Monday", - "1970-04-06": "The day following Ching Ming Festival", + "1970-04-05": "Ching Ming Festival", + "1970-04-06": "Ching Ming Festival (observed); The day following Ching Ming Festival", + "1970-04-21": "Queen's Birthday", "1970-06-08": "Tuen Ng Festival", - "1970-06-09": "The day following Queen's Birthday", - "1970-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1970-08-03": "Anniversary of the liberation of Hong Kong", "1970-08-31": "Anniversary of the liberation of Hong Kong", "1970-09-16": "The day following the Chinese Mid-Autumn Festival", "1970-10-08": "Chung Yeung Festival", @@ -339,9 +316,9 @@ "1971-04-09": "Good Friday", "1971-04-10": "The day following Good Friday", "1971-04-12": "Easter Monday", + "1971-04-21": "Queen's Birthday", "1971-05-28": "Tuen Ng Festival", - "1971-06-14": "Queen's Birthday", - "1971-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1971-08-02": "Anniversary of the liberation of Hong Kong", "1971-08-30": "Anniversary of the liberation of Hong Kong", "1971-10-04": "The day following the Chinese Mid-Autumn Festival", "1971-10-27": "Chung Yeung Festival", @@ -355,9 +332,9 @@ "1972-04-01": "The day following Good Friday", "1972-04-03": "Easter Monday", "1972-04-04": "Ching Ming Festival", - "1972-06-12": "Queen's Birthday", + "1972-04-21": "Queen's Birthday", "1972-06-15": "Tuen Ng Festival", - "1972-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1972-08-07": "Anniversary of the liberation of Hong Kong", "1972-08-28": "Anniversary of the liberation of Hong Kong", "1972-09-23": "The day following the Chinese Mid-Autumn Festival", "1972-10-16": "The day following Chung Yeung Festival", @@ -365,15 +342,14 @@ "1972-12-26": "The first weekday after Christmas Day", "1973-01-01": "The first day of January", "1973-02-03": "Lunar New Year's Day", + "1973-02-04": "The second day of Lunar New Year", "1973-02-05": "The third day of Lunar New Year", - "1973-02-06": "The fourth day of Lunar New Year", "1973-04-05": "Ching Ming Festival", "1973-04-20": "Good Friday", - "1973-04-21": "The day following Good Friday", + "1973-04-21": "Queen's Birthday; The day following Good Friday", "1973-04-23": "Easter Monday", "1973-06-05": "Tuen Ng Festival", - "1973-06-11": "Queen's Birthday", - "1973-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1973-08-06": "Anniversary of the liberation of Hong Kong", "1973-08-27": "Anniversary of the liberation of Hong Kong", "1973-09-12": "The day following the Chinese Mid-Autumn Festival", "1973-10-04": "Chung Yeung Festival", @@ -387,9 +363,9 @@ "1974-04-12": "Good Friday", "1974-04-13": "The day following Good Friday", "1974-04-15": "Easter Monday", - "1974-06-10": "Queen's Birthday", + "1974-04-21": "Queen's Birthday", "1974-06-24": "Tuen Ng Festival", - "1974-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1974-08-05": "Anniversary of the liberation of Hong Kong", "1974-08-26": "Anniversary of the liberation of Hong Kong", "1974-10-01": "The day following the Chinese Mid-Autumn Festival", "1974-10-23": "Chung Yeung Festival", @@ -403,25 +379,26 @@ "1975-03-29": "The day following Good Friday", "1975-03-31": "Easter Monday", "1975-04-05": "Ching Ming Festival", - "1975-06-09": "Queen's Birthday", + "1975-04-21": "Queen's Birthday", "1975-06-14": "Tuen Ng Festival", - "1975-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1975-08-04": "Anniversary of the liberation of Hong Kong", "1975-08-25": "Anniversary of the liberation of Hong Kong", - "1975-09-22": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "1975-09-22": "The second day following the Chinese Mid-Autumn Festival", "1975-10-13": "Chung Yeung Festival", "1975-12-25": "Christmas Day", "1975-12-26": "The first weekday after Christmas Day", "1976-01-01": "The first day of January", "1976-01-31": "Lunar New Year's Day", + "1976-02-01": "The second day of Lunar New Year", "1976-02-02": "The third day of Lunar New Year", - "1976-02-03": "The fourth day of Lunar New Year", - "1976-04-05": "The day following Ching Ming Festival", + "1976-04-04": "Ching Ming Festival", + "1976-04-05": "Ching Ming Festival (observed); The day following Ching Ming Festival", "1976-04-16": "Good Friday", "1976-04-17": "The day following Good Friday", "1976-04-19": "Easter Monday", + "1976-04-21": "Queen's Birthday", "1976-06-02": "Tuen Ng Festival", - "1976-06-14": "Queen's Birthday", - "1976-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1976-08-02": "Anniversary of the liberation of Hong Kong", "1976-08-30": "Anniversary of the liberation of Hong Kong", "1976-09-09": "The day following the Chinese Mid-Autumn Festival", "1976-11-01": "The day following Chung Yeung Festival", @@ -430,20 +407,22 @@ "1977-01-01": "The first day of January", "1977-02-18": "Lunar New Year's Day", "1977-02-19": "The second day of Lunar New Year", - "1977-02-21": "The fourth day of Lunar New Year", + "1977-02-20": "The third day of Lunar New Year", "1977-04-05": "Ching Ming Festival", "1977-04-08": "Good Friday", "1977-04-09": "The day following Good Friday", "1977-04-11": "Easter Monday", - "1977-06-13": "Queen's Birthday", + "1977-04-21": "Queen's Birthday", "1977-06-21": "Tuen Ng Festival", - "1977-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1977-08-01": "Anniversary of the liberation of Hong Kong", "1977-08-29": "Anniversary of the liberation of Hong Kong", "1977-09-28": "The day following the Chinese Mid-Autumn Festival", "1977-10-21": "Chung Yeung Festival", - "1977-12-26": "The first weekday after Christmas Day", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "1977-12-27": "The second weekday after Christmas Day", - "1978-01-02": "The day following The first day of January", + "1978-01-01": "The first day of January", + "1978-01-02": "The day following the first day of January; The first day of January (observed)", "1978-02-07": "Lunar New Year's Day", "1978-02-08": "The second day of Lunar New Year", "1978-02-09": "The third day of Lunar New Year", @@ -451,25 +430,25 @@ "1978-03-25": "The day following Good Friday", "1978-03-27": "Easter Monday", "1978-04-05": "Ching Ming Festival", + "1978-04-21": "Queen's Birthday", "1978-06-10": "Tuen Ng Festival", - "1978-06-12": "Queen's Birthday", - "1978-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1978-08-07": "Anniversary of the liberation of Hong Kong", "1978-08-28": "Anniversary of the liberation of Hong Kong", "1978-09-18": "The day following the Chinese Mid-Autumn Festival", "1978-10-10": "Chung Yeung Festival", "1978-12-25": "Christmas Day", "1978-12-26": "The first weekday after Christmas Day", "1979-01-01": "The first day of January", + "1979-01-28": "Lunar New Year's Day", "1979-01-29": "The second day of Lunar New Year", "1979-01-30": "The third day of Lunar New Year", - "1979-01-31": "The fourth day of Lunar New Year", "1979-04-05": "Ching Ming Festival", "1979-04-13": "Good Friday", "1979-04-14": "The day following Good Friday", "1979-04-16": "Easter Monday", + "1979-04-21": "Queen's Birthday", "1979-05-30": "Tuen Ng Festival", - "1979-06-11": "Queen's Birthday", - "1979-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1979-08-06": "Anniversary of the liberation of Hong Kong", "1979-08-27": "Anniversary of the liberation of Hong Kong", "1979-10-06": "The day following the Chinese Mid-Autumn Festival", "1979-10-29": "Chung Yeung Festival", @@ -477,14 +456,14 @@ "1979-12-26": "The first weekday after Christmas Day", "1980-01-01": "The first day of January", "1980-02-16": "Lunar New Year's Day", + "1980-02-17": "The second day of Lunar New Year", "1980-02-18": "The third day of Lunar New Year", - "1980-02-19": "The fourth day of Lunar New Year", "1980-04-04": "Ching Ming Festival; Good Friday", "1980-04-05": "The day following Good Friday", "1980-04-07": "Easter Monday", - "1980-06-09": "Queen's Birthday", + "1980-04-21": "Queen's Birthday", "1980-06-17": "Tuen Ng Festival", - "1980-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1980-08-04": "Anniversary of the liberation of Hong Kong", "1980-08-25": "Anniversary of the liberation of Hong Kong", "1980-09-24": "The day following the Chinese Mid-Autumn Festival", "1980-10-17": "Chung Yeung Festival", @@ -494,15 +473,17 @@ "1981-02-05": "Lunar New Year's Day", "1981-02-06": "The second day of Lunar New Year", "1981-02-07": "The third day of Lunar New Year", - "1981-04-06": "The day following Ching Ming Festival", + "1981-04-05": "Ching Ming Festival", + "1981-04-06": "Ching Ming Festival (observed); The day following Ching Ming Festival", "1981-04-17": "Good Friday", "1981-04-18": "The day following Good Friday", "1981-04-20": "Easter Monday", + "1981-04-21": "Queen's Birthday", "1981-06-06": "Tuen Ng Festival", - "1981-06-08": "Queen's Birthday", - "1981-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1981-07-29": "Wedding of Prince Charles and Diana", + "1981-08-03": "Anniversary of the liberation of Hong Kong", "1981-08-31": "Anniversary of the liberation of Hong Kong", - "1981-09-14": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "1981-09-14": "The second day following the Chinese Mid-Autumn Festival", "1981-10-06": "Chung Yeung Festival", "1981-12-25": "Christmas Day", "1981-12-26": "The first weekday after Christmas Day", @@ -514,31 +495,34 @@ "1982-04-09": "Good Friday", "1982-04-10": "The day following Good Friday", "1982-04-12": "Easter Monday", - "1982-06-14": "Queen's Birthday", + "1982-04-21": "Queen's Birthday", "1982-06-25": "Tuen Ng Festival", - "1982-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1982-08-02": "Anniversary of the liberation of Hong Kong", "1982-08-30": "Anniversary of the liberation of Hong Kong", "1982-10-02": "The day following the Chinese Mid-Autumn Festival", "1982-10-25": "Chung Yeung Festival", "1982-12-25": "Christmas Day", "1982-12-27": "The first weekday after Christmas Day", "1983-01-01": "The first day of January", + "1983-02-12": "The day preceding Lunar New Year's Day", "1983-02-14": "The second day of Lunar New Year", "1983-02-15": "The third day of Lunar New Year", - "1983-02-16": "The fourth day of Lunar New Year", "1983-04-01": "Good Friday", "1983-04-02": "The day following Good Friday", "1983-04-04": "Easter Monday", "1983-04-05": "Ching Ming Festival", + "1983-06-11": "Queen's Birthday", "1983-06-13": "Queen's Birthday", "1983-06-15": "Tuen Ng Festival", - "1983-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1983-08-27": "Anniversary of the liberation of Hong Kong", "1983-08-29": "Anniversary of the liberation of Hong Kong", "1983-09-22": "The day following the Chinese Mid-Autumn Festival", "1983-10-14": "Chung Yeung Festival", - "1983-12-26": "The first weekday after Christmas Day", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "1983-12-27": "The second weekday after Christmas Day", - "1984-01-02": "The day following The first day of January", + "1984-01-01": "The first day of January", + "1984-01-02": "The day following the first day of January; The first day of January (observed)", "1984-02-02": "Lunar New Year's Day", "1984-02-03": "The second day of Lunar New Year", "1984-02-04": "The third day of Lunar New Year", @@ -547,8 +531,9 @@ "1984-04-21": "The day following Good Friday", "1984-04-23": "Easter Monday", "1984-06-04": "Tuen Ng Festival", + "1984-06-09": "Queen's Birthday", "1984-06-11": "Queen's Birthday", - "1984-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1984-08-25": "Anniversary of the liberation of Hong Kong", "1984-08-27": "Anniversary of the liberation of Hong Kong", "1984-09-11": "The day following the Chinese Mid-Autumn Festival", "1984-10-03": "Chung Yeung Festival", @@ -561,41 +546,48 @@ "1985-04-05": "Ching Ming Festival; Good Friday", "1985-04-06": "The day following Good Friday", "1985-04-08": "Easter Monday", + "1985-06-08": "Queen's Birthday", "1985-06-10": "Queen's Birthday", "1985-06-22": "Tuen Ng Festival", - "1985-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1985-08-24": "Anniversary of the liberation of Hong Kong", "1985-08-26": "Anniversary of the liberation of Hong Kong", "1985-09-30": "The day following the Chinese Mid-Autumn Festival", "1985-10-22": "Chung Yeung Festival", "1985-12-25": "Christmas Day", "1985-12-26": "The first weekday after Christmas Day", "1986-01-01": "The first day of January", + "1986-02-08": "The day preceding Lunar New Year's Day", "1986-02-10": "The second day of Lunar New Year", "1986-02-11": "The third day of Lunar New Year", - "1986-02-12": "The fourth day of Lunar New Year", "1986-03-28": "Good Friday", "1986-03-29": "The day following Good Friday", "1986-03-31": "Easter Monday", "1986-04-05": "Ching Ming Festival", - "1986-06-09": "Queen's Birthday", "1986-06-11": "Tuen Ng Festival", - "1986-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1986-06-14": "Queen's Birthday", + "1986-06-16": "Queen's Birthday", + "1986-08-23": "Anniversary of the liberation of Hong Kong", "1986-08-25": "Anniversary of the liberation of Hong Kong", "1986-09-19": "The day following the Chinese Mid-Autumn Festival", - "1986-10-13": "The day following Chung Yeung Festival", + "1986-10-12": "Chung Yeung Festival", + "1986-10-13": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", + "1986-10-22": "Second day of Queen Elizabeth II and her husband's visit to Hong Kong", "1986-12-25": "Christmas Day", "1986-12-26": "The first weekday after Christmas Day", "1987-01-01": "The first day of January", "1987-01-29": "Lunar New Year's Day", "1987-01-30": "The second day of Lunar New Year", "1987-01-31": "The third day of Lunar New Year", - "1987-04-06": "The day following Ching Ming Festival", + "1987-04-05": "Ching Ming Festival", + "1987-04-06": "Ching Ming Festival (observed); The day following Ching Ming Festival", "1987-04-17": "Good Friday", "1987-04-18": "The day following Good Friday", "1987-04-20": "Easter Monday", - "1987-06-01": "The day following Tuen Ng Festival", - "1987-06-08": "Queen's Birthday", - "1987-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1987-05-31": "Tuen Ng Festival", + "1987-06-01": "The day following Tuen Ng Festival; Tuen Ng Festival (observed)", + "1987-06-13": "Queen's Birthday", + "1987-06-15": "Queen's Birthday", + "1987-08-29": "Anniversary of the liberation of Hong Kong", "1987-08-31": "Anniversary of the liberation of Hong Kong", "1987-10-08": "The day following the Chinese Mid-Autumn Festival", "1987-10-31": "Chung Yeung Festival", @@ -607,17 +599,20 @@ "1988-02-19": "The third day of Lunar New Year", "1988-04-01": "Good Friday", "1988-04-02": "The day following Good Friday", - "1988-04-04": "Easter Monday", + "1988-04-04": "Ching Ming Festival; Easter Monday", "1988-04-05": "The day following Ching Ming Festival", + "1988-06-11": "Queen's Birthday", "1988-06-13": "Queen's Birthday", "1988-06-18": "Tuen Ng Festival", - "1988-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1988-08-27": "Anniversary of the liberation of Hong Kong", "1988-08-29": "Anniversary of the liberation of Hong Kong", "1988-09-26": "The day following the Chinese Mid-Autumn Festival", "1988-10-19": "Chung Yeung Festival", - "1988-12-26": "The first weekday after Christmas Day", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "1988-12-27": "The second weekday after Christmas Day", - "1989-01-02": "The day following The first day of January", + "1989-01-01": "The first day of January", + "1989-01-02": "The day following the first day of January; The first day of January (observed)", "1989-02-06": "Lunar New Year's Day", "1989-02-07": "The second day of Lunar New Year", "1989-02-08": "The third day of Lunar New Year", @@ -626,40 +621,45 @@ "1989-03-27": "Easter Monday", "1989-04-05": "Ching Ming Festival", "1989-06-08": "Tuen Ng Festival", + "1989-06-10": "Queen's Birthday", "1989-06-12": "Queen's Birthday", - "1989-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1989-08-26": "Anniversary of the liberation of Hong Kong", "1989-08-28": "Anniversary of the liberation of Hong Kong", "1989-09-15": "The day following the Chinese Mid-Autumn Festival", - "1989-10-09": "The day following Chung Yeung Festival", + "1989-10-08": "Chung Yeung Festival", + "1989-10-09": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "1989-12-25": "Christmas Day", "1989-12-26": "The first weekday after Christmas Day", "1990-01-01": "The first day of January", + "1990-01-26": "The day preceding Lunar New Year's Day", "1990-01-27": "Lunar New Year's Day", "1990-01-29": "The third day of Lunar New Year", - "1990-01-30": "The fourth day of Lunar New Year", "1990-04-05": "Ching Ming Festival", "1990-04-13": "Good Friday", "1990-04-14": "The day following Good Friday", "1990-04-16": "Easter Monday", "1990-05-28": "Tuen Ng Festival", + "1990-06-09": "Queen's Birthday", "1990-06-11": "Queen's Birthday", - "1990-08-26": "Anniversary of the victory in the Second Sino-Japanese War", + "1990-08-25": "Anniversary of the liberation of Hong Kong", "1990-08-27": "Anniversary of the liberation of Hong Kong", "1990-10-04": "The day following the Chinese Mid-Autumn Festival", "1990-10-26": "Chung Yeung Festival", "1990-12-25": "Christmas Day", "1990-12-26": "The first weekday after Christmas Day", "1991-01-01": "The first day of January", + "1991-02-14": "The day preceding Lunar New Year's Day", "1991-02-15": "Lunar New Year's Day", "1991-02-16": "The second day of Lunar New Year", - "1991-02-18": "The fourth day of Lunar New Year", "1991-03-29": "Good Friday", "1991-03-30": "The day following Good Friday", "1991-04-01": "Easter Monday", "1991-04-05": "Ching Ming Festival", + "1991-06-08": "Queen's Birthday", "1991-06-10": "Queen's Birthday", - "1991-06-17": "The day following Tuen Ng Festival", - "1991-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1991-06-16": "Tuen Ng Festival", + "1991-06-17": "The day following Tuen Ng Festival; Tuen Ng Festival (observed)", + "1991-08-24": "Anniversary of the liberation of Hong Kong", "1991-08-26": "Anniversary of the liberation of Hong Kong", "1991-09-23": "The day following the Chinese Mid-Autumn Festival", "1991-10-16": "Chung Yeung Festival", @@ -674,24 +674,27 @@ "1992-04-18": "The day following Good Friday", "1992-04-20": "Easter Monday", "1992-06-05": "Tuen Ng Festival", - "1992-06-08": "Queen's Birthday", - "1992-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1992-06-13": "Queen's Birthday", + "1992-06-15": "Queen's Birthday", + "1992-08-29": "Anniversary of the liberation of Hong Kong", "1992-08-31": "Anniversary of the liberation of Hong Kong", "1992-09-12": "The day following the Chinese Mid-Autumn Festival", - "1992-10-05": "The day following Chung Yeung Festival", + "1992-10-04": "Chung Yeung Festival", + "1992-10-05": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "1992-12-25": "Christmas Day", "1992-12-26": "The first weekday after Christmas Day", "1993-01-01": "The first day of January", + "1993-01-22": "The day preceding Lunar New Year's Day", "1993-01-23": "Lunar New Year's Day", "1993-01-25": "The third day of Lunar New Year", - "1993-01-26": "The fourth day of Lunar New Year", "1993-04-05": "Ching Ming Festival", "1993-04-09": "Good Friday", "1993-04-10": "The day following Good Friday", "1993-04-12": "Easter Monday", + "1993-06-12": "Queen's Birthday", "1993-06-14": "Queen's Birthday", "1993-06-24": "Tuen Ng Festival", - "1993-08-29": "Anniversary of the victory in the Second Sino-Japanese War", + "1993-08-28": "Anniversary of the liberation of Hong Kong", "1993-08-30": "Anniversary of the liberation of Hong Kong", "1993-10-01": "The day following the Chinese Mid-Autumn Festival", "1993-10-23": "Chung Yeung Festival", @@ -705,15 +708,17 @@ "1994-04-02": "The day following Good Friday", "1994-04-04": "Easter Monday", "1994-04-05": "Ching Ming Festival", - "1994-06-13": "Tuen Ng Festival", - "1994-06-14": "The day following Queen's Birthday", - "1994-08-28": "Anniversary of the victory in the Second Sino-Japanese War", + "1994-06-11": "Queen's Birthday", + "1994-06-13": "Queen's Birthday; Tuen Ng Festival", + "1994-08-27": "Anniversary of the liberation of Hong Kong", "1994-08-29": "Anniversary of the liberation of Hong Kong", "1994-09-21": "The day following the Chinese Mid-Autumn Festival", "1994-10-13": "Chung Yeung Festival", - "1994-12-26": "The first weekday after Christmas Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "1994-12-27": "The second weekday after Christmas Day", - "1995-01-02": "The day following The first day of January", + "1995-01-01": "The first day of January", + "1995-01-02": "The day following the first day of January; The first day of January (observed)", "1995-01-31": "Lunar New Year's Day", "1995-02-01": "The second day of Lunar New Year", "1995-02-02": "The third day of Lunar New Year", @@ -722,8 +727,9 @@ "1995-04-15": "The day following Good Friday", "1995-04-17": "Easter Monday", "1995-06-02": "Tuen Ng Festival", + "1995-06-10": "Queen's Birthday", "1995-06-12": "Queen's Birthday", - "1995-08-27": "Anniversary of the victory in the Second Sino-Japanese War", + "1995-08-26": "Anniversary of the liberation of Hong Kong", "1995-08-28": "Anniversary of the liberation of Hong Kong", "1995-09-09": "Chinese Mid-Autumn Festival", "1995-11-01": "Chung Yeung Festival", @@ -737,30 +743,33 @@ "1996-04-05": "Good Friday", "1996-04-06": "The day following Good Friday", "1996-04-08": "Easter Monday", + "1996-06-08": "Queen's Birthday", "1996-06-10": "Queen's Birthday", "1996-06-20": "Tuen Ng Festival", - "1996-08-25": "Anniversary of the victory in the Second Sino-Japanese War", + "1996-08-24": "Anniversary of the liberation of Hong Kong", "1996-08-26": "Anniversary of the liberation of Hong Kong", "1996-09-28": "The day following the Chinese Mid-Autumn Festival", - "1996-10-21": "The day following Chung Yeung Festival", + "1996-10-20": "Chung Yeung Festival", + "1996-10-21": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "1996-12-25": "Christmas Day", "1996-12-26": "The first weekday after Christmas Day", "1997-01-01": "The first day of January", + "1997-02-06": "The day preceding Lunar New Year's Day", "1997-02-07": "Lunar New Year's Day", "1997-02-08": "The second day of Lunar New Year", - "1997-02-10": "The fourth day of Lunar New Year", "1997-03-28": "Good Friday", "1997-03-29": "The day following Good Friday", "1997-03-31": "Easter Monday", "1997-04-05": "Ching Ming Festival", "1997-06-09": "Tuen Ng Festival", - "1997-06-10": "The day following Queen's Birthday", + "1997-06-28": "Queen's Birthday", + "1997-06-30": "Queen's Birthday", "1997-07-01": "Hong Kong Special Administrative Region Establishment Day", - "1997-07-02": "Hong Kong Special Administrative Region Establishment Day", - "1997-08-24": "Anniversary of the victory in the Second Sino-Japanese War", + "1997-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "1997-08-18": "Sino-Japanese War Victory Day", "1997-09-17": "The day following the Chinese Mid-Autumn Festival", "1997-10-01": "National Day", - "1997-10-02": "National Day", + "1997-10-02": "The day following National Day", "1997-10-10": "Chung Yeung Festival", "1997-12-25": "Christmas Day", "1997-12-26": "The first weekday after Christmas Day", @@ -768,15 +777,16 @@ "1998-01-28": "Lunar New Year's Day", "1998-01-29": "The second day of Lunar New Year", "1998-01-30": "The third day of Lunar New Year", - "1998-04-06": "The day following Ching Ming Festival", + "1998-04-05": "Ching Ming Festival", + "1998-04-06": "Ching Ming Festival (observed); The day following Ching Ming Festival", "1998-04-10": "Good Friday", "1998-04-11": "The day following Good Friday", "1998-04-13": "Easter Monday", "1998-05-30": "Tuen Ng Festival", "1998-07-01": "Hong Kong Special Administrative Region Establishment Day", - "1998-08-30": "Anniversary of the victory in the Second Sino-Japanese War", + "1998-08-17": "Sino-Japanese War Victory Day", "1998-10-01": "National Day", - "1998-10-02": "National Day", + "1998-10-02": "The day following National Day", "1998-10-06": "The day following the Chinese Mid-Autumn Festival", "1998-10-28": "Chung Yeung Festival", "1998-12-25": "Christmas Day", @@ -787,7 +797,7 @@ "1999-02-18": "The third day of Lunar New Year", "1999-04-02": "Good Friday", "1999-04-03": "The day following Good Friday", - "1999-04-05": "Easter Monday", + "1999-04-05": "Ching Ming Festival; Easter Monday", "1999-04-06": "The day following Ching Ming Festival", "1999-05-01": "Labour Day", "1999-05-22": "The Birthday of the Buddha", @@ -795,13 +805,15 @@ "1999-07-01": "Hong Kong Special Administrative Region Establishment Day", "1999-09-25": "The day following the Chinese Mid-Autumn Festival", "1999-10-01": "National Day", - "1999-10-18": "The day following Chung Yeung Festival", + "1999-10-17": "Chung Yeung Festival", + "1999-10-18": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "1999-12-25": "Christmas Day", "1999-12-27": "The first weekday after Christmas Day", + "1999-12-31": "Additional public holiday", "2000-01-01": "The first day of January", + "2000-02-04": "The day preceding Lunar New Year's Day", "2000-02-05": "Lunar New Year's Day", "2000-02-07": "The third day of Lunar New Year", - "2000-02-08": "The fourth day of Lunar New Year", "2000-04-04": "Ching Ming Festival", "2000-04-21": "Good Friday", "2000-04-22": "The day following Good Friday", @@ -811,7 +823,9 @@ "2000-06-06": "Tuen Ng Festival", "2000-07-01": "Hong Kong Special Administrative Region Establishment Day", "2000-09-13": "The day following the Chinese Mid-Autumn Festival", - "2000-10-02": "The day following National Day", + "2000-10-01": "National Day", + "2000-10-02": "National Day (observed)", + "2000-10-03": "The day following National Day", "2000-10-06": "Chung Yeung Festival", "2000-12-25": "Christmas Day", "2000-12-26": "The first weekday after Christmas Day", @@ -826,7 +840,8 @@ "2001-04-30": "The Birthday of the Buddha", "2001-05-01": "Labour Day", "2001-06-25": "Tuen Ng Festival", - "2001-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2001-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2001-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", "2001-10-01": "National Day", "2001-10-02": "The day following the Chinese Mid-Autumn Festival", "2001-10-25": "Chung Yeung Festival", @@ -841,7 +856,7 @@ "2002-04-01": "Easter Monday", "2002-04-05": "Ching Ming Festival", "2002-05-01": "Labour Day", - "2002-05-20": "The day following The Birthday of the Buddha", + "2002-05-20": "The day following the Birthday of the Buddha", "2002-06-15": "Tuen Ng Festival", "2002-07-01": "Hong Kong Special Administrative Region Establishment Day", "2002-09-21": "Chinese Mid-Autumn Festival", @@ -850,9 +865,9 @@ "2002-12-25": "Christmas Day", "2002-12-26": "The first weekday after Christmas Day", "2003-01-01": "The first day of January", + "2003-01-31": "The day preceding Lunar New Year's Day", "2003-02-01": "Lunar New Year's Day", "2003-02-03": "The third day of Lunar New Year", - "2003-02-04": "The fourth day of Lunar New Year", "2003-04-05": "Ching Ming Festival", "2003-04-18": "Good Friday", "2003-04-19": "The day following Good Friday", @@ -870,7 +885,8 @@ "2004-01-22": "Lunar New Year's Day", "2004-01-23": "The second day of Lunar New Year", "2004-01-24": "The third day of Lunar New Year", - "2004-04-05": "The day following Ching Ming Festival", + "2004-04-04": "Ching Ming Festival", + "2004-04-05": "Ching Ming Festival (observed); The day following Ching Ming Festival", "2004-04-09": "Good Friday", "2004-04-10": "The day following Good Friday", "2004-04-12": "Easter Monday", @@ -891,16 +907,19 @@ "2005-03-26": "The day following Good Friday", "2005-03-28": "Easter Monday", "2005-04-05": "Ching Ming Festival", - "2005-05-02": "The day following Labour Day", - "2005-05-16": "The day following The Birthday of the Buddha", + "2005-05-01": "Labour Day", + "2005-05-02": "Labour Day (observed); The day following Labour Day", + "2005-05-16": "The day following the Birthday of the Buddha", "2005-06-11": "Tuen Ng Festival", "2005-07-01": "Hong Kong Special Administrative Region Establishment Day", "2005-09-19": "The day following the Chinese Mid-Autumn Festival", "2005-10-01": "National Day", "2005-10-11": "Chung Yeung Festival", - "2005-12-26": "The first weekday after Christmas Day", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "2005-12-27": "The second weekday after Christmas Day", - "2006-01-02": "The day following The first day of January", + "2006-01-01": "The first day of January", + "2006-01-02": "The day following the first day of January; The first day of January (observed)", "2006-01-28": "The day preceding Lunar New Year's Day", "2006-01-30": "The second day of Lunar New Year", "2006-01-31": "The third day of Lunar New Year", @@ -912,7 +931,9 @@ "2006-05-05": "The Birthday of the Buddha", "2006-05-31": "Tuen Ng Festival", "2006-07-01": "Hong Kong Special Administrative Region Establishment Day", - "2006-10-02": "The day following National Day", + "2006-10-01": "National Day", + "2006-10-02": "National Day (observed)", + "2006-10-03": "The day following National Day", "2006-10-07": "The day following the Chinese Mid-Autumn Festival", "2006-10-30": "Chung Yeung Festival", "2006-12-25": "Christmas Day", @@ -928,7 +949,8 @@ "2007-05-01": "Labour Day", "2007-05-24": "The Birthday of the Buddha", "2007-06-19": "Tuen Ng Festival", - "2007-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2007-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2007-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", "2007-09-26": "The day following the Chinese Mid-Autumn Festival", "2007-10-01": "National Day", "2007-10-19": "Chung Yeung Festival", @@ -944,7 +966,8 @@ "2008-04-04": "Ching Ming Festival", "2008-05-01": "Labour Day", "2008-05-12": "The Birthday of the Buddha", - "2008-06-09": "The day following Tuen Ng Festival", + "2008-06-08": "Tuen Ng Festival", + "2008-06-09": "The day following Tuen Ng Festival; Tuen Ng Festival (observed)", "2008-07-01": "Hong Kong Special Administrative Region Establishment Day", "2008-09-15": "The day following the Chinese Mid-Autumn Festival", "2008-10-01": "National Day", @@ -974,7 +997,7 @@ "2010-02-16": "The third day of Lunar New Year", "2010-04-02": "Good Friday", "2010-04-03": "The day following Good Friday", - "2010-04-05": "Easter Monday", + "2010-04-05": "Ching Ming Festival; Easter Monday", "2010-04-06": "The day following Ching Ming Festival", "2010-05-01": "Labour Day", "2010-05-21": "The Birthday of the Buddha", @@ -993,16 +1016,19 @@ "2011-04-22": "Good Friday", "2011-04-23": "The day following Good Friday", "2011-04-25": "Easter Monday", - "2011-05-02": "The day following Labour Day", + "2011-05-01": "Labour Day", + "2011-05-02": "Labour Day (observed); The day following Labour Day", "2011-05-10": "The Birthday of the Buddha", "2011-06-06": "Tuen Ng Festival", "2011-07-01": "Hong Kong Special Administrative Region Establishment Day", "2011-09-13": "The day following the Chinese Mid-Autumn Festival", "2011-10-01": "National Day", "2011-10-05": "Chung Yeung Festival", - "2011-12-26": "The first weekday after Christmas Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "2011-12-27": "The second weekday after Christmas Day", - "2012-01-02": "The day following The first day of January", + "2012-01-01": "The first day of January", + "2012-01-02": "The day following the first day of January; The first day of January (observed)", "2012-01-23": "Lunar New Year's Day", "2012-01-24": "The second day of Lunar New Year", "2012-01-25": "The third day of Lunar New Year", @@ -1013,9 +1039,11 @@ "2012-04-28": "The Birthday of the Buddha", "2012-05-01": "Labour Day", "2012-06-23": "Tuen Ng Festival", - "2012-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", - "2012-10-01": "The day following the Chinese Mid-Autumn Festival", - "2012-10-02": "The day following National Day", + "2012-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2012-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", + "2012-10-01": "National Day; The day following the Chinese Mid-Autumn Festival", + "2012-10-02": "National Day (observed)", + "2012-10-03": "The day following National Day", "2012-10-23": "Chung Yeung Festival", "2012-12-25": "Christmas Day", "2012-12-26": "The first weekday after Christmas Day", @@ -1033,7 +1061,8 @@ "2013-07-01": "Hong Kong Special Administrative Region Establishment Day", "2013-09-20": "The day following the Chinese Mid-Autumn Festival", "2013-10-01": "National Day", - "2013-10-14": "The day following Chung Yeung Festival", + "2013-10-13": "Chung Yeung Festival", + "2013-10-14": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "2013-12-25": "Christmas Day", "2013-12-26": "The first weekday after Christmas Day", "2014-01-01": "The first day of January", @@ -1059,7 +1088,8 @@ "2015-02-21": "The third day of Lunar New Year", "2015-04-03": "Good Friday", "2015-04-04": "The day following Good Friday", - "2015-04-06": "The day following Ching Ming Festival", + "2015-04-05": "Ching Ming Festival", + "2015-04-06": "Ching Ming Festival (observed); The day following Ching Ming Festival", "2015-04-07": "The day following Easter Monday", "2015-05-01": "Labour Day", "2015-05-25": "The Birthday of the Buddha", @@ -1079,16 +1109,20 @@ "2016-03-26": "The day following Good Friday", "2016-03-28": "Easter Monday", "2016-04-04": "Ching Ming Festival", - "2016-05-02": "The day following Labour Day", + "2016-05-01": "Labour Day", + "2016-05-02": "Labour Day (observed); The day following Labour Day", "2016-05-14": "The Birthday of the Buddha", "2016-06-09": "Tuen Ng Festival", "2016-07-01": "Hong Kong Special Administrative Region Establishment Day", "2016-09-16": "The day following the Chinese Mid-Autumn Festival", "2016-10-01": "National Day", - "2016-10-10": "The day following Chung Yeung Festival", - "2016-12-26": "The first weekday after Christmas Day", + "2016-10-09": "Chung Yeung Festival", + "2016-10-10": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "2016-12-27": "The second weekday after Christmas Day", - "2017-01-02": "The day following The first day of January", + "2017-01-01": "The first day of January", + "2017-01-02": "The day following the first day of January; The first day of January (observed)", "2017-01-28": "Lunar New Year's Day", "2017-01-30": "The third day of Lunar New Year", "2017-01-31": "The fourth day of Lunar New Year", @@ -1100,7 +1134,9 @@ "2017-05-03": "The Birthday of the Buddha", "2017-05-30": "Tuen Ng Festival", "2017-07-01": "Hong Kong Special Administrative Region Establishment Day", - "2017-10-02": "The day following National Day", + "2017-10-01": "National Day", + "2017-10-02": "National Day (observed)", + "2017-10-03": "The day following National Day", "2017-10-05": "The day following the Chinese Mid-Autumn Festival", "2017-10-28": "Chung Yeung Festival", "2017-12-25": "Christmas Day", @@ -1116,7 +1152,8 @@ "2018-05-01": "Labour Day", "2018-05-22": "The Birthday of the Buddha", "2018-06-18": "Tuen Ng Festival", - "2018-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2018-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2018-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", "2018-09-25": "The day following the Chinese Mid-Autumn Festival", "2018-10-01": "National Day", "2018-10-17": "Chung Yeung Festival", @@ -1131,7 +1168,7 @@ "2019-04-20": "The day following Good Friday", "2019-04-22": "Easter Monday", "2019-05-01": "Labour Day", - "2019-05-13": "The day following The Birthday of the Buddha", + "2019-05-13": "The day following the Birthday of the Buddha", "2019-06-07": "Tuen Ng Festival", "2019-07-01": "Hong Kong Special Administrative Region Establishment Day", "2019-09-14": "The day following the Chinese Mid-Autumn Festival", @@ -1153,7 +1190,8 @@ "2020-07-01": "Hong Kong Special Administrative Region Establishment Day", "2020-10-01": "National Day", "2020-10-02": "The day following the Chinese Mid-Autumn Festival", - "2020-10-26": "The day following Chung Yeung Festival", + "2020-10-25": "Chung Yeung Festival", + "2020-10-26": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "2020-12-25": "Christmas Day", "2020-12-26": "The first weekday after Christmas Day", "2021-01-01": "The first day of January", @@ -1162,7 +1200,8 @@ "2021-02-15": "The fourth day of Lunar New Year", "2021-04-02": "Good Friday", "2021-04-03": "The day following Good Friday", - "2021-04-05": "The day following Ching Ming Festival", + "2021-04-04": "Ching Ming Festival", + "2021-04-05": "Ching Ming Festival (observed); The day following Ching Ming Festival", "2021-04-06": "The day following Easter Monday", "2021-05-01": "Labour Day", "2021-05-19": "The Birthday of the Buddha", @@ -1181,16 +1220,20 @@ "2022-04-15": "Good Friday", "2022-04-16": "The day following Good Friday", "2022-04-18": "Easter Monday", - "2022-05-02": "The day following Labour Day", - "2022-05-09": "The day following The Birthday of the Buddha", + "2022-05-01": "Labour Day", + "2022-05-02": "Labour Day (observed); The day following Labour Day", + "2022-05-08": "The Birthday of the Buddha", + "2022-05-09": "The Birthday of the Buddha (observed); The day following the Birthday of the Buddha", "2022-06-03": "Tuen Ng Festival", "2022-07-01": "Hong Kong Special Administrative Region Establishment Day", - "2022-09-12": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2022-09-12": "The second day following the Chinese Mid-Autumn Festival", "2022-10-01": "National Day", "2022-10-04": "Chung Yeung Festival", - "2022-12-26": "The first weekday after Christmas Day", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed); The first weekday after Christmas Day", "2022-12-27": "The second weekday after Christmas Day", - "2023-01-02": "The day following The first day of January", + "2023-01-01": "The first day of January", + "2023-01-02": "The day following the first day of January; The first day of January (observed)", "2023-01-23": "The second day of Lunar New Year", "2023-01-24": "The third day of Lunar New Year", "2023-01-25": "The fourth day of Lunar New Year", @@ -1203,7 +1246,9 @@ "2023-06-22": "Tuen Ng Festival", "2023-07-01": "Hong Kong Special Administrative Region Establishment Day", "2023-09-30": "The day following the Chinese Mid-Autumn Festival", - "2023-10-02": "The day following National Day", + "2023-10-01": "National Day", + "2023-10-02": "National Day (observed)", + "2023-10-03": "The day following National Day", "2023-10-23": "Chung Yeung Festival", "2023-12-25": "Christmas Day", "2023-12-26": "The first weekday after Christmas Day", @@ -1233,7 +1278,8 @@ "2025-04-19": "The day following Good Friday", "2025-04-21": "Easter Monday", "2025-05-01": "Labour Day", - "2025-05-05": "The day following The Birthday of the Buddha", + "2025-05-04": "The Birthday of the Buddha", + "2025-05-05": "The Birthday of the Buddha (observed); The day following the Birthday of the Buddha", "2025-05-31": "Tuen Ng Festival", "2025-07-01": "Hong Kong Special Administrative Region Establishment Day", "2025-10-01": "National Day", @@ -1247,15 +1293,18 @@ "2026-02-19": "The third day of Lunar New Year", "2026-04-03": "Good Friday", "2026-04-04": "The day following Good Friday", - "2026-04-06": "The day following Ching Ming Festival", - "2026-04-07": "The day following Easter Monday", + "2026-04-05": "Ching Ming Festival", + "2026-04-06": "Easter Monday; The day following Ching Ming Festival", + "2026-04-07": "Ching Ming Festival (observed); The day following Easter Monday", "2026-05-01": "Labour Day", - "2026-05-25": "The day following The Birthday of the Buddha", + "2026-05-24": "The Birthday of the Buddha", + "2026-05-25": "The Birthday of the Buddha (observed); The day following the Birthday of the Buddha", "2026-06-19": "Tuen Ng Festival", "2026-07-01": "Hong Kong Special Administrative Region Establishment Day", "2026-09-26": "The day following the Chinese Mid-Autumn Festival", "2026-10-01": "National Day", - "2026-10-19": "The day following Chung Yeung Festival", + "2026-10-18": "Chung Yeung Festival", + "2026-10-19": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "2026-12-25": "Christmas Day", "2026-12-26": "The first weekday after Christmas Day", "2027-01-01": "The first day of January", @@ -1274,7 +1323,8 @@ "2027-10-01": "National Day", "2027-10-08": "Chung Yeung Festival", "2027-12-25": "Christmas Day", - "2027-12-27": "The first weekday after Christmas Day", + "2027-12-26": "The first weekday after Christmas Day", + "2027-12-27": "The first weekday after Christmas Day; The first weekday after Christmas Day (observed)", "2028-01-01": "The first day of January", "2028-01-26": "Lunar New Year's Day", "2028-01-27": "The second day of Lunar New Year", @@ -1285,9 +1335,12 @@ "2028-04-17": "Easter Monday", "2028-05-01": "Labour Day", "2028-05-02": "The Birthday of the Buddha", - "2028-05-29": "The day following Tuen Ng Festival", + "2028-05-28": "Tuen Ng Festival", + "2028-05-29": "The day following Tuen Ng Festival; Tuen Ng Festival (observed)", "2028-07-01": "Hong Kong Special Administrative Region Establishment Day", - "2028-10-02": "The day following National Day", + "2028-10-01": "National Day", + "2028-10-02": "National Day (observed)", + "2028-10-03": "The day following National Day", "2028-10-04": "The day following the Chinese Mid-Autumn Festival", "2028-10-26": "Chung Yeung Festival", "2028-12-25": "Christmas Day", @@ -1301,10 +1354,12 @@ "2029-04-02": "Easter Monday", "2029-04-04": "Ching Ming Festival", "2029-05-01": "Labour Day", - "2029-05-21": "The day following The Birthday of the Buddha", + "2029-05-20": "The Birthday of the Buddha", + "2029-05-21": "The Birthday of the Buddha (observed); The day following the Birthday of the Buddha", "2029-06-16": "Tuen Ng Festival", - "2029-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", - "2029-09-24": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2029-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2029-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", + "2029-09-24": "The second day following the Chinese Mid-Autumn Festival", "2029-10-01": "National Day", "2029-10-16": "Chung Yeung Festival", "2029-12-25": "Christmas Day", @@ -1350,16 +1405,19 @@ "2032-03-26": "Good Friday", "2032-03-27": "The day following Good Friday", "2032-03-29": "Easter Monday", - "2032-04-05": "The day following Ching Ming Festival", + "2032-04-04": "Ching Ming Festival", + "2032-04-05": "Ching Ming Festival (observed); The day following Ching Ming Festival", "2032-05-01": "Labour Day", - "2032-05-17": "The day following The Birthday of the Buddha", + "2032-05-16": "The Birthday of the Buddha", + "2032-05-17": "The Birthday of the Buddha (observed); The day following the Birthday of the Buddha", "2032-06-12": "Tuen Ng Festival", "2032-07-01": "Hong Kong Special Administrative Region Establishment Day", "2032-09-20": "The day following the Chinese Mid-Autumn Festival", "2032-10-01": "National Day", "2032-10-12": "Chung Yeung Festival", "2032-12-25": "Christmas Day", - "2032-12-27": "The first weekday after Christmas Day", + "2032-12-26": "The first weekday after Christmas Day", + "2032-12-27": "The first weekday after Christmas Day; The first weekday after Christmas Day (observed)", "2033-01-01": "The first day of January", "2033-01-31": "Lunar New Year's Day", "2033-02-01": "The second day of Lunar New Year", @@ -1368,16 +1426,20 @@ "2033-04-15": "Good Friday", "2033-04-16": "The day following Good Friday", "2033-04-18": "Easter Monday", - "2033-05-02": "The day following Labour Day", + "2033-05-01": "Labour Day", + "2033-05-02": "Labour Day (observed); The day following Labour Day", "2033-05-06": "The Birthday of the Buddha", "2033-06-01": "Tuen Ng Festival", "2033-07-01": "Hong Kong Special Administrative Region Establishment Day", "2033-09-09": "The day following the Chinese Mid-Autumn Festival", - "2033-10-01": "Chung Yeung Festival", - "2033-10-03": "The day following National Day", + "2033-10-01": "Chung Yeung Festival; National Day", + "2033-10-03": "National Day (observed)", + "2033-10-04": "The day following National Day", + "2033-12-25": "Christmas Day", "2033-12-26": "The first weekday after Christmas Day", - "2033-12-27": "The second weekday after Christmas Day", - "2034-01-02": "The day following The first day of January", + "2033-12-27": "Christmas Day (observed); The second weekday after Christmas Day", + "2034-01-01": "The first day of January", + "2034-01-02": "The day following the first day of January; The first day of January (observed)", "2034-02-20": "The second day of Lunar New Year", "2034-02-21": "The third day of Lunar New Year", "2034-02-22": "The fourth day of Lunar New Year", @@ -1390,7 +1452,9 @@ "2034-06-20": "Tuen Ng Festival", "2034-07-01": "Hong Kong Special Administrative Region Establishment Day", "2034-09-28": "The day following the Chinese Mid-Autumn Festival", - "2034-10-02": "The day following National Day", + "2034-10-01": "National Day", + "2034-10-02": "National Day (observed)", + "2034-10-03": "The day following National Day", "2034-10-20": "Chung Yeung Festival", "2034-12-25": "Christmas Day", "2034-12-26": "The first weekday after Christmas Day", @@ -1404,8 +1468,10 @@ "2035-04-05": "Ching Ming Festival", "2035-05-01": "Labour Day", "2035-05-15": "The Birthday of the Buddha", - "2035-06-11": "The day following Tuen Ng Festival", - "2035-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2035-06-10": "Tuen Ng Festival", + "2035-06-11": "The day following Tuen Ng Festival; Tuen Ng Festival (observed)", + "2035-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2035-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", "2035-09-17": "The day following the Chinese Mid-Autumn Festival", "2035-10-01": "National Day", "2035-10-09": "Chung Yeung Festival", @@ -1424,7 +1490,7 @@ "2036-05-30": "Tuen Ng Festival", "2036-07-01": "Hong Kong Special Administrative Region Establishment Day", "2036-10-01": "National Day", - "2036-10-06": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2036-10-06": "The second day following the Chinese Mid-Autumn Festival", "2036-10-27": "Chung Yeung Festival", "2036-12-25": "Christmas Day", "2036-12-26": "The first weekday after Christmas Day", @@ -1460,7 +1526,8 @@ "2038-10-01": "National Day", "2038-10-07": "Chung Yeung Festival", "2038-12-25": "Christmas Day", - "2038-12-27": "The first weekday after Christmas Day", + "2038-12-26": "The first weekday after Christmas Day", + "2038-12-27": "The first weekday after Christmas Day; The first weekday after Christmas Day (observed)", "2039-01-01": "The first day of January", "2039-01-24": "Lunar New Year's Day", "2039-01-25": "The second day of Lunar New Year", @@ -1470,15 +1537,18 @@ "2039-04-09": "The day following Good Friday", "2039-04-11": "Easter Monday", "2039-04-30": "The Birthday of the Buddha", - "2039-05-02": "The day following Labour Day", + "2039-05-01": "Labour Day", + "2039-05-02": "Labour Day (observed); The day following Labour Day", "2039-05-27": "Tuen Ng Festival", "2039-07-01": "Hong Kong Special Administrative Region Establishment Day", "2039-10-01": "National Day", "2039-10-03": "The day following the Chinese Mid-Autumn Festival", "2039-10-26": "Chung Yeung Festival", + "2039-12-25": "Christmas Day", "2039-12-26": "The first weekday after Christmas Day", - "2039-12-27": "The second weekday after Christmas Day", - "2040-01-02": "The day following The first day of January", + "2039-12-27": "Christmas Day (observed); The second weekday after Christmas Day", + "2040-01-01": "The first day of January", + "2040-01-02": "The day following the first day of January; The first day of January (observed)", "2040-02-13": "The second day of Lunar New Year", "2040-02-14": "The third day of Lunar New Year", "2040-02-15": "The fourth day of Lunar New Year", @@ -1489,10 +1559,12 @@ "2040-05-01": "Labour Day", "2040-05-18": "The Birthday of the Buddha", "2040-06-14": "Tuen Ng Festival", - "2040-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", + "2040-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2040-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", "2040-09-21": "The day following the Chinese Mid-Autumn Festival", "2040-10-01": "National Day", - "2040-10-15": "The day following Chung Yeung Festival", + "2040-10-14": "Chung Yeung Festival", + "2040-10-15": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "2040-12-25": "Christmas Day", "2040-12-26": "The first weekday after Christmas Day", "2041-01-01": "The first day of January", @@ -1521,7 +1593,8 @@ "2042-04-07": "Easter Monday", "2042-05-01": "Labour Day", "2042-05-26": "The Birthday of the Buddha", - "2042-06-23": "The day following Tuen Ng Festival", + "2042-06-22": "Tuen Ng Festival", + "2042-06-23": "The day following Tuen Ng Festival; Tuen Ng Festival (observed)", "2042-07-01": "Hong Kong Special Administrative Region Establishment Day", "2042-09-29": "The day following the Chinese Mid-Autumn Festival", "2042-10-01": "National Day", @@ -1535,14 +1608,16 @@ "2043-03-27": "Good Friday", "2043-03-28": "The day following Good Friday", "2043-03-30": "Easter Monday", - "2043-04-06": "The day following Ching Ming Festival", + "2043-04-05": "Ching Ming Festival", + "2043-04-06": "Ching Ming Festival (observed); The day following Ching Ming Festival", "2043-05-01": "Labour Day", "2043-05-16": "The Birthday of the Buddha", "2043-06-11": "Tuen Ng Festival", "2043-07-01": "Hong Kong Special Administrative Region Establishment Day", "2043-09-18": "The day following the Chinese Mid-Autumn Festival", "2043-10-01": "National Day", - "2043-10-12": "The day following Chung Yeung Festival", + "2043-10-11": "Chung Yeung Festival", + "2043-10-12": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "2043-12-25": "Christmas Day", "2043-12-26": "The first weekday after Christmas Day", "2044-01-01": "The first day of January", @@ -1553,16 +1628,19 @@ "2044-04-15": "Good Friday", "2044-04-16": "The day following Good Friday", "2044-04-18": "Easter Monday", - "2044-05-02": "The day following Labour Day", + "2044-05-01": "Labour Day", + "2044-05-02": "Labour Day (observed); The day following Labour Day", "2044-05-05": "The Birthday of the Buddha", "2044-05-31": "Tuen Ng Festival", "2044-07-01": "Hong Kong Special Administrative Region Establishment Day", "2044-10-01": "National Day", "2044-10-06": "The day following the Chinese Mid-Autumn Festival", "2044-10-29": "Chung Yeung Festival", + "2044-12-25": "Christmas Day", "2044-12-26": "The first weekday after Christmas Day", - "2044-12-27": "The second weekday after Christmas Day", - "2045-01-02": "The day following The first day of January", + "2044-12-27": "Christmas Day (observed); The second weekday after Christmas Day", + "2045-01-01": "The first day of January", + "2045-01-02": "The day following the first day of January; The first day of January (observed)", "2045-02-17": "Lunar New Year's Day", "2045-02-18": "The second day of Lunar New Year", "2045-02-20": "The fourth day of Lunar New Year", @@ -1575,7 +1653,9 @@ "2045-06-19": "Tuen Ng Festival", "2045-07-01": "Hong Kong Special Administrative Region Establishment Day", "2045-09-26": "The day following the Chinese Mid-Autumn Festival", - "2045-10-02": "The day following National Day", + "2045-10-01": "National Day", + "2045-10-02": "National Day (observed)", + "2045-10-03": "The day following National Day", "2045-10-18": "Chung Yeung Festival", "2045-12-25": "Christmas Day", "2045-12-26": "The first weekday after Christmas Day", @@ -1588,10 +1668,12 @@ "2046-03-26": "Easter Monday", "2046-04-05": "Ching Ming Festival", "2046-05-01": "Labour Day", - "2046-05-14": "The day following The Birthday of the Buddha", + "2046-05-13": "The Birthday of the Buddha", + "2046-05-14": "The Birthday of the Buddha (observed); The day following the Birthday of the Buddha", "2046-06-08": "Tuen Ng Festival", - "2046-07-02": "The day following Hong Kong Special Administrative Region Establishment Day", - "2046-09-17": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2046-07-01": "Hong Kong Special Administrative Region Establishment Day", + "2046-07-02": "Hong Kong Special Administrative Region Establishment Day (observed); The day following Hong Kong Special Administrative Region Establishment Day", + "2046-09-17": "The second day following the Chinese Mid-Autumn Festival", "2046-10-01": "National Day", "2046-10-08": "Chung Yeung Festival", "2046-12-25": "Christmas Day", @@ -1610,7 +1692,8 @@ "2047-07-01": "Hong Kong Special Administrative Region Establishment Day", "2047-10-01": "National Day", "2047-10-05": "The day following the Chinese Mid-Autumn Festival", - "2047-10-28": "The day following Chung Yeung Festival", + "2047-10-27": "Chung Yeung Festival", + "2047-10-28": "Chung Yeung Festival (observed); The day following Chung Yeung Festival", "2047-12-25": "Christmas Day", "2047-12-26": "The first weekday after Christmas Day", "2048-01-01": "The first day of January", @@ -1633,19 +1716,22 @@ "2049-02-02": "Lunar New Year's Day", "2049-02-03": "The second day of Lunar New Year", "2049-02-04": "The third day of Lunar New Year", - "2049-04-05": "The day following Ching Ming Festival", + "2049-04-04": "Ching Ming Festival", + "2049-04-05": "Ching Ming Festival (observed); The day following Ching Ming Festival", "2049-04-16": "Good Friday", "2049-04-17": "The day following Good Friday", "2049-04-19": "Easter Monday", "2049-05-01": "Labour Day", - "2049-05-10": "The day following The Birthday of the Buddha", + "2049-05-09": "The Birthday of the Buddha", + "2049-05-10": "The Birthday of the Buddha (observed); The day following the Birthday of the Buddha", "2049-06-04": "Tuen Ng Festival", "2049-07-01": "Hong Kong Special Administrative Region Establishment Day", - "2049-09-13": "The second day of the Chinese Mid-Autumn Festival (Monday)", + "2049-09-13": "The second day following the Chinese Mid-Autumn Festival", "2049-10-01": "National Day", "2049-10-05": "Chung Yeung Festival", "2049-12-25": "Christmas Day", - "2049-12-27": "The first weekday after Christmas Day", + "2049-12-26": "The first weekday after Christmas Day", + "2049-12-27": "The first weekday after Christmas Day; The first weekday after Christmas Day (observed)", "2050-01-01": "The first day of January", "2050-01-24": "The second day of Lunar New Year", "2050-01-25": "The third day of Lunar New Year", @@ -1654,13 +1740,16 @@ "2050-04-08": "Good Friday", "2050-04-09": "The day following Good Friday", "2050-04-11": "Easter Monday", - "2050-05-02": "The day following Labour Day", + "2050-05-01": "Labour Day", + "2050-05-02": "Labour Day (observed); The day following Labour Day", "2050-05-28": "The Birthday of the Buddha", "2050-06-23": "Tuen Ng Festival", "2050-07-01": "Hong Kong Special Administrative Region Establishment Day", - "2050-10-01": "The day following the Chinese Mid-Autumn Festival", - "2050-10-03": "The day following National Day", + "2050-10-01": "National Day; The day following the Chinese Mid-Autumn Festival", + "2050-10-03": "National Day (observed)", + "2050-10-04": "The day following National Day", "2050-10-24": "Chung Yeung Festival", + "2050-12-25": "Christmas Day", "2050-12-26": "The first weekday after Christmas Day", - "2050-12-27": "The second weekday after Christmas Day" + "2050-12-27": "Christmas Day (observed); The second weekday after Christmas Day" } diff --git a/tests/countries/test_hongkong.py b/tests/countries/test_hongkong.py index 0c348cc5a..58c08fbc5 100644 --- a/tests/countries/test_hongkong.py +++ b/tests/countries/test_hongkong.py @@ -12,52 +12,118 @@ from unittest import TestCase -from holidays.countries.hongkong import HongKong, HK, HKG +from holidays.constants import OPTIONAL +from holidays.countries.hongkong import HongKong, HK, HKG, CHRISTMAS, WINTER_SOLSTICE from tests.common import CommonCountryTests class TestHongKong(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): - super().setUpClass(HongKong, years=range(2006, 2024)) + super().setUpClass(HongKong, years=range(1963, 2050), years_non_observed=range(1963, 2050)) + cls.opt_holidays = HongKong(categories=(OPTIONAL,), years=range(1946, 2050)) def test_country_aliases(self): self.assertAliases(HongKong, HK, HKG) def test_no_holidays(self): - self.assertNoHolidays(HongKong(years=1945)) + self.assertNoHolidays(HongKong(years=1962)) + self.assertNoHolidays(HongKong(categories=(OPTIONAL,), years=1945)) def test_special_holidays(self): - self.assertHoliday("1997-07-02", "2015-09-03") - - def test_common(self): - self.assertNonObservedHoliday("2019-01-01") - self.assertNonObservedHolidayName( - "The first day of January", - "2019-01-01", + self.assertHoliday( + "1981-07-29", + "1986-10-22", + "1997-07-02", + "2015-09-03", + ) + self.assertHoliday( + self.opt_holidays, + "1981-07-29", + "1986-10-22", + "1997-06-28", + "1997-06-30", + "1997-07-02", + "1997-08-18", + "1997-10-02", + "1998-08-17", + "1998-10-02", + "1999-12-31", + "2015-09-03", ) def test_first_day_of_january(self): - exception_years = {2006, 2012, 2017, 2023} + name = "The first day of January" + name_observed = f"{name} (observed)" + name_following = "The day following the first day of January" + + self.assertHolidayName(name, (f"{year}-01-01" for year in range(1977, 2050))) + self.assertNoHolidayName(name, range(1963, 1977)) + obs_dt = ( + "1978-01-02", + "1984-01-02", + "1989-01-02", + "1995-01-02", + "2006-01-02", + "2012-01-02", + "2017-01-02", + "2023-01-02", + ) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) + + exception_years = { + 1950, + 1956, + 1961, + 1967, + 1978, + 1984, + 1989, + 1995, + 2006, + 2012, + 2017, + 2023, + 2034, + 2040, + 2045, + } self.assertHolidayName( - "The first day of January", - (f"{year}-01-01" for year in set(range(2006, 2024)).difference(exception_years)), + name, + self.opt_holidays, + (f"{year}-01-01" for year in set(range(1946, 2050)).difference(exception_years)), ) self.assertHolidayName( - "The day following The first day of January", - (f"{year}-01-02" for year in exception_years), + name_following, self.opt_holidays, (f"{year}-01-02" for year in exception_years) ) def test_lunar_new_year(self): + name_eve = "The day preceding Lunar New Year's Day" + name = "Lunar New Year's Day" + name_second = "The second day of Lunar New Year" + name_third = "The third day of Lunar New Year" + name_fourth = "The fourth day of Lunar New Year" + self.assertHolidayName( - "The day preceding Lunar New Year's Day", + name_eve, + "1983-02-12", + "1986-02-08", + "1990-01-26", + "1991-02-14", + "1993-01-22", + "1997-02-06", + "2000-02-04", + "2003-01-31", "2006-01-28", "2007-02-17", "2010-02-13", ) + self.assertNoHolidayName(name_eve, range(1963, 1983), range(2012, 2050)) + self.assertNoHolidayName(name_eve, self.opt_holidays, range(1946, 1983), range(2012, 2050)) self.assertHolidayName( - "Lunar New Year's Day", + name, "2008-02-07", "2009-01-26", "2011-02-03", @@ -71,10 +137,18 @@ def test_lunar_new_year(self): "2020-01-25", "2021-02-12", "2022-02-01", + "2024-02-10", + ) + exception_years = {1983, 1986, 2006, 2007, 2010, 2013, 2023, 2030, 2034, 2037, 2040} + self.assertHolidayName(name, set(range(1963, 2050)).difference(exception_years)) + self.assertNoHolidayName(name, exception_years) + self.assertHolidayName( + name, self.opt_holidays, set(range(1946, 2050)).difference(exception_years) ) + self.assertNoHolidayName(name, self.opt_holidays, exception_years) self.assertHolidayName( - "The second day of Lunar New Year", + name_second, "2006-01-30", "2007-02-19", "2008-02-08", @@ -92,9 +166,16 @@ def test_lunar_new_year(self): "2022-02-02", "2023-01-23", ) + exception_years = {1990, 1993, 2000, 2003, 2017, 2020, 2024, 2027, 2044, 2047} + self.assertHolidayName(name_second, set(range(1963, 2050)).difference(exception_years)) + self.assertNoHolidayName(name_second, exception_years) + self.assertHolidayName( + name_second, self.opt_holidays, set(range(1946, 2050)).difference(exception_years) + ) + self.assertNoHolidayName(name_second, self.opt_holidays, exception_years) self.assertHolidayName( - "The third day of Lunar New Year", + name_third, "2006-01-31", "2007-02-20", "2008-02-09", @@ -110,10 +191,18 @@ def test_lunar_new_year(self): "2020-01-27", "2022-02-03", "2023-01-24", + "2024-02-12", + ) + exception_years = {1991, 1997, 2014, 2018, 2021, 2041, 2045, 2048} + self.assertHolidayName(name_third, set(range(1977, 2050)).difference(exception_years)) + self.assertNoHolidayName(name_third, exception_years, range(1963, 1977)) + self.assertHolidayName( + name_third, self.opt_holidays, set(range(1968, 2050)).difference(exception_years) ) + self.assertNoHolidayName(name_third, self.opt_holidays, exception_years, range(1946, 1968)) self.assertHolidayName( - "The fourth day of Lunar New Year", + name_fourth, "2013-02-13", "2014-02-03", "2017-01-31", @@ -121,38 +210,52 @@ def test_lunar_new_year(self): "2020-01-28", "2021-02-15", "2023-01-25", + "2024-02-13", ) - - def test_ching_ming_festival(self): - self.assertHolidayName( - "Ching Ming Festival", - "2006-04-05", - "2007-04-05", - "2008-04-04", - "2009-04-04", - "2011-04-05", - "2012-04-04", - "2013-04-04", - "2014-04-05", - "2016-04-04", - "2017-04-04", - "2018-04-05", - "2019-04-05", - "2020-04-04", - "2022-04-05", - "2023-04-05", + present_years = { + 2013, + 2014, + 2017, + 2018, + 2020, + 2021, + 2023, + 2024, + 2027, + 2030, + 2034, + 2037, + 2040, + 2041, + 2044, + 2045, + 2047, + 2048, + } + self.assertHolidayName(name_fourth, present_years) + self.assertNoHolidayName(name_fourth, set(range(1963, 2050)).difference(present_years)) + self.assertHolidayName(name_fourth, self.opt_holidays, present_years) + self.assertNoHolidayName( + name_fourth, self.opt_holidays, set(range(1946, 2050)).difference(present_years) ) + def test_good_friday(self): + name = "Good Friday" + self.assertHolidayName( - "The day following Ching Ming Festival", - "2010-04-06", - "2015-04-06", - "2021-04-05", + name, + "2028-04-14", + "2029-03-30", + "2030-04-19", + "2031-04-11", + "2032-03-26", + "2033-04-15", + "2034-04-07", + "2035-03-23", ) - - def test_easter(self): self.assertHolidayName( - "Good Friday", + name, + self.opt_holidays, "2006-04-14", "2007-04-06", "2008-03-21", @@ -171,10 +274,27 @@ def test_easter(self): "2021-04-02", "2022-04-15", "2023-04-07", + "2024-03-29", ) + self.assertHolidayName(name, range(2028, 2050)) + self.assertNoHolidayName(name, range(1963, 2028)) + self.assertHolidayName(name, self.opt_holidays, range(1946, 2050)) + def test_holy_saturday(self): + name = "The day following Good Friday" + + self.assertHolidayName( + name, + "2030-04-20", + "2031-04-12", + "2032-03-27", + "2033-04-16", + "2034-04-08", + "2035-03-24", + ) self.assertHolidayName( - "The day following Good Friday", + name, + self.opt_holidays, "2006-04-15", "2007-04-07", "2008-03-22", @@ -193,10 +313,32 @@ def test_easter(self): "2021-04-03", "2022-04-16", "2023-04-08", + "2024-03-30", ) + self.assertHolidayName(name, range(2030, 2050)) + self.assertNoHolidayName(name, range(1963, 2030)) + self.assertHolidayName(name, self.opt_holidays, range(1946, 2050)) + + def test_easter_monday(self): + name = "Easter Monday" + name_following = "The day following Easter Monday" self.assertHolidayName( - "Easter Monday", + name, + "2026-04-06", + "2027-03-29", + "2028-04-17", + "2029-04-02", + "2030-04-22", + "2031-04-14", + "2032-03-29", + "2033-04-18", + "2034-04-10", + "2035-03-26", + ) + self.assertHolidayName( + name, + self.opt_holidays, "2006-04-17", "2007-04-09", "2008-03-24", @@ -213,17 +355,153 @@ def test_easter(self): "2020-04-13", "2022-04-18", "2023-04-10", + "2024-04-01", + ) + exception_years = {2015, 2021, 2026} + self.assertHolidayName(name, range(2026, 2050)) + self.assertNoHolidayName(name, range(1963, 2026)) + self.assertHolidayName( + name, self.opt_holidays, set(range(1946, 2050)).difference(exception_years) + ) + self.assertHolidayName( + name_following, + self.opt_holidays, + "2015-04-07", + "2021-04-06", + "2026-04-07", + ) + + def test_ching_ming_festival(self): + name = "Ching Ming Festival" + name_observed = f"{name} (observed)" + name_following = "The day following Ching Ming Festival" + + self.assertHolidayName( + name, + "2006-04-05", + "2007-04-05", + "2008-04-04", + "2009-04-04", + "2011-04-05", + "2012-04-04", + "2013-04-04", + "2014-04-05", + "2016-04-04", + "2017-04-04", + "2018-04-05", + "2019-04-05", + "2020-04-04", + "2022-04-05", + "2023-04-05", + "2024-04-04", + ) + obs_dt = ( + "1970-04-06", + "1976-04-05", + "1981-04-06", + "1987-04-06", + "1998-04-06", + "2004-04-05", + "2015-04-06", + "2021-04-05", ) + self.assertHolidayName(name, range(1963, 2050)) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) - self.assertHolidayName("The day following Easter Monday", "2015-04-07", "2021-04-06") + self.assertHolidayName( + name, + self.opt_holidays, + "2006-04-05", + "2007-04-05", + "2008-04-04", + "2009-04-04", + "2011-04-05", + "2012-04-04", + "2013-04-04", + "2014-04-05", + "2016-04-04", + "2017-04-04", + "2018-04-05", + "2019-04-05", + "2020-04-04", + "2022-04-05", + "2023-04-05", + "2024-04-04", + ) + exception_years = { + 1970, + 1976, + 1981, + 1987, + 1988, + 1998, + 1999, + 2004, + 2010, + 2015, + 2021, + 2026, + 2032, + 2043, + 2049, + } + self.assertHolidayName( + name_following, + self.opt_holidays, + "1970-04-06", + "1976-04-05", + "1981-04-06", + "1987-04-06", + "1988-04-05", + "1998-04-06", + "1999-04-06", + "2004-04-05", + "2010-04-06", + "2015-04-06", + "2021-04-05", + ) + self.assertHolidayName( + name, self.opt_holidays, set(range(1968, 2050)).difference(exception_years) + ) + self.assertNoHolidayName(name, self.opt_holidays, exception_years, range(1946, 1968)) def test_birthday_of_buddha(self): name = "The Birthday of the Buddha" - name_following = f"The day following {name}" + name_observed = f"{name} (observed)" + name_following = "The day following the Birthday of the Buddha" self.assertHolidayName( name, + "2022-05-08", + "2023-05-26", + "2024-05-15", + "2025-05-04", + "2026-05-24", + "2027-05-13", + "2028-05-02", + "2029-05-20", + "2030-05-09", + "2031-05-28", + "2032-05-16", + "2033-05-06", + "2034-05-25", + "2035-05-15", + ) + obs_dt = ( + "2022-05-09", + "2025-05-05", + ) + self.assertHolidayName(name, range(2022, 2050)) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoHolidayName(name, range(1963, 2022)) + self.assertNoNonObservedHoliday(obs_dt) + + self.assertHolidayName( + name, + self.opt_holidays, "1999-05-22", + "2000-05-11", "2006-05-05", "2007-05-24", "2008-05-12", @@ -240,29 +518,60 @@ def test_birthday_of_buddha(self): "2020-04-30", "2021-05-19", "2023-05-26", + "2024-05-15", ) - - self.assertHolidayName(name_following, "2019-05-13", "2022-05-09") - - self.assertNoHolidayName(name, 1998) - self.assertNoHolidayName(name_following, 1998) + exception_years = {2002, 2005, 2019, 2022, 2025, 2026, 2029, 2032, 2046, 2049} + self.assertHolidayName( + name_following, + self.opt_holidays, + "2002-05-20", + "2005-05-16", + "2019-05-13", + "2022-05-09", + "2025-05-05", + ) + self.assertHolidayName( + name, self.opt_holidays, set(range(1999, 2050)).difference(exception_years) + ) + self.assertNoHolidayName(name, self.opt_holidays, exception_years, range(1946, 1999)) def test_labour_day(self): - exception_years = {2005, 2011, 2016, 2022} name = "Labour Day" - name_following = f"The day following {name}" + name_observed = f"{name} (observed)" + name_following = "The day following Labour Day" + + self.assertHolidayName(name, (f"{year}-05-01" for year in range(1999, 2050))) + self.assertNoHolidayName(name, range(1963, 1999)) + obs_dt = ( + "2005-05-02", + "2011-05-02", + "2016-05-02", + "2022-05-02", + ) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) + + exception_years = {2005, 2011, 2016, 2022, 2033, 2039, 2044} + self.assertHolidayName( + name, + self.opt_holidays, + (f"{year}-05-01" for year in set(range(1999, 2050)).difference(exception_years)), + ) self.assertHolidayName( - name, (f"{year}-05-01" for year in set(range(1999, 2024)).difference(exception_years)) + name_following, self.opt_holidays, (f"{year}-05-02" for year in exception_years) ) - self.assertHolidayName(name_following, (f"{year}-05-02" for year in exception_years)) - self.assertNoHolidayName(name, 1998) - self.assertNoHolidayName(name_following, 1998) + self.assertNoHolidayName(name, self.opt_holidays, range(1946, 1999)) def test_tuen_ng_festival(self): + name = "Tuen Ng Festival" + name_observed = f"{name} (observed)" + name_following = "The day following Tuen Ng Festival" + self.assertHolidayName( - "Tuen Ng Festival", + name, "2006-05-31", "2007-06-19", + "2008-06-08", "2009-05-28", "2010-06-16", "2011-06-06", @@ -278,27 +587,105 @@ def test_tuen_ng_festival(self): "2021-06-14", "2022-06-03", "2023-06-22", + "2024-06-10", ) + obs_dt = ( + "1964-06-15", + "1987-06-01", + "1991-06-17", + "2008-06-09", + ) + self.assertHolidayName(name, range(1963, 2050)) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) - self.assertHolidayName("The day following Tuen Ng Festival", "2008-06-09") + self.assertHolidayName( + name, + self.opt_holidays, + "2006-05-31", + "2007-06-19", + "2009-05-28", + "2010-06-16", + "2011-06-06", + "2012-06-23", + "2013-06-12", + "2014-06-02", + "2015-06-20", + "2016-06-09", + "2017-05-30", + "2018-06-18", + "2019-06-07", + "2020-06-25", + "2021-06-14", + "2022-06-03", + "2023-06-22", + "2024-06-10", + ) + exception_years = {1987, 1991, 2008, 2028, 2035, 2042} + self.assertHolidayName( + name_following, + self.opt_holidays, + "1987-06-01", + "1991-06-17", + "2008-06-09", + ) + self.assertHolidayName( + name, self.opt_holidays, set(range(1968, 2050)).difference(exception_years) + ) + self.assertNoHolidayName(name, self.opt_holidays, exception_years, range(1946, 1968)) def test_hksar_day(self): - exception_years = {2001, 2007, 2012, 2018} name = "Hong Kong Special Administrative Region Establishment Day" - name_following = f"The day following {name}" + name_observed = f"{name} (observed)" + name_following = ( + "The day following Hong Kong Special Administrative Region Establishment Day" + ) + + self.assertHolidayName(name, (f"{year}-07-01" for year in range(1997, 2050))) + self.assertNoHolidayName(name, range(1963, 1997)) + obs_dt = ( + "2001-07-02", + "2007-07-02", + "2012-07-02", + "2018-07-02", + ) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) + + exception_years = {2001, 2007, 2012, 2018, 2029, 2035, 2040, 2046} self.assertHolidayName( - name, (f"{year}-07-01" for year in set(range(1997, 2024)).difference(exception_years)) + name, + self.opt_holidays, + (f"{year}-07-01" for year in set(range(1997, 2050)).difference(exception_years)), ) - self.assertHolidayName(name_following, (f"{year}-07-02" for year in exception_years)) - self.assertNoHolidayName(name, 1996) - self.assertNoHolidayName(name_following, 1996) + self.assertHolidayName( + name_following, self.opt_holidays, (f"{year}-07-02" for year in exception_years) + ) + self.assertNoHolidayName(name, self.opt_holidays, range(1983, 1997)) def test_mid_autumn_festival(self): - self.assertHolidayName( - "The day following the Chinese Mid-Autumn Festival", - "2003-09-12", - "2004-09-29", - "2005-09-19", + name = "Chinese Mid-Autumn Festival" + name_following = "The day following the Chinese Mid-Autumn Festival" + name_second = "The second day following the Chinese Mid-Autumn Festival" + + dt = ( + "1963-10-02", + "1965-09-10", + "1966-09-29", + "1967-09-18", + "1995-09-09", + "2002-09-21", + "2009-10-03", + ) + present_years = {1963, 1965, 1966, 1967, 1995, 2002, 2009} + self.assertHolidayName(name, dt) + self.assertNoHolidayName(name, set(range(1963, 2050)).difference(present_years)) + self.assertHolidayName(name, self.opt_holidays, dt) + self.assertNoHolidayName( + name, self.opt_holidays, set(range(1963, 2050)).difference(present_years), 1957, 1961 + ) + + dt = ( "2006-10-07", "2007-09-26", "2008-09-15", @@ -316,32 +703,50 @@ def test_mid_autumn_festival(self): "2021-09-22", "2023-09-30", "2024-09-18", - "2025-10-07", - "2026-09-26", ) - - self.assertHolidayName("Chinese Mid-Autumn Festival", "2002-09-21", "2009-10-03") - + exception_years = { + 1963, + 1965, + 1966, + 1967, + 1975, + 1981, + 1995, + 2002, + 2009, + 2022, + 2029, + 2036, + 2046, + 2049, + } + self.assertHolidayName(name_following, dt) + self.assertHolidayName(name_following, self.opt_holidays, dt) + self.assertHolidayName(name_following, set(range(1963, 2050)).difference(exception_years)) self.assertHolidayName( - "The second day of the Chinese Mid-Autumn Festival (Monday)", - "2022-09-12", + name_following, self.opt_holidays, set(range(1963, 2050)).difference(exception_years) ) - def test_national_day(self): - exception_years = {2000, 2006, 2012, 2017, 2023} - name = "National Day" - name_following = f"The day following {name}" - self.assertHolidayName( - name, (f"{year}-10-01" for year in set(range(1997, 2024)).difference(exception_years)) + dt = ( + "1975-09-22", + "1981-09-14", + "2022-09-12", + ) + present_years = {1975, 1981, 2022, 2029, 2036, 2046, 2049} + self.assertHolidayName(name_second, dt) + self.assertHolidayName(name_second, self.opt_holidays, dt) + self.assertNoHolidayName(name_second, set(range(1963, 2050)).difference(present_years)) + self.assertNoHolidayName( + name_second, self.opt_holidays, set(range(1946, 2050)).difference(present_years) ) - self.assertHolidayName(name, "1997-10-02", "1998-10-02") - self.assertHolidayName(name_following, (f"{year}-10-02" for year in exception_years)) - self.assertNoHolidayName(name, 1996) - self.assertNoHolidayName(name_following, 1996) def test_chung_yeung_festival(self): + name = "Chung Yeung Festival" + name_observed = f"{name} (observed)" + name_following = "The day following Chung Yeung Festival" + self.assertHolidayName( - "Chung Yeung Festival", + name, "2006-10-30", "2007-10-19", "2008-10-07", @@ -349,66 +754,623 @@ def test_chung_yeung_festival(self): "2010-10-16", "2011-10-05", "2012-10-23", + "2013-10-13", "2014-10-02", "2015-10-21", + "2016-10-09", "2017-10-28", "2018-10-17", "2019-10-07", + "2020-10-25", "2021-10-14", "2022-10-04", "2023-10-23", + "2024-10-11", ) + obs_dt = ( + "1986-10-13", + "1989-10-09", + "1992-10-05", + "1996-10-21", + "1999-10-18", + "2013-10-14", + "2016-10-10", + "2020-10-26", + ) + self.assertHolidayName(name, range(1977, 2050)) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoHolidayName(name, range(1963, 1977)) + self.assertNoNonObservedHoliday(obs_dt) self.assertHolidayName( - "The day following Chung Yeung Festival", + name, + self.opt_holidays, + "2006-10-30", + "2007-10-19", + "2008-10-07", + "2009-10-26", + "2010-10-16", + "2011-10-05", + "2012-10-23", + "2014-10-02", + "2015-10-21", + "2017-10-28", + "2018-10-17", + "2019-10-07", + "2021-10-14", + "2022-10-04", + "2023-10-23", + "2024-10-11", + ) + exception_years = { + 1969, + 1972, + 1976, + 1986, + 1989, + 1992, + 1996, + 1999, + 2013, + 2016, + 2020, + 2026, + 2040, + 2043, + 2047, + } + self.assertHolidayName( + name_following, + self.opt_holidays, + "1969-10-20", + "1972-10-16", + "1976-11-01", + "1986-10-13", + "1989-10-09", + "1992-10-05", + "1996-10-21", + "1999-10-18", "2013-10-14", "2016-10-10", "2020-10-26", ) + self.assertHolidayName( + name, self.opt_holidays, set(range(1968, 2050)).difference(exception_years) + ) + self.assertNoHolidayName(name, self.opt_holidays, exception_years, range(1946, 1968)) + + def test_national_day(self): + name = "National Day" + name_observed = f"{name} (observed)" + name_following = "The day following National Day" + + self.assertHolidayName(name, (f"{year}-10-01" for year in range(1997, 2050))) + self.assertNoHolidayName(name, range(1963, 1997)) + obs_dt = ( + "2000-10-02", + "2006-10-02", + "2012-10-02", + "2017-10-02", + "2023-10-02", + ) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) + + exception_years = {2000, 2006, 2012, 2017, 2023, 2028, 2033, 2034, 2045} + self.assertHolidayName( + name, + self.opt_holidays, + (f"{year}-10-01" for year in set(range(1997, 2050)).difference(exception_years)), + ) + self.assertHolidayName( + name_following, + self.opt_holidays, + "1997-10-02", + "1998-10-02", + "2000-10-02", + "2006-10-02", + "2012-10-02", + "2017-10-02", + "2023-10-02", + "2028-10-02", + "2033-10-03", + "2034-10-02", + "2045-10-02", + ) + self.assertNoHolidayName(name, self.opt_holidays, range(1946, 1997)) + + def test_winter_solstice(self): + name = "Chinese Winter Solstice Festival" + name_observed = f"{name} (observed)" + + holidays_with_winter_solstice = HongKong( + preferred_discretionary_holidays=(WINTER_SOLSTICE,), years=range(1963, 2050) + ) + self.assertHolidayName( + name, + holidays_with_winter_solstice, + "2006-12-22", + "2007-12-22", + "2008-12-21", + "2009-12-22", + "2010-12-22", + "2011-12-22", + "2012-12-21", + "2013-12-22", + "2014-12-22", + "2015-12-22", + "2016-12-21", + "2017-12-22", + "2018-12-22", + "2019-12-22", + "2020-12-21", + "2021-12-21", + "2022-12-22", + "2023-12-22", + "2024-12-21", + ) + self.assertHolidayName(name, holidays_with_winter_solstice, range(1963, 2050)) + self.assertNoHolidayName("Christmas Day", holidays_with_winter_solstice) + + obs_dt = ( + "1963-12-23", + "1968-12-23", + "1974-12-23", + "1985-12-23", + "1991-12-23", + "2002-12-23", + "2008-12-22", + "2013-12-23", + "2019-12-23", + ) + self.assertHolidayName(name_observed, holidays_with_winter_solstice, obs_dt) + self.assertNoNonObservedHoliday( + HongKong(observed=False, preferred_discretionary_holidays=(WINTER_SOLSTICE,)), obs_dt + ) + + self.assertNoHolidayName(name, self.opt_holidays) def test_christmas_day(self): - exception_years = {2011, 2016, 2022} name = "Christmas Day" + name_observed = f"{name} (observed)" + name_first = "The first weekday after Christmas Day" + name_first_observed = f"{name_first} (observed)" + name_second = "The second weekday after Christmas Day" + + self.assertHolidayName(name, (f"{year}-12-25" for year in range(1963, 2050))) + obs_dt = ( + "1966-12-26", + "1977-12-26", + "1983-12-26", + "1988-12-26", + "1994-12-26", + "2005-12-26", + "2011-12-26", + "2016-12-26", + "2022-12-26", + "2033-12-27", + "2039-12-27", + "2044-12-27", + ) + self.assertHolidayName(name_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) + + self.assertHolidayName(name_first, (f"{year}-12-26" for year in range(2024, 2050))) + self.assertNoHolidayName(name_first, range(1963, 2024)) + obs_dt = ( + "2027-12-27", + "2032-12-27", + "2038-12-27", + "2049-12-27", + ) + self.assertHolidayName(name_first_observed, obs_dt) + self.assertNoNonObservedHoliday(obs_dt) + + exception_years = { + 1949, + 1955, + 1960, + 1966, + 1977, + 1983, + 1988, + 1994, + 2005, + 2011, + 2016, + 2022, + 2033, + 2039, + 2044, + } + self.assertHolidayName( + name, + self.opt_holidays, + (f"{year}-12-25" for year in set(range(1946, 2050)).difference(exception_years)), + ) self.assertHolidayName( - name, (f"{year}-12-25" for year in set(range(2006, 2024)).difference(exception_years)) + name_second, self.opt_holidays, (f"{year}-12-27" for year in exception_years) + ) + exception_years = { + 1948, + 1954, + 1965, + 1971, + 1976, + 1982, + 1993, + 1999, + 2004, + 2010, + 2021, + 2027, + 2032, + 2038, + 2049, + } + self.assertHolidayName( + name_first, + self.opt_holidays, + (f"{year}-12-26" for year in set(range(1946, 2050)).difference(exception_years)), + ) + self.assertHolidayName( + name_first, self.opt_holidays, (f"{year}-12-27" for year in exception_years) + ) + + def test_queens_birthday(self): + name = "Queen's Birthday" + self.assertNoHolidayName(name) + self.assertHolidayName(name, self.opt_holidays, range(1952, 1998)) + self.assertNoHolidayName(name, self.opt_holidays, range(1946, 1952), range(1998, 2050)) + self.assertHolidayName(name, self.opt_holidays, "1952-06-05") + self.assertHolidayName( + name, self.opt_holidays, (f"{year}-04-21" for year in range(1953, 1983)) + ) + self.assertHolidayName( + name, + self.opt_holidays, + "1983-06-11", + "1983-06-13", + "1984-06-09", + "1984-06-11", + "1985-06-08", + "1985-06-10", + "1986-06-14", + "1986-06-16", + "1987-06-13", + "1987-06-15", + "1988-06-11", + "1988-06-13", + "1989-06-10", + "1989-06-12", + "1990-06-09", + "1990-06-11", + "1991-06-08", + "1991-06-10", + "1992-06-13", + "1992-06-15", + "1993-06-12", + "1993-06-14", + "1994-06-11", + "1994-06-13", + "1995-06-10", + "1995-06-12", + "1996-06-08", + "1996-06-10", + "1997-06-28", + "1997-06-30", ) - self.assertNoHolidayName(name, exception_years) - exception_years = {2010, 2021} - name = "The first weekday after Christmas Day" + def test_whit_monday(self): + name = "Monday after Pentecost" + self.assertNoHolidayName(name) self.assertHolidayName( - name, (f"{year}-12-26" for year in set(range(2006, 2024)).difference(exception_years)) + name, + self.opt_holidays, + "1946-06-10", + "1947-05-26", + "1948-05-17", + "1949-06-06", + "1950-05-29", + "1951-05-14", + "1952-06-02", + "1953-05-25", + "1954-06-07", + "1955-05-30", + "1956-05-21", + "1957-06-10", + "1958-05-26", + "1959-05-18", + "1960-06-06", + "1961-05-22", + "1962-06-11", + "1963-06-03", + "1964-05-18", + "1965-06-07", + "1966-05-30", + "1967-05-15", ) - self.assertHolidayName(name, (f"{year}-12-27" for year in exception_years)) + self.assertNoHolidayName(name, self.opt_holidays, range(1968, 2050)) + def test_national_day_of_the_republic(self): + name = "National Day of the Republic of China" + self.assertNoHolidayName(name) self.assertHolidayName( - "The second weekday after Christmas Day", - "2011-12-27", - "2016-12-27", - "2022-12-27", + name, + self.opt_holidays, + "1946-10-14", + "1947-10-13", + "1948-10-11", + "1949-10-10", + "1950-10-09", + "1951-10-08", + "1952-10-13", + "1953-10-12", + "1954-10-11", + "1955-10-10", + "1956-10-08", + "1957-10-14", + "1958-10-13", + "1959-10-12", + "1960-10-10", + "1961-10-09", + "1962-10-08", + "1963-10-14", + "1964-10-12", + "1965-10-11", + "1966-10-10", + "1967-10-09", ) + self.assertNoHolidayName(name, self.opt_holidays, range(1968, 2050)) - def test_old_holidays(self): - self.assertHoliday( - # Queen's Birthday - "1952-06-09", - "1987-06-08", - "1990-06-11", - "1997-06-09", - # Anniversary of the liberation of Hong Kong - "1980-08-24", - "1990-08-26", - "1996-08-25", - # Anniversary of the victory in the Second Sino-Japanese War - "1980-08-25", - "1990-08-27", - "1996-08-26", - "1997-08-24", - "1998-08-30", - ) - - self.assertNoHolidayName("Queen's Birthday", 1951, 1998) - self.assertNoHolidayName("Anniversary of the liberation of Hong Kong", 1997) - self.assertNoHolidayName( - "Anniversary of the victory in the Second Sino-Japanese War", 1999 + def test_monday_after_peace_memorial_day(self): + name = "Monday after Peace Memorial Day" + self.assertNoHolidayName(name) + self.assertHolidayName( + name, + self.opt_holidays, + "1946-11-11", + "1947-11-10", + "1948-11-15", + "1949-11-14", + "1950-11-13", + "1951-11-12", + "1952-11-10", + "1953-11-09", + "1954-11-15", + "1955-11-14", + "1956-11-12", + "1957-11-11", + "1958-11-10", + "1959-11-09", + "1960-11-14", + "1961-11-13", + "1962-11-12", + "1963-11-11", + "1964-11-09", + "1965-11-15", + "1966-11-14", + "1967-11-13", + ) + self.assertNoHolidayName(name, self.opt_holidays, range(1968, 2050)) + + def test_2020(self): + # https://www.labour.gov.hk/eng/news/latest_holidays2020.htm + self.assertHolidays( + HongKong(years=2020, preferred_discretionary_holidays=(CHRISTMAS, WINTER_SOLSTICE)), + ("2020-01-01", "The first day of January"), + ("2020-01-25", "Lunar New Year's Day"), + ("2020-01-27", "The third day of Lunar New Year"), + ("2020-01-28", "The fourth day of Lunar New Year"), + ("2020-04-04", "Ching Ming Festival"), + ("2020-05-01", "Labour Day"), + ("2020-06-25", "Tuen Ng Festival"), + ("2020-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2020-10-01", "National Day"), + ("2020-10-02", "The day following the Chinese Mid-Autumn Festival"), + ("2020-10-25", "Chung Yeung Festival"), + ("2020-10-26", "Chung Yeung Festival (observed)"), + ("2020-12-21", "Chinese Winter Solstice Festival"), + ("2020-12-25", "Christmas Day"), + ) + + def test_2021(self): + # https://www.labour.gov.hk/eng/news/latest_holidays2021.htm + self.assertHolidays( + HongKong(years=2021, preferred_discretionary_holidays=(CHRISTMAS, WINTER_SOLSTICE)), + ("2021-01-01", "The first day of January"), + ("2021-02-12", "Lunar New Year's Day"), + ("2021-02-13", "The second day of Lunar New Year"), + ("2021-02-15", "The fourth day of Lunar New Year"), + ("2021-04-04", "Ching Ming Festival"), + ("2021-04-05", "Ching Ming Festival (observed)"), + ("2021-05-01", "Labour Day"), + ("2021-06-14", "Tuen Ng Festival"), + ("2021-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2021-09-22", "The day following the Chinese Mid-Autumn Festival"), + ("2021-10-01", "National Day"), + ("2021-10-14", "Chung Yeung Festival"), + ("2021-12-21", "Chinese Winter Solstice Festival"), + ("2021-12-25", "Christmas Day"), + ) + + def test_2022(self): + # https://www.labour.gov.hk/eng/news/latest_holidays2022.htm + self.assertHolidays( + HongKong(years=2022, preferred_discretionary_holidays=(CHRISTMAS, WINTER_SOLSTICE)), + ("2022-01-01", "The first day of January"), + ("2022-02-01", "Lunar New Year's Day"), + ("2022-02-02", "The second day of Lunar New Year"), + ("2022-02-03", "The third day of Lunar New Year"), + ("2022-04-05", "Ching Ming Festival"), + ("2022-05-01", "Labour Day"), + ("2022-05-02", "Labour Day (observed)"), + ("2022-05-08", "The Birthday of the Buddha"), + ("2022-05-09", "The Birthday of the Buddha (observed)"), + ("2022-06-03", "Tuen Ng Festival"), + ("2022-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2022-09-12", "The second day following the Chinese Mid-Autumn Festival"), + ("2022-10-01", "National Day"), + ("2022-10-04", "Chung Yeung Festival"), + ("2022-12-22", "Chinese Winter Solstice Festival"), + ("2022-12-25", "Christmas Day"), + ("2022-12-26", "Christmas Day (observed)"), + ) + + def test_2023(self): + # https://www.labour.gov.hk/eng/news/latest_holidays2023.htm + self.assertHolidays( + HongKong(years=2023, preferred_discretionary_holidays=(CHRISTMAS, WINTER_SOLSTICE)), + ("2023-01-01", "The first day of January"), + ("2023-01-02", "The first day of January (observed)"), + ("2023-01-23", "The second day of Lunar New Year"), + ("2023-01-24", "The third day of Lunar New Year"), + ("2023-01-25", "The fourth day of Lunar New Year"), + ("2023-04-05", "Ching Ming Festival"), + ("2023-05-01", "Labour Day"), + ("2023-05-26", "The Birthday of the Buddha"), + ("2023-06-22", "Tuen Ng Festival"), + ("2023-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2023-09-30", "The day following the Chinese Mid-Autumn Festival"), + ("2023-10-01", "National Day"), + ("2023-10-02", "National Day (observed)"), + ("2023-10-23", "Chung Yeung Festival"), + ("2023-12-22", "Chinese Winter Solstice Festival"), + ("2023-12-25", "Christmas Day"), + ) + + def test_2024(self): + # https://www.labour.gov.hk/eng/news/latest_holidays2024.htm + self.assertHolidays( + HongKong(years=2024, preferred_discretionary_holidays=(CHRISTMAS, WINTER_SOLSTICE)), + ("2024-01-01", "The first day of January"), + ("2024-02-10", "Lunar New Year's Day"), + ("2024-02-12", "The third day of Lunar New Year"), + ("2024-02-13", "The fourth day of Lunar New Year"), + ("2024-04-04", "Ching Ming Festival"), + ("2024-05-01", "Labour Day"), + ("2024-05-15", "The Birthday of the Buddha"), + ("2024-06-10", "Tuen Ng Festival"), + ("2024-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2024-09-18", "The day following the Chinese Mid-Autumn Festival"), + ("2024-10-01", "National Day"), + ("2024-10-11", "Chung Yeung Festival"), + ("2024-12-21", "Chinese Winter Solstice Festival"), + ("2024-12-25", "Christmas Day"), + ("2024-12-26", "The first weekday after Christmas Day"), + ) + + def test_optional_2020(self): + # https://www.gov.hk/en/about/abouthk/holiday/2020.htm + self.assertHolidays( + HongKong(categories=OPTIONAL, years=2020), + ("2020-01-01", "The first day of January"), + ("2020-01-25", "Lunar New Year's Day"), + ("2020-01-27", "The third day of Lunar New Year"), + ("2020-01-28", "The fourth day of Lunar New Year"), + ("2020-04-04", "Ching Ming Festival"), + ("2020-04-10", "Good Friday"), + ("2020-04-11", "The day following Good Friday"), + ("2020-04-13", "Easter Monday"), + ("2020-04-30", "The Birthday of the Buddha"), + ("2020-05-01", "Labour Day"), + ("2020-06-25", "Tuen Ng Festival"), + ("2020-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2020-10-01", "National Day"), + ("2020-10-02", "The day following the Chinese Mid-Autumn Festival"), + ("2020-10-26", "The day following Chung Yeung Festival"), + ("2020-12-25", "Christmas Day"), + ("2020-12-26", "The first weekday after Christmas Day"), + ) + + def test_optional_2021(self): + # https://www.gov.hk/en/about/abouthk/holiday/2021.htm + self.assertHolidays( + HongKong(categories=OPTIONAL, years=2021), + ("2021-01-01", "The first day of January"), + ("2021-02-12", "Lunar New Year's Day"), + ("2021-02-13", "The second day of Lunar New Year"), + ("2021-02-15", "The fourth day of Lunar New Year"), + ("2021-04-02", "Good Friday"), + ("2021-04-03", "The day following Good Friday"), + ("2021-04-05", "The day following Ching Ming Festival"), + ("2021-04-06", "The day following Easter Monday"), + ("2021-05-01", "Labour Day"), + ("2021-05-19", "The Birthday of the Buddha"), + ("2021-06-14", "Tuen Ng Festival"), + ("2021-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2021-09-22", "The day following the Chinese Mid-Autumn Festival"), + ("2021-10-01", "National Day"), + ("2021-10-14", "Chung Yeung Festival"), + ("2021-12-25", "Christmas Day"), + ("2021-12-27", "The first weekday after Christmas Day"), + ) + + def test_optional_2022(self): + # https://www.gov.hk/en/about/abouthk/holiday/2022.htm + self.assertHolidays( + HongKong(categories=OPTIONAL, years=2022), + ("2022-01-01", "The first day of January"), + ("2022-02-01", "Lunar New Year's Day"), + ("2022-02-02", "The second day of Lunar New Year"), + ("2022-02-03", "The third day of Lunar New Year"), + ("2022-04-05", "Ching Ming Festival"), + ("2022-04-15", "Good Friday"), + ("2022-04-16", "The day following Good Friday"), + ("2022-04-18", "Easter Monday"), + ("2022-05-02", "The day following Labour Day"), + ("2022-05-09", "The day following the Birthday of the Buddha"), + ("2022-06-03", "Tuen Ng Festival"), + ("2022-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2022-09-12", "The second day following the Chinese Mid-Autumn Festival"), + ("2022-10-01", "National Day"), + ("2022-10-04", "Chung Yeung Festival"), + ("2022-12-26", "The first weekday after Christmas Day"), + ("2022-12-27", "The second weekday after Christmas Day"), + ) + + def test_optional_2023(self): + # https://www.gov.hk/en/about/abouthk/holiday/2023.htm + self.assertHolidays( + HongKong(categories=OPTIONAL, years=2023), + ("2023-01-02", "The day following the first day of January"), + ("2023-01-23", "The second day of Lunar New Year"), + ("2023-01-24", "The third day of Lunar New Year"), + ("2023-01-25", "The fourth day of Lunar New Year"), + ("2023-04-05", "Ching Ming Festival"), + ("2023-04-07", "Good Friday"), + ("2023-04-08", "The day following Good Friday"), + ("2023-04-10", "Easter Monday"), + ("2023-05-01", "Labour Day"), + ("2023-05-26", "The Birthday of the Buddha"), + ("2023-06-22", "Tuen Ng Festival"), + ("2023-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2023-09-30", "The day following the Chinese Mid-Autumn Festival"), + ("2023-10-02", "The day following National Day"), + ("2023-10-23", "Chung Yeung Festival"), + ("2023-12-25", "Christmas Day"), + ("2023-12-26", "The first weekday after Christmas Day"), + ) + + def test_optional_2024(self): + # https://www.gov.hk/en/about/abouthk/holiday/2024.htm + self.assertHolidays( + HongKong(categories=OPTIONAL, years=2024), + ("2024-01-01", "The first day of January"), + ("2024-02-10", "Lunar New Year's Day"), + ("2024-02-12", "The third day of Lunar New Year"), + ("2024-02-13", "The fourth day of Lunar New Year"), + ("2024-03-29", "Good Friday"), + ("2024-03-30", "The day following Good Friday"), + ("2024-04-01", "Easter Monday"), + ("2024-04-04", "Ching Ming Festival"), + ("2024-05-01", "Labour Day"), + ("2024-05-15", "The Birthday of the Buddha"), + ("2024-06-10", "Tuen Ng Festival"), + ("2024-07-01", "Hong Kong Special Administrative Region Establishment Day"), + ("2024-09-18", "The day following the Chinese Mid-Autumn Festival"), + ("2024-10-01", "National Day"), + ("2024-10-11", "Chung Yeung Festival"), + ("2024-12-25", "Christmas Day"), + ("2024-12-26", "The first weekday after Christmas Day"), ) From c8c408d3e98fa04711a1a844576176d7b46a0a3f Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Fri, 17 May 2024 09:45:33 -0700 Subject: [PATCH 06/10] Update observed rules: add holiday removal support (#1796) --- holidays/countries/angola.py | 4 +-- holidays/countries/canada.py | 3 +- holidays/countries/jersey.py | 4 +-- holidays/countries/new_zealand.py | 3 +- holidays/observed_holiday_base.py | 30 +++++++++++----- tests/test_observed_holiday_base.py | 56 +++++++++++++++++++++++++++++ 6 files changed, 85 insertions(+), 15 deletions(-) create mode 100644 tests/test_observed_holiday_base.py diff --git a/holidays/countries/angola.py b/holidays/countries/angola.py index 3ddd72100..4cf4d0d2a 100644 --- a/holidays/countries/angola.py +++ b/holidays/countries/angola.py @@ -12,7 +12,7 @@ from datetime import date from gettext import gettext as tr -from typing import Tuple +from typing import Optional, Tuple from holidays.calendars.gregorian import AUG, SEP from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays @@ -59,7 +59,7 @@ def _is_observed(self, dt: date) -> bool: # it rolls over to the following Monday. return dt >= date(1996, SEP, 27) - def _add_observed(self, dt: date, **kwargs) -> Tuple[bool, date]: + def _add_observed(self, dt: date, **kwargs) -> Tuple[bool, Optional[date]]: # As per Law # #11/18, from 2018/9/10, when public holiday falls on Tuesday or Thursday, # the Monday or Friday is also a holiday. kwargs.setdefault( diff --git a/holidays/countries/canada.py b/holidays/countries/canada.py index ab2a96891..744667028 100644 --- a/holidays/countries/canada.py +++ b/holidays/countries/canada.py @@ -12,6 +12,7 @@ from datetime import date from gettext import gettext as tr +from typing import Optional from holidays.calendars.gregorian import MAR, APR, JUN, JUL, SEP from holidays.constants import GOVERNMENT, OPTIONAL, PUBLIC @@ -69,7 +70,7 @@ def __init__(self, *args, **kwargs): kwargs.setdefault("observed_rule", SAT_SUN_TO_NEXT_MON) super().__init__(*args, **kwargs) - def _get_nearest_monday(self, *args) -> date: + def _get_nearest_monday(self, *args) -> Optional[date]: return self._get_observed_date(date(self._year, *args), rule=ALL_TO_NEAREST_MON) def _add_statutory_holidays(self): diff --git a/holidays/countries/jersey.py b/holidays/countries/jersey.py index 01922e6cc..8ec8471bf 100644 --- a/holidays/countries/jersey.py +++ b/holidays/countries/jersey.py @@ -11,7 +11,7 @@ # License: MIT (see LICENSE file) from datetime import date -from typing import Tuple +from typing import Optional, Tuple from holidays.calendars.gregorian import JAN, APR, MAY, JUN, JUL, SEP, OCT, DEC from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays @@ -54,7 +54,7 @@ def __init__(self, *args, **kwargs): kwargs.setdefault("observed_rule", SAT_SUN_TO_NEXT_WORKDAY) ObservedHolidayBase.__init__(self, *args, **kwargs) - def _add_observed(self, dt: date, **kwargs) -> Tuple[bool, date]: + def _add_observed(self, dt: date, **kwargs) -> Tuple[bool, Optional[date]]: # Prior to 2004, in-lieu are only given for Sundays. # https://www.jerseylaw.je/laws/enacted/Pages/RO-123-2004.aspx kwargs.setdefault( diff --git a/holidays/countries/new_zealand.py b/holidays/countries/new_zealand.py index ad4d088aa..8f238acf6 100644 --- a/holidays/countries/new_zealand.py +++ b/holidays/countries/new_zealand.py @@ -11,6 +11,7 @@ # License: MIT (see LICENSE file) from datetime import date +from typing import Optional from holidays.calendars.gregorian import JAN, FEB, MAR, JUN, JUL, SEP, NOV, DEC, _timedelta from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays @@ -74,7 +75,7 @@ def __init__(self, *args, **kwargs): kwargs.setdefault("observed_rule", SAT_SUN_TO_NEXT_MON) super().__init__(*args, **kwargs) - def _get_nearest_monday(self, *args) -> date: + def _get_nearest_monday(self, *args) -> Optional[date]: dt = args if len(args) > 1 else args[0] dt = dt if isinstance(dt, date) else date(self._year, *dt) return self._get_observed_date(dt, rule=ALL_TO_NEAREST_MON) diff --git a/holidays/observed_holiday_base.py b/holidays/observed_holiday_base.py index 2e8704cf6..3525fd29c 100644 --- a/holidays/observed_holiday_base.py +++ b/holidays/observed_holiday_base.py @@ -17,7 +17,7 @@ from holidays.holiday_base import DateArg, HolidayBase -class ObservedRule(Dict[int, int]): +class ObservedRule(Dict[int, Optional[int]]): __slots__ = () def __add__(self, other): @@ -113,18 +113,23 @@ def _get_next_workday(self, dt: date, delta: int = +1) -> date: return dt_work return dt - def _get_observed_date(self, dt: date, rule: ObservedRule) -> date: + def _get_observed_date(self, dt: date, rule: ObservedRule) -> Optional[date]: delta = rule.get(dt.weekday(), 0) - if delta != 0: - if abs(delta) == 7: - dt = self._get_next_workday(dt, delta // 7) - else: - dt = _timedelta(dt, delta) + if delta: + return ( + self._get_next_workday(dt, delta // 7) + if abs(delta) == 7 + else _timedelta(dt, delta) + ) + # Goes after `if delta` case as a less probable. + elif delta is None: + return None + return dt def _add_observed( self, dt: DateArg, name: Optional[str] = None, rule: Optional[ObservedRule] = None - ) -> Tuple[bool, date]: + ) -> Tuple[bool, Optional[date]]: dt = dt if isinstance(dt, date) else date(self._year, *dt) if not self.observed or not self._is_observed(dt): @@ -134,6 +139,11 @@ def _add_observed( if dt_observed == dt: return False, dt + # SAT_TO_NONE and similar cases. + if dt_observed is None: + self.pop(dt) + return False, None + estimated_label = self.tr(getattr(self, "estimated_label", "")) observed_label = self.tr( getattr( @@ -158,7 +168,9 @@ def _add_observed( return True, dt_observed - def _move_holiday(self, dt: date, rule: Optional[ObservedRule] = None) -> Tuple[bool, date]: + def _move_holiday( + self, dt: date, rule: Optional[ObservedRule] = None + ) -> Tuple[bool, Optional[date]]: is_observed, dt_observed = self._add_observed(dt, rule=rule) if is_observed: self.pop(dt) diff --git a/tests/test_observed_holiday_base.py b/tests/test_observed_holiday_base.py new file mode 100644 index 000000000..52a798ad1 --- /dev/null +++ b/tests/test_observed_holiday_base.py @@ -0,0 +1,56 @@ +# 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/python-holidays +# License: MIT (see LICENSE file) + +from datetime import date +from unittest import TestCase + +from holidays.calendars.gregorian import MON, SUN +from holidays.observed_holiday_base import ObservedHolidayBase, ObservedRule + + +class TestObservedHolidayBase(TestCase): + SUNDAY = date(2024, 5, 12) + MONDAY = date(2024, 5, 13) + SUN_TO_NONE = ObservedRule({SUN: None}) + MON_TO_TUE = ObservedRule({MON: +1}) + + def setUp(self): + self.ohb = ObservedHolidayBase(observed_rule=ObservedRule({MON: None})) + self.ohb.observed_label = "%s (Observed Label)" + self.ohb._populate(2024) + + def test_get_observed_date(self): + self.assertIsNone(self.ohb._get_observed_date(self.SUNDAY, rule=self.SUN_TO_NONE)) + + def test_observed_rules(self): + self.assertEqual( + (False, None), + self.ohb._add_observed( + self.ohb._add_holiday("Test Holiday", self.SUNDAY), rule=self.SUN_TO_NONE + ), + ) + + self.assertEqual( + (True, date(2024, 5, 14)), + self.ohb._add_observed( + self.ohb._add_holiday("Test Holiday", self.MONDAY), rule=self.MON_TO_TUE + ), + ) + + self.assertEqual( + dict(self.ohb), + { + date(2024, 5, 13): "Test Holiday", + date(2024, 5, 14): "Test Holiday (Observed Label)", + }, + self.ohb, + ) From a5111cb296ad8a4573a2e2ef8b8d7a4a888eb2f9 Mon Sep 17 00:00:00 2001 From: benjfield Date: Fri, 17 May 2024 21:00:19 +0100 Subject: [PATCH 07/10] Add IFEU holidays (#1792) Co-authored-by: Arkadii Yakovets --- README.rst | 3 + holidays/financial/__init__.py | 1 + holidays/financial/ice_futures_europe.py | 47 ++++++++++ holidays/observed_holiday_base.py | 1 + holidays/registry.py | 1 + snapshots/financial/IFEU.json | 103 +++++++++++++++++++++ tests/financial/test_ice_futures_europe.py | 58 ++++++++++++ tests/test_utils.py | 1 + 8 files changed, 215 insertions(+) create mode 100644 holidays/financial/ice_futures_europe.py create mode 100644 snapshots/financial/IFEU.json create mode 100644 tests/financial/test_ice_futures_europe.py diff --git a/README.rst b/README.rst index 4d36e38b8..aa56acf6a 100644 --- a/README.rst +++ b/README.rst @@ -942,6 +942,9 @@ following financial markets are available: * - European Central Bank - ECB - Trans-European Automated Real-time Gross Settlement (TARGET2) + * - ICE Futures Europe + - IFEU + - A London-based Investment Exchange holidays * - New York Stock Exchange - XNYS - NYSE market holidays (used by all other US-exchanges, including NASDAQ, etc.) diff --git a/holidays/financial/__init__.py b/holidays/financial/__init__.py index 5833e091a..f35e08fd4 100644 --- a/holidays/financial/__init__.py +++ b/holidays/financial/__init__.py @@ -13,4 +13,5 @@ # flake8: noqa: F401 from .european_central_bank import EuropeanCentralBank, ECB, TAR +from .ice_futures_europe import ICEFuturesEurope, IFEU from .ny_stock_exchange import NewYorkStockExchange, NYSE, XNYS diff --git a/holidays/financial/ice_futures_europe.py b/holidays/financial/ice_futures_europe.py new file mode 100644 index 000000000..164b3a7bc --- /dev/null +++ b/holidays/financial/ice_futures_europe.py @@ -0,0 +1,47 @@ +# 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/python-holidays +# License: MIT (see LICENSE file) + +from holidays.groups import ChristianHolidays, InternationalHolidays +from holidays.observed_holiday_base import ObservedHolidayBase, SAT_TO_NONE, SUN_TO_NEXT_MON + + +class ICEFuturesEurope(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): + """ + References: + - https://www.ice.com/publicdocs/futures/Trading_Schedule_Migrated_Liffe_Contracts.pdf + - https://www.ice.com/publicdocs/Trading_Schedule.pdf + - https://web.archive.org/web/20230927015846/https://www.ice.com/publicdocs/Trading_Schedule.pdf + - https://web.archive.org/web/20211022183728/https://www.ice.com/publicdocs/Trading_Schedule.pdf + """ + + market = "IFEU" + + def __init__(self, *args, **kwargs): + ChristianHolidays.__init__(self) + InternationalHolidays.__init__(self) + kwargs.setdefault("observed_rule", SAT_TO_NONE + SUN_TO_NEXT_MON) + super().__init__(*args, **kwargs) + + def _populate(self, year): + if year <= 2013: + return None + super()._populate(year) + + self._move_holiday(self._add_new_years_day("New Year's Day")) + + self._add_good_friday("Good Friday") + + self._move_holiday(self._add_christmas_day("Christmas Day")) + + +class IFEU(ICEFuturesEurope): + pass diff --git a/holidays/observed_holiday_base.py b/holidays/observed_holiday_base.py index 3525fd29c..806ef9195 100644 --- a/holidays/observed_holiday_base.py +++ b/holidays/observed_holiday_base.py @@ -53,6 +53,7 @@ def __add__(self, other): SAT_TO_NEXT_TUE = ObservedRule({SAT: +3}) SAT_TO_NEXT_SUN = ObservedRule({SAT: +1}) SAT_TO_NEXT_WORKDAY = ObservedRule({SAT: +7}) +SAT_TO_NONE = ObservedRule({SAT: None}) SUN_TO_NEXT_MON = ObservedRule({SUN: +1}) SUN_TO_NEXT_TUE = ObservedRule({SUN: +2}) diff --git a/holidays/registry.py b/holidays/registry.py index e517d652c..5befedfcd 100644 --- a/holidays/registry.py +++ b/holidays/registry.py @@ -174,6 +174,7 @@ FINANCIAL: RegistryDict = { "european_central_bank": ("EuropeanCentralBank", "ECB", "TAR"), + "ice_futures_europe": ("ICEFuturesEurope", "IFEU"), "ny_stock_exchange": ("NewYorkStockExchange", "NYSE", "XNYS"), } diff --git a/snapshots/financial/IFEU.json b/snapshots/financial/IFEU.json new file mode 100644 index 000000000..d32dcb591 --- /dev/null +++ b/snapshots/financial/IFEU.json @@ -0,0 +1,103 @@ +{ + "2014-01-01": "New Year's Day", + "2014-04-18": "Good Friday", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-04-03": "Good Friday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-03-25": "Good Friday", + "2016-12-26": "Christmas Day", + "2017-01-02": "New Year's Day", + "2017-04-14": "Good Friday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-03-30": "Good Friday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-04-19": "Good Friday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-04-10": "Good Friday", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-04-02": "Good Friday", + "2022-04-15": "Good Friday", + "2022-12-26": "Christmas Day", + "2023-01-02": "New Year's Day", + "2023-04-07": "Good Friday", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-03-29": "Good Friday", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-04-18": "Good Friday", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-04-03": "Good Friday", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-03-26": "Good Friday", + "2028-04-14": "Good Friday", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-03-30": "Good Friday", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-04-19": "Good Friday", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-04-11": "Good Friday", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-03-26": "Good Friday", + "2033-04-15": "Good Friday", + "2033-12-26": "Christmas Day", + "2034-01-02": "New Year's Day", + "2034-04-07": "Good Friday", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-03-23": "Good Friday", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-04-11": "Good Friday", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-04-03": "Good Friday", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-04-23": "Good Friday", + "2039-04-08": "Good Friday", + "2039-12-26": "Christmas Day", + "2040-01-02": "New Year's Day", + "2040-03-30": "Good Friday", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-04-19": "Good Friday", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-04-04": "Good Friday", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-03-27": "Good Friday", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-04-15": "Good Friday", + "2044-12-26": "Christmas Day", + "2045-01-02": "New Year's Day", + "2045-04-07": "Good Friday", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-03-23": "Good Friday", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-04-12": "Good Friday", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-04-03": "Good Friday", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-04-16": "Good Friday", + "2050-04-08": "Good Friday", + "2050-12-26": "Christmas Day" +} diff --git a/tests/financial/test_ice_futures_europe.py b/tests/financial/test_ice_futures_europe.py new file mode 100644 index 000000000..987ea3f2f --- /dev/null +++ b/tests/financial/test_ice_futures_europe.py @@ -0,0 +1,58 @@ +# 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/python-holidays +# License: MIT (see LICENSE file) + +from unittest import TestCase + +from holidays.financial.ice_futures_europe import ICEFuturesEurope, IFEU +from tests.common import CommonFinancialTests + + +class TestICEFuturesEurope(CommonFinancialTests, TestCase): + @classmethod + def setUpClass(cls): + super().setUpClass(ICEFuturesEurope, years=range(2000, 2100)) + + def test_market_aliases(self): + self.assertAliases(ICEFuturesEurope, IFEU) + + def test_no_holidays(self): + self.assertNoHolidays(ICEFuturesEurope(years=2013)) + + def test_2021(self): + self.assertHolidays( + ICEFuturesEurope(years=2021), + ("2021-01-01", "New Year's Day"), + ("2021-04-02", "Good Friday"), + ) + + def test_2022(self): + self.assertHolidays( + ICEFuturesEurope(years=2022), + ("2022-04-15", "Good Friday"), + ("2022-12-26", "Christmas Day"), + ) + + def test_2023(self): + self.assertHolidays( + ICEFuturesEurope(years=2023), + ("2023-01-02", "New Year's Day"), + ("2023-04-07", "Good Friday"), + ("2023-12-25", "Christmas Day"), + ) + + def test_2024(self): + self.assertHolidays( + ICEFuturesEurope(years=2024), + ("2024-01-01", "New Year's Day"), + ("2024-03-29", "Good Friday"), + ("2024-12-25", "Christmas Day"), + ) diff --git a/tests/test_utils.py b/tests/test_utils.py index be00cf1ad..b8bd92818 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -224,6 +224,7 @@ def test_list_supported_financial(self): supported_financial = list_supported_financial(include_aliases=False) self.assertIn("ECB", supported_financial) + self.assertIn("IFEU", supported_financial) self.assertIn("NYSE", supported_financial) nyse = supported_financial["NYSE"] From c94e6cc3f376ab7e07369873adec8c6867a2b240 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Mon, 20 May 2024 18:20:28 +0300 Subject: [PATCH 08/10] Refactor Laos holidays (#1797) --- holidays/countries/laos.py | 30 +++++++----------------------- 1 file changed, 7 insertions(+), 23 deletions(-) diff --git a/holidays/countries/laos.py b/holidays/countries/laos.py index 917edeeac..fec0f64a6 100644 --- a/holidays/countries/laos.py +++ b/holidays/countries/laos.py @@ -104,29 +104,13 @@ def _populate_bank_holidays(self): # - CASE FRI/SAT/SUN: WED-THU-FRI # Lao Year-End Bank Holiday. - year_end_bank_holiday = tr("ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ") - - dec_31 = (DEC, 31) - if self._is_monday(dec_31): - self._add_holiday_last_thu_of_dec(year_end_bank_holiday) - self._add_holiday_last_fri_of_dec(year_end_bank_holiday) - self._add_holiday_last_mon_of_dec(year_end_bank_holiday) - elif self._is_tuesday(dec_31): - self._add_holiday_last_fri_of_dec(year_end_bank_holiday) - self._add_holiday_last_mon_of_dec(year_end_bank_holiday) - self._add_holiday_last_tue_of_dec(year_end_bank_holiday) - elif self._is_wednesday(dec_31): - self._add_holiday_last_mon_of_dec(year_end_bank_holiday) - self._add_holiday_last_tue_of_dec(year_end_bank_holiday) - self._add_holiday_last_wed_of_dec(year_end_bank_holiday) - elif self._is_thursday(dec_31): - self._add_holiday_last_tue_of_dec(year_end_bank_holiday) - self._add_holiday_last_wed_of_dec(year_end_bank_holiday) - self._add_holiday_last_thu_of_dec(year_end_bank_holiday) - else: - self._add_holiday_last_wed_of_dec(year_end_bank_holiday) - self._add_holiday_last_thu_of_dec(year_end_bank_holiday) - self._add_holiday_last_fri_of_dec(year_end_bank_holiday) + name = tr("ສາມວັນລັດຖະການສຸດທ້າຍຂອງທຸກໆປີ") + + last_workday = self._add_holiday( + name, self._get_next_workday(self._next_year_new_years_day, -1) + ) + second_to_last_workday = self._add_holiday(name, self._get_next_workday(last_workday, -1)) + self._add_holiday(name, self._get_next_workday(second_to_last_workday, -1)) def _populate_public_holidays(self): # Available post-Lao PDR proclamation on Dec 2, 1975. From 74fd76d5e40a8d8b9936ac7e9ccc7dda181d2c2d Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Mon, 20 May 2024 21:05:08 +0300 Subject: [PATCH 09/10] Update Malaysia holidays (#1791) Co-authored-by: Arkadii Yakovets --- README.rst | 4 +- holidays/countries/malaysia.py | 780 ++++++--- holidays/locale/en_US/LC_MESSAGES/MY.po | 250 +++ holidays/locale/ms_MY/LC_MESSAGES/MY.po | 250 +++ snapshots/countries/MY_01.json | 1716 ++++++++++++++++++ snapshots/countries/MY_02.json | 1814 +++++++++++++++++++ snapshots/countries/MY_03.json | 1839 ++++++++++++++++++++ snapshots/countries/MY_04.json | 1821 +++++++++++++++++++ snapshots/countries/MY_05.json | 1811 +++++++++++++++++++ snapshots/countries/MY_06.json | 1810 +++++++++++++++++++ snapshots/countries/MY_07.json | 1909 ++++++++++++++++++++ snapshots/countries/MY_08.json | 1863 ++++++++++++++++++++ snapshots/countries/MY_09.json | 1817 +++++++++++++++++++ snapshots/countries/MY_10.json | 1879 ++++++++++++++++++++ snapshots/countries/MY_11.json | 1989 +++++++++++++++++++++ snapshots/countries/MY_12.json | 1959 +++++++++++++++++++++ snapshots/countries/MY_13.json | 1842 ++++++++++++++++++++ snapshots/countries/MY_14.json | 1844 ++++++++++++++++++++ snapshots/countries/MY_15.json | 1854 ++++++++++++++++++++ snapshots/countries/MY_16.json | 1844 ++++++++++++++++++++ snapshots/countries/MY_COMMON.json | 1969 ++++++++++----------- snapshots/countries/MY_JHR.json | 1809 ------------------- snapshots/countries/MY_KDH.json | 1873 -------------------- snapshots/countries/MY_KTN.json | 1894 -------------------- snapshots/countries/MY_KUL.json | 1934 --------------------- snapshots/countries/MY_LBN.json | 2012 --------------------- snapshots/countries/MY_MLK.json | 1911 -------------------- snapshots/countries/MY_NSN.json | 1903 -------------------- snapshots/countries/MY_PHG.json | 1897 -------------------- snapshots/countries/MY_PJY.json | 1934 --------------------- snapshots/countries/MY_PLS.json | 1913 -------------------- snapshots/countries/MY_PNG.json | 2001 --------------------- snapshots/countries/MY_PRK.json | 1955 --------------------- snapshots/countries/MY_SBH.json | 2053 ---------------------- snapshots/countries/MY_SGR.json | 1969 --------------------- snapshots/countries/MY_SWK.json | 1955 --------------------- snapshots/countries/MY_TRG.json | 2080 ---------------------- tests/countries/test_malaysia.py | 2119 ++++++++++------------- 38 files changed, 32446 insertions(+), 33630 deletions(-) create mode 100644 holidays/locale/en_US/LC_MESSAGES/MY.po create mode 100644 holidays/locale/ms_MY/LC_MESSAGES/MY.po create mode 100644 snapshots/countries/MY_01.json create mode 100644 snapshots/countries/MY_02.json create mode 100644 snapshots/countries/MY_03.json create mode 100644 snapshots/countries/MY_04.json create mode 100644 snapshots/countries/MY_05.json create mode 100644 snapshots/countries/MY_06.json create mode 100644 snapshots/countries/MY_07.json create mode 100644 snapshots/countries/MY_08.json create mode 100644 snapshots/countries/MY_09.json create mode 100644 snapshots/countries/MY_10.json create mode 100644 snapshots/countries/MY_11.json create mode 100644 snapshots/countries/MY_12.json create mode 100644 snapshots/countries/MY_13.json create mode 100644 snapshots/countries/MY_14.json create mode 100644 snapshots/countries/MY_15.json create mode 100644 snapshots/countries/MY_16.json delete mode 100644 snapshots/countries/MY_JHR.json delete mode 100644 snapshots/countries/MY_KDH.json delete mode 100644 snapshots/countries/MY_KTN.json delete mode 100644 snapshots/countries/MY_KUL.json delete mode 100644 snapshots/countries/MY_LBN.json delete mode 100644 snapshots/countries/MY_MLK.json delete mode 100644 snapshots/countries/MY_NSN.json delete mode 100644 snapshots/countries/MY_PHG.json delete mode 100644 snapshots/countries/MY_PJY.json delete mode 100644 snapshots/countries/MY_PLS.json delete mode 100644 snapshots/countries/MY_PNG.json delete mode 100644 snapshots/countries/MY_PRK.json delete mode 100644 snapshots/countries/MY_SBH.json delete mode 100644 snapshots/countries/MY_SGR.json delete mode 100644 snapshots/countries/MY_SWK.json delete mode 100644 snapshots/countries/MY_TRG.json diff --git a/README.rst b/README.rst index aa56acf6a..8384b9bf3 100644 --- a/README.rst +++ b/README.rst @@ -602,8 +602,8 @@ All other default values are highlighted with bold: - * - Malaysia - MY - - States: JHR, KDH, KTN, KUL, LBN, MLK, NSN, PHG, PJY, PLS, PNG, PRK, SBH, SGR, SWK, TRG - - + - States and federal territories: 01 (Johor), 02 (Kedah), 03 (Kelantan), 04 (Melaka), 05 (Negeri Sembilan), 06 (Pahang), 07 (Pulau Pinang), 08 (Perak), 09 (Perlis), 10 (Selangor), 11 (Terengganu), 12 (Sabah), 13 (Sarawak), 14 (WP Kuala Lumpur), 15 (WP Labuan), 16 (WP Putrajaya) + - en_US, **ms_MY** - * - Maldives - MV diff --git a/holidays/countries/malaysia.py b/holidays/countries/malaysia.py index 134a61cbe..6c25aa1fb 100644 --- a/holidays/countries/malaysia.py +++ b/holidays/countries/malaysia.py @@ -10,6 +10,8 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) +from gettext import gettext as tr + from holidays.calendars import ( _CustomBuddhistHolidays, _CustomChineseHolidays, @@ -60,8 +62,32 @@ class Malaysia( StaticHolidays, ): country = "MY" - observed_label = "%s (in lieu)" + default_language = "ms_MY" + # %s (estimated). + estimated_label = tr("%s (anggaran)") + # %s (in lieu). + observed_label = tr("Cuti %s") + # %s (observed, estimated). + observed_estimated_label = tr("Cuti %s (anggaran)") subdivisions = ( + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + ) + _deprecated_subdivisions = ( "JHR", "KDH", "KTN", @@ -79,53 +105,41 @@ class Malaysia( "SWK", "TRG", ) + subdivisions_aliases = { + "Johor": "01", + "Kedah": "02", + "Kelantan": "03", + "Melaka": "04", + "Negeri Sembilan": "05", + "Pahang": "06", + "Pulau Pinang": "07", + "Perak": "08", + "Perlis": "09", + "Selangor": "10", + "Terengganu": "11", + "Sabah": "12", + "Sarawak": "13", + "WP Kuala Lumpur": "14", + "WP Labuan": "15", + "WP Putrajaya": "16", + } + supported_languages = ("en_US", "ms_MY") def __init__(self, *args, **kwargs): """ - An subclass of :py:class:`HolidayBase` representing public holidays in - Malaysia. - - If ``subdiv`` for a state is not supplied, only nationwide holidays are - returned. The following ``subdiv`` state codes are used (ISO 3166-2 - subdivision codes are not yet supported): - - - JHR: Johor - - KDH: Kedah - - KTN: Kelantan - - MLK: Melaka - - NSN: Negeri Sembilan - - PHG: Pahang - - PRK: Perak - - PLS: Perlis - - PNG: Pulau Pinang - - SBH: Sabah - - SWK: Sarawak - - SGR: Selangor - - TRG: Terengganu - - KUL: FT Kuala Lumpur - - LBN: FT Labuan - - PJY: FT Putrajaya - - Limitations: - - - Prior to 2021: holidays are not accurate. - - 2027 and later: Thaipusam dates are are estimated, and so denoted. - - Section 3 of Malaysian Holidays Act: + References: + - `Holidays Act 1951 `_ # noqa: E501 + - `Holidays Ordinance (Sabah Cap. 56) `_ # noqa: E501 + - `Public Holidays Ordinance (Sarawak Cap. 8) `_ # noqa: E501 + - `Wikipedia `_ + - https://www.nst.com.my/news/nation/2020/03/571660/agongs-birthday-moved-june-6-june-8 # noqa: E501 + - https://www.nst.com.my/news/nation/2024/02/1014012/melaka-cm-suggests-declaring-feb-20-federal-public-holiday-mark # noqa: E501 + + Section 3 of Holidays Act 1951: "If any day specified in the Schedule falls on Sunday then the day following shall be a public holiday and if such day is already a public holiday, then the day following shall be a public holiday". - In Johor and Kedah it's Friday -> Sunday, - in Kelantan and Terengganu it's Saturday -> Sunday - - Reference: `Wikipedia - `__ - - Country created by: `Eden `__ - - Country maintained by: `Mike Borsetti `__ - - See parameters and usage in :py:class:`HolidayBase`. + In Johor and Kedah it's Friday to Sunday, in Kelantan and Terengganu - Saturday to Sunday. """ BuddhistCalendarHolidays.__init__(self, cls=MalaysiaBuddhistHolidays, show_estimated=True) ChineseCalendarHolidays.__init__(self, cls=MalaysiaChineseHolidays, show_estimated=True) @@ -136,259 +150,430 @@ def __init__(self, *args, **kwargs): StaticHolidays.__init__(self, cls=MalaysiaStaticHolidays) kwargs.setdefault("observed_rule", SUN_TO_NEXT_WORKDAY) super().__init__(*args, **kwargs) + self.dts_observed = set() def _populate_public_holidays(self): - dts_observed = set() + if self._year <= 1951: + return None - # Chinese New Year (one day in the States of Kelantan and Terengganu, - # two days in the other States). - dts_observed.add(self._add_chinese_new_years_day("Chinese New Year")) - # The second day of Chinese New Year is not a federal holiday in - # Kelantan and Terengganu. However, it is gazetted as a state holiday - # in both states, effectively making it a nationwide holiday. - dts_observed.add(self._add_chinese_new_years_day_two("Chinese New Year Holiday")) + # This must be done for every `_populate_public_holidays()` call. + # Otherwise, 2006/2007 Eid al-Adha observance would be miscalculated. + self.dts_observed = set() - # Vesak Day. - dts_observed.add(self._add_vesak_may("Vesak Day")) + # Chinese New Year. + self.dts_observed.add(self._add_chinese_new_years_day(tr("Tahun Baharu Cina"))) - # Labour Day. - dts_observed.add(self._add_labor_day("Labour Day")) + self.dts_observed.add( + # Chinese New Year (Second Day). + self._add_chinese_new_years_day_two(tr("Tahun Baharu Cina (Hari Kedua)")) + ) - # Birthday of [His Majesty] the Yang di-Pertuan Agong. - name = "Birthday of SPB Yang di-Pertuan Agong" - if self._year <= 2017: - dts_observed.add(self._add_holiday_1st_sat_of_jun(name)) - elif self._year == 2018: - dts_observed.add(self._add_holiday_sep_9(name)) + # Vesak Day. + self.dts_observed.add(self._add_vesak_may(tr("Hari Wesak"))) + + if self._year >= 1973: + # Labor Day. + self.dts_observed.add(self._add_labor_day(tr("Hari Pekerja"))) + + # Birthday of HM Yang di-Pertuan Agong. + name = tr("Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong") + if self._year <= 2016: + self.dts_observed.add(self._add_holiday_1st_sat_of_jun(name)) + elif self._year <= 2019: + self.dts_observed.add(self._add_holiday_sep_9(name)) elif self._year == 2020: - # https://www.nst.com.my/news/nation/2020/03/571660/agongs-birthday-moved-june-6-june-8 - dts_observed.add(self._add_holiday_jun_8(name)) + self.dts_observed.add(self._add_holiday_jun_8(name)) else: - dts_observed.add(self._add_holiday_1st_mon_of_jun(name)) + self.dts_observed.add(self._add_holiday_1st_mon_of_jun(name)) - # Hari Kebangsaan or National Day. - dts_observed.add(self._add_holiday_aug_31("National Day")) + # National Day. + self.dts_observed.add(self._add_holiday_aug_31(tr("Hari Kebangsaan"))) - # Malaysia Day. if self._year >= 2010: - dts_observed.add(self._add_holiday_sep_16("Malaysia Day")) + # Malaysia Day. + self.dts_observed.add(self._add_holiday_sep_16(tr("Hari Malaysia"))) + + # Christmas Day. + self.dts_observed.add(self._add_christmas_day(tr("Hari Krismas"))) + + if self._year >= 1995: + # Islamic New Year. + self._add_islamic_new_year_day(tr("Awal Muharam")) + + # Prophet Muhammad's Birthday. + self.dts_observed.update(self._add_mawlid_day(tr("Hari Keputeraan Nabi Muhammad S.A.W."))) + + # Eid al-Fitr. + self.dts_observed.update(self._add_eid_al_fitr_day(tr("Hari Raya Puasa"))) + + # Eid al-Fitr (Second Day). + self.dts_observed.update(self._add_eid_al_fitr_day_two(tr("Hari Raya Puasa (Hari Kedua)"))) + + # Eid al-Adha. + self.dts_observed.update(self._add_eid_al_adha_day(tr("Hari Raya Qurban"))) + + def _populate_subdiv_holidays(self): + if self._year <= 1951: + return None + + deprecated_mapping = { + "JHR": "01", + "KDH": "02", + "KTN": "03", + "KUL": "14", + "LBN": "15", + "MLK": "04", + "NSN": "05", + "PHG": "06", + "PJY": "16", + "PLS": "09", + "PNG": "07", + "PRK": "08", + "SBH": "12", + "SGR": "10", + "SWK": "13", + "TRG": "11", + } + self.subdiv = deprecated_mapping.get(self.subdiv, self.subdiv) + + if self.subdiv and self.subdiv not in {"13", "15"}: + # Deepavali. + self.dts_observed.add(self._add_diwali(tr("Hari Deepavali"))) + + super()._populate_subdiv_holidays() + + if self.subdiv in {"01", "02"}: + self._observed_rule = FRI_TO_NEXT_WORKDAY + self.weekend = {FRI, SAT} + elif self.subdiv in {"03", "11"}: + self._observed_rule = SAT_TO_NEXT_WORKDAY + self.weekend = {FRI, SAT} - # Deepavali (Diwali). - if self.subdiv != "SWK": - dts_observed.add(self._add_diwali("Deepavali")) + if self.observed: + self._populate_observed(self.dts_observed) - # Christmas day. - dts_observed.add(self._add_christmas_day("Christmas Day")) + def _populate_subdiv_01_public_holidays(self): + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) - # Birthday of the Prophet Muhammad (s.a.w.). - # a.k.a. Hari Keputeraan Nabi Muhammad (Sabah Act) - dts_observed.update( - self._add_mawlid_day("Maulidur Rasul (Birthday of the Prophet Muhammad)") - ) + if self._year >= 2015: + # Birthday of the Sultan of Johor. + self._add_holiday_mar_23(tr("Hari Keputeraan Sultan Johor")) - # Hari Raya Puasa (2 days). - # aka Eid al-Fitr; - # exact date of observance is announced yearly - name = "Hari Raya Puasa" - dts_observed.update(self._add_eid_al_fitr_day(name)) - dts_observed.update(self._add_eid_al_fitr_day_two(f"Second day of {name}")) + if self._year >= 2011: + # The Sultan of Johor Hol. + self._add_hari_hol_johor(tr("Hari Hol Almarhum Sultan Iskandar")) - # Arafat Day. - if self.subdiv == "TRG": - dts_observed.update(self._add_arafah_day("Arafat Day")) - - # Hari Raya Haji. - name = "Hari Raya Haji" - dts_observed.update(self._add_eid_al_adha_day(name)) - if self.subdiv in {"KDH", "KTN", "PLS", "TRG"}: - dts_observed.update(self._add_eid_al_adha_day_two(name)) - - # New Year's Day - if self.subdiv in { - "KUL", - "LBN", - "MLK", - "NSN", - "PHG", - "PJY", - "PNG", - "PRK", - "SBH", - "SGR", - "SWK", - }: - dts_observed.add(self._add_new_years_day("New Year's Day")) - - # Isra and Mi'raj. - if self.subdiv in {"KDH", "NSN", "PLS"} or (self.subdiv == "TRG" and self._year >= 2020): - dts_observed.update(self._add_isra_and_miraj_day("Isra and Mi'raj")) + # Beginning of Ramadan. + self.dts_observed.update(self._add_ramadan_beginning_day(tr("Awal Ramadan"))) + + def _populate_subdiv_02_public_holidays(self): + if self._year >= 2022: + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) + + if self._year >= 2018: + # Birthday of The Sultan of Kedah. + name = tr("Hari Keputeraan Sultan Kedah") + if self._year == 2024: + self._add_holiday_jun_30(name) + else: + self._add_holiday_3rd_sun_of_jun(name) + + # Isra' and Mi'raj. + self.dts_observed.update(self._add_isra_and_miraj_day(tr("Israk dan Mikraj"))) # Beginning of Ramadan. - if self.subdiv in {"JHR", "KDH", "MLK"}: - dts_observed.update(self._add_ramadan_beginning_day("Beginning of Ramadan")) + self.dts_observed.update(self._add_ramadan_beginning_day(tr("Awal Ramadan"))) + + # Eid al-Adha (Second Day). + self.dts_observed.update( + self._add_eid_al_adha_day_two(tr("Hari Raya Qurban (Hari Kedua)")) + ) + + def _populate_subdiv_03_public_holidays(self): + if self._year >= 2010: + # Birthday of the Sultan of Kelantan. + name = tr("Hari Keputeraan Sultan Kelantan") + if self._year >= 2023: + self._add_holiday_sep_29(name) + self._add_holiday_sep_30(name) + elif self._year >= 2012: + self._add_holiday_nov_11(name) + self._add_holiday_nov_12(name) + else: + self._add_holiday_mar_30(name) + self._add_holiday_mar_31(name) # Nuzul Al-Quran Day. - if self.subdiv in {"KTN", "KUL", "LBN", "PHG", "PJY", "PLS", "PNG", "PRK", "SGR", "TRG"}: - dts_observed.update(self._add_nuzul_al_quran_day("Nuzul Al-Quran Day")) + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) - # Thaipusam. - if self.subdiv in {"JHR", "KUL", "NSN", "PJY", "PNG", "PRK", "SGR"}: - dts_observed.add(self._add_thaipusam("Thaipusam")) + if self._year >= 2023: + # Arafat Day. + self.dts_observed.update(self._add_arafah_day(tr("Hari Arafah"))) - # Federal Territory Day. - if self.subdiv in {"KUL", "LBN", "PJY"} and self._year >= 1974: - dts_observed.add(self._add_holiday_feb_1("Federal Territory Day")) + # Eid al-Adha (Second Day). + self.dts_observed.update( + self._add_eid_al_adha_day_two(tr("Hari Raya Qurban (Hari Kedua)")) + ) - # State holidays (single state) + def _populate_subdiv_04_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) - if self.subdiv == "MLK": - if self._year >= 1989: - dts_observed.add( - self._add_holiday_apr_15("Declaration of Malacca as a Historical City") + if self._year >= 2024: + self.dts_observed.add( + # Declaration of Independence Day. + self._add_holiday_feb_20(tr("Hari Pengisytiharan Tarikh Kemerdekaan")) + ) + elif self._year >= 1989: + self.dts_observed.add( + self._add_holiday_apr_15( + # Declaration of Malacca as a Historical City. + tr("Hari Perisytiharan Melaka Sebagai Bandaraya Bersejarah") ) + ) - name = "Birthday of the Governor of Malacca" - dts_observed.add( - self._add_holiday_aug_24(name) - if self._year >= 2020 - else self._add_holiday_2nd_fri_of_oct(name) + # Birthday of the Governor of Malacca. + name = tr("Hari Jadi Yang di-Pertua Negeri Melaka") + self.dts_observed.add( + self._add_holiday_aug_24(name) + if self._year >= 2020 + else self._add_holiday_2nd_fri_of_oct(name) + ) + + # Beginning of Ramadan. + self.dts_observed.update(self._add_ramadan_beginning_day(tr("Awal Ramadan"))) + + def _populate_subdiv_05_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) + + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) + + if self._year >= 2009: + self.dts_observed.add( + self._add_holiday_jan_14( + # Birthday of the Sultan of Negeri Sembilan. + tr("Hari Keputeraan Yang di-Pertuan Besar Negeri Sembilan") + ) ) - elif self.subdiv == "NSN" and self._year >= 2009: - dts_observed.add(self._add_holiday_jan_14("Birthday of the Sultan of Negeri Sembilan")) + # Isra' and Mi'raj. + self.dts_observed.update(self._add_isra_and_miraj_day(tr("Israk dan Mikraj"))) + + def _populate_subdiv_06_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) - elif self.subdiv == "PHG" and self._year >= 1975: - name = "Hari Hol of Pahang" - dts_observed.add( + if self._year >= 1975: + # The Sultan of Pahang Hol. + name = tr("Hari Hol Sultan Pahang") + self.dts_observed.add( self._add_holiday_may_22(name) - if self._year >= 2021 + if self._year >= 2020 else self._add_holiday_may_7(name) ) - name = "Birthday of the Sultan of Pahang" - dts_observed.add( + # Birthday of the Sultan of Pahang. + name = tr("Hari Keputeraan Sultan Pahang") + self.dts_observed.add( self._add_holiday_jul_30(name) if self._year >= 2019 else self._add_holiday_oct_24(name) ) - elif self.subdiv == "PNG": - if self._year >= 2009: - dts_observed.add(self._add_holiday_jul_7("George Town Heritage Day")) + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) - dts_observed.add( - self._add_holiday_2nd_sat_of_jul("Birthday of the Governor of Penang") + def _populate_subdiv_07_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) + + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) + + if self._year >= 2009: + self.dts_observed.add( + # George Town Heritage Day. + self._add_holiday_jul_7(tr("Hari Ulang Tahun Perisytiharan Tapak Warisan Dunia")) ) - elif self.subdiv == "PLS" and self._year >= 2000: - name = "Birthday of The Raja of Perlis" - dts_observed.add( + self.dts_observed.add( + # Birthday of the Governor of Penang. + self._add_holiday_2nd_sat_of_jul(tr("Hari Jadi Yang di-Pertua Negeri Pulau Pinang")) + ) + + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) + + def _populate_subdiv_08_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) + + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) + + # Birthday of the Sultan of Perak. + name = tr("Hari Keputeraan Sultan Perak") + if self._year >= 2018: + self._add_holiday_1st_fri_of_nov(name) + else: + self._add_holiday_nov_27(name) + + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) + + def _populate_subdiv_09_public_holidays(self): + if self._year >= 2000: + # Birthday of the Raja of Perlis. + name = tr("Hari Ulang Tahun Keputeraan Raja Perlis") + self.dts_observed.add( self._add_holiday_jul_17(name) - if self._year >= 2018 + if 2018 <= self._year <= 2021 else self._add_holiday_may_17(name) ) - elif self.subdiv == "SGR": - dts_observed.add(self._add_holiday_dec_11("Birthday of The Sultan of Selangor")) + # Isra' and Mi'raj. + self.dts_observed.update(self._add_isra_and_miraj_day(tr("Israk dan Mikraj"))) - elif self.subdiv == "SWK": - # Dayak Festival Day (the first day of June) and the following day. - dts_observed.add(self._add_holiday_jun_1("Gawai Dayak")) - dts_observed.add(self._add_holiday_jun_2("Gawai Dayak (Second day)")) + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) - # Birthday of Tuan Yang Terutama Yang di-Pertua Negeri Sarawak - # (the second Saturday of October). - dts_observed.add( - self._add_holiday_2nd_sat_of_oct("Birthday of the Governor of Sarawak") - ) + # Eid al-Adha (Second Day). + self.dts_observed.update( + self._add_eid_al_adha_day_two(tr("Hari Raya Qurban (Hari Kedua)")) + ) + + def _populate_subdiv_10_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) - # Sarawak Independence Day - if self._year >= 2017: - dts_observed.add(self._add_holiday_jul_22("Sarawak Day")) + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) + + # Birthday of The Sultan of Selangor. + self.dts_observed.add(self._add_holiday_dec_11(tr("Hari Keputeraan Sultan Selangor"))) + + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) - elif self.subdiv == "TRG" and self._year >= 2000: - dts_observed.add( + def _populate_subdiv_11_public_holidays(self): + if self._year >= 2000: + self.dts_observed.add( self._add_holiday_mar_4( - "Anniversary of the Installation of the Sultan of Terengganu" + # Anniversary of the Installation of the Sultan of Terengganu. + tr("Hari Ulang Tahun Pertabalan Sultan Terengganu") ) ) - dts_observed.add(self._add_holiday_apr_26("Birthday of the Sultan of Terengganu")) + self.dts_observed.add( + # Birthday of the Sultan of Terengganu. + self._add_holiday_apr_26(tr("Hari Keputeraan Sultan Terengganu")) + ) - if self.subdiv in {"JHR", "KDH"}: - self._observed_rule = FRI_TO_NEXT_WORKDAY - self.weekend = {FRI, SAT} - elif self.subdiv in {"KTN", "TRG"}: - self._observed_rule = SAT_TO_NEXT_WORKDAY - self.weekend = {FRI, SAT} + if self._year >= 2020: + # Isra' and Mi'raj. + self.dts_observed.update(self._add_isra_and_miraj_day(tr("Israk dan Mikraj"))) - if self.observed: - self._populate_observed(dts_observed) + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) - # Special cases observed from previous year. - if self._year == 2007 and self.subdiv not in {"JHR", "KDH", "KTN", "TRG"}: - self._add_holiday_jan_2(self.observed_label % "Hari Raya Haji") + # Arafat Day. + self.dts_observed.update(self._add_arafah_day(tr("Hari Arafah"))) - if self._year == 2007 and self.subdiv == "TRG": - self._add_holiday_jan_2(self.observed_label % "Arafat Day") + self.dts_observed.update( + # Eid al-Adha (Second Day). + self._add_eid_al_adha_day_two(tr("Hari Raya Qurban (Hari Kedua)")) + ) - # The last two days in May (Pesta Kaamatan). - # (Sarawak Act) - # Day following a Sunday is not a holiday - if self.subdiv in {"LBN", "SBH"}: - self._add_holiday_may_30("Pesta Kaamatan") - self._add_holiday_may_31("Pesta Kaamatan (Second day)") + def _populate_subdiv_12_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) - # Other holidays (decrees etc.) + # Good Friday. + self._add_good_friday(tr("Good Friday")) - # Awal Muharram. - self._add_islamic_new_year_day("Awal Muharram (Hijri New Year)") + # Pesta Kaamatan. + name = tr("Pesta Kaamatan") + self._add_holiday_may_30(name) + self._add_holiday_may_31(name) - # Special holidays (states) - if self._year == 2021 and self.subdiv in {"KUL", "LBN", "PJY"}: - self._add_holiday_dec_3("Malaysia Cup Holiday") + # Birthday of the Governor of Sabah. + self._add_holiday_1st_sat_of_oct(tr("Hari Jadi Yang di-Pertua Negeri Sabah")) - if self._year == 2022 and self.subdiv == "KDH": - self._add_holiday_jan_18("Thaipusam") + if self._year >= 2019: + # Christmas Eve. + self._add_christmas_eve(tr("Christmas Eve")) - if self._year == 2022 and self.subdiv in {"JHR", "KDH", "KTN", "TRG"}: - self._add_holiday_may_4("Labour Day Holiday") + def _populate_subdiv_13_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) - # Multiple state holidays. # Good Friday. - if self.subdiv in {"SBH", "SWK"}: - self._add_good_friday("Good Friday") - - # Single state holidays. - if self.subdiv == "JHR": - if self._year >= 2015: - self._add_holiday_mar_23("Birthday of the Sultan of Johor") - - if self._year >= 2011: - self._add_hari_hol_johor("Hari Hol of Sultan Iskandar of Johor") - - elif self.subdiv == "KDH" and self._year >= 2020: - self._add_holiday_3rd_sun_of_jun("Birthday of The Sultan of Kedah") - - elif self.subdiv == "KTN" and self._year >= 2010: - name = "Birthday of the Sultan of Kelantan" - self._add_holiday_nov_11(name) - self._add_holiday_nov_12(name) - - elif self.subdiv == "PRK": - # This Holiday used to be on 27th until 2017 - # https://www.officeholidays.com/holidays/malaysia/birthday-of-the-sultan-of-perak - name = "Birthday of the Sultan of Perak" - if self._year >= 2018: - self._add_holiday_1st_fri_of_nov(name) - else: - self._add_holiday_nov_27(name) + self._add_good_friday(tr("Good Friday")) + + if self._year >= 1965: + # Dayak Festival Day. + name = tr("Perayaan Hari Gawai Dayak") + self.dts_observed.add(self._add_holiday_jun_1(name)) + self.dts_observed.add(self._add_holiday_jun_2(name)) + + # Birthday of the Governor of Sarawak. + self._add_holiday_2nd_sat_of_oct(tr("Hari Jadi Yang di-Pertua Negeri Sarawak")) + + if self._year >= 2017: + # Sarawak Independence Day. + self.dts_observed.add(self._add_holiday_jul_22(tr("Hari Kemerdekaan Sarawak"))) + + def _populate_subdiv_14_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) + + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) + + if self._year >= 1974: + # Federal Territory Day. + self.dts_observed.add(self._add_holiday_feb_1(tr("Hari Wilayah Persekutuan"))) + + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) + + def _populate_subdiv_15_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) + + if self._year >= 1974: + # Federal Territory Day. + self.dts_observed.add(self._add_holiday_feb_1(tr("Hari Wilayah Persekutuan"))) + + # Pesta Kaamatan. + name = tr("Pesta Kaamatan") + self._add_holiday_may_30(name) + self._add_holiday_may_31(name) + + if self._year >= 2014: + # Deepavali. + self.dts_observed.add(self._add_diwali(tr("Hari Deepavali"))) + + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) + + def _populate_subdiv_16_public_holidays(self): + # New Year's Day. + self.dts_observed.add(self._add_new_years_day(tr("Tahun Baharu"))) - elif self.subdiv == "SBH": - self._add_holiday_1st_sat_of_oct("Birthday of the Governor of Sabah") + # Thaipusam. + self.dts_observed.add(self._add_thaipusam(tr("Hari Thaipusam"))) + + if self._year >= 1974: + # Federal Territory Day. + self.dts_observed.add(self._add_holiday_feb_1(tr("Hari Wilayah Persekutuan"))) - if self._year >= 2019: - self._add_christmas_eve("Christmas Eve") + # Nuzul Al-Quran Day. + self.dts_observed.update(self._add_nuzul_al_quran_day(tr("Hari Nuzul Al-Quran"))) class MY(Malaysia): @@ -556,7 +741,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): HARI_HOL_JOHOR_DATES = { 2011: (JAN, 12), - 2012: ((JAN, 1), (DEC, 20)), + 2012: (DEC, 20), 2013: (DEC, 10), 2014: (NOV, 29), 2015: (NOV, 19), @@ -567,6 +752,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2020: (SEP, 24), 2021: (SEP, 13), 2022: (SEP, 3), + 2023: (AUG, 23), 2024: (AUG, 11), } @@ -593,6 +779,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2020: (AUG, 20), 2021: (AUG, 10), 2022: (JUL, 30), + 2023: (JUL, 19), 2024: (JUL, 7), } @@ -646,8 +833,10 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2020: (OCT, 29), 2021: (OCT, 19), 2022: (OCT, 10), + 2023: (SEP, 28), 2024: (SEP, 16), } + NUZUL_AL_QURAN_DATES = { 2001: (DEC, 3), 2002: (NOV, 22), @@ -704,11 +893,132 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): class MalaysiaStaticHolidays: + # General election additional holiday. + election_polling_day = tr("Cuti Peristiwa (pilihan raya umum)") + + # Additional holiday. + election_additional_holiday = "Cuti Peristiwa" + + # Eid al-Adha. + eid_al_adha = tr("Hari Raya Qurban") + + # Labor Day. + labor_day = tr("Hari Pekerja") + + # Malaysia Cup Holiday. + malaysia_cup_holiday = tr("Cuti Piala Malaysia") + + # Day of Installation of the 15th Yang di-Pertuan Agong. + yang_di_pertuan_agong_15_installation = tr("Hari Pertabalan Yang di-Pertuan Agong ke-15") + + # Day of Installation of the 16th Yang di-Pertuan Agong. + yang_di_pertuan_agong_16_installation = tr("Hari Pertabalan Yang di-Pertuan Agong ke-16") + + # Eid al-Fitr (additional holiday). + eid_al_fitr_additional_holiday = tr("Hari Raya Puasa (pergantian hari)") + + # Arafat Day. + arafat_day = tr("Hari Arafah") + + # Additional holiday in commemoration of the 2017 SEA Games. + additional_holiday_2017_sea_games = tr("Cuti tambahan sempena memperingati SAT 2017") + special_public_holidays = { - # The years 1955 1959 1995 seems to have the elections - # one weekday but I am not sure if they were marked as - # holidays. - 1999: (NOV, 29, "Malaysia General Election Holiday"), - 2018: (MAY, 9, "Malaysia General Election Holiday"), - 2019: (JUL, 30, "Installation of New King"), + 1999: (NOV, 29, election_polling_day), + 2017: ( + (APR, 24, yang_di_pertuan_agong_15_installation), + (SEP, 4, additional_holiday_2017_sea_games), + ), + 2018: (MAY, 9, election_polling_day), + 2019: (JUL, 30, yang_di_pertuan_agong_16_installation), + 2022: ( + (NOV, 18, election_polling_day), + (NOV, 19, election_polling_day), + (NOV, 28, election_additional_holiday), + ), + 2023: (APR, 21, eid_al_fitr_additional_holiday), + } + + special_14_public_holidays = { + 2021: (DEC, 3, malaysia_cup_holiday), + } + + special_15_public_holidays = { + 2021: (DEC, 3, malaysia_cup_holiday), + } + + special_16_public_holidays = { + 2021: (DEC, 3, malaysia_cup_holiday), + } + + special_13_public_holidays = { + 2018: ( + (MAY, 17, election_additional_holiday), + (MAY, 18, election_additional_holiday), + ), + } + + special_01_public_holidays_observed = { + 2022: (MAY, 4, labor_day), + } + + special_02_public_holidays_observed = { + 2022: (MAY, 4, labor_day), + } + + special_03_public_holidays_observed = { + 2022: (MAY, 4, labor_day), + } + + special_14_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_15_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_04_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_05_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_06_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_16_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_09_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_07_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_08_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_12_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_10_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_13_public_holidays_observed = { + 2007: (JAN, 2, eid_al_adha), + } + + special_11_public_holidays_observed = { + 2007: (JAN, 2, arafat_day), + 2022: (MAY, 4, labor_day), } diff --git a/holidays/locale/en_US/LC_MESSAGES/MY.po b/holidays/locale/en_US/LC_MESSAGES/MY.po new file mode 100644 index 000000000..f25cb4a1a --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/MY.po @@ -0,0 +1,250 @@ +# 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/python-holidays +# License: MIT (see LICENSE file) +# +# Malaysia holidays en_US localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.49\n" +"POT-Creation-Date: 2024-04-28 21:03+0300\n" +"PO-Revision-Date: 2024-04-29 15:16+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays Localization Team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.2\n" +"X-Generator: Poedit 3.4.2\n" + +#. %s (estimated). +#, c-format +msgid "%s (anggaran)" +msgstr "%s (estimated)" + +#. %s (observed). +#, c-format +msgid "Cuti %s" +msgstr "%s (observed)" + +#. %s (observed, estimated). +#, c-format +msgid "Cuti %s (anggaran)" +msgstr "%s (observed, estimated)" + +#. Chinese New Year. +msgid "Tahun Baharu Cina" +msgstr "Chinese New Year" + +#. Chinese New Year (Second Day). +msgid "Tahun Baharu Cina (Hari Kedua)" +msgstr "Chinese New Year (Second Day)" + +#. Vesak Day. +msgid "Hari Wesak" +msgstr "Vesak Day" + +#. Labor Day. +msgid "Hari Pekerja" +msgstr "Labor Day" + +#. Birthday of HM Yang di-Pertuan Agong. +msgid "Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong" +msgstr "Birthday of HM Yang di-Pertuan Agong" + +#. National Day. +msgid "Hari Kebangsaan" +msgstr "National Day" + +#. Malaysia Day. +msgid "Hari Malaysia" +msgstr "Malaysia Day" + +#. Christmas Day. +msgid "Hari Krismas" +msgstr "Christmas Day" + +#. Islamic New Year. +msgid "Awal Muharam" +msgstr "Islamic New Year" + +#. Prophet Muhammad's Birthday. +msgid "Hari Keputeraan Nabi Muhammad S.A.W." +msgstr "Prophet Muhammad's Birthday" + +#. Eid al-Fitr. +msgid "Hari Raya Puasa" +msgstr "Eid al-Fitr" + +#. Eid al-Fitr (Second Day). +msgid "Hari Raya Puasa (Hari Kedua)" +msgstr "Eid al-Fitr (Second Day)" + +#. Eid al-Adha. +msgid "Hari Raya Qurban" +msgstr "Eid al-Adha" + +#. Deepavali. +msgid "Hari Deepavali" +msgstr "Deepavali" + +#. Thaipusam. +msgid "Hari Thaipusam" +msgstr "Thaipusam" + +#. Birthday of the Sultan of Johor. +msgid "Hari Keputeraan Sultan Johor" +msgstr "Birthday of the Sultan of Johor" + +#. The Sultan of Johor Hol. +msgid "Hari Hol Almarhum Sultan Iskandar" +msgstr "The Sultan of Johor Hol" + +#. Beginning of Ramadan. +msgid "Awal Ramadan" +msgstr "Beginning of Ramadan" + +#. Birthday of The Sultan of Kedah. +msgid "Hari Keputeraan Sultan Kedah" +msgstr "Birthday of The Sultan of Kedah" + +#. Isra' and Mi'raj. +msgid "Israk dan Mikraj" +msgstr "Isra' and Mi'raj" + +#. Eid al-Adha (Second Day). +msgid "Hari Raya Qurban (Hari Kedua)" +msgstr "Eid al-Adha (Second Day)" + +#. Birthday of the Sultan of Kelantan. +msgid "Hari Keputeraan Sultan Kelantan" +msgstr "Birthday of the Sultan of Kelantan" + +#. Nuzul Al-Quran Day. +msgid "Hari Nuzul Al-Quran" +msgstr "Nuzul Al-Quran Day" + +#. New Year's Day. +msgid "Tahun Baharu" +msgstr "New Year's Day" + +#. Federal Territory Day. +msgid "Hari Wilayah Persekutuan" +msgstr "Federal Territory Day" + +#. Pesta Kaamatan. +msgid "Pesta Kaamatan" +msgstr "Pesta Kaamatan" + +#. Declaration of Independence Day. +msgid "Hari Pengisytiharan Tarikh Kemerdekaan" +msgstr "Declaration of Independence Day" + +#. Declaration of Malacca as a Historical City. +msgid "Hari Perisytiharan Melaka Sebagai Bandaraya Bersejarah" +msgstr "Declaration of Malacca as a Historical City" + +#. Birthday of the Governor of Malacca. +msgid "Hari Jadi Yang di-Pertua Negeri Melaka" +msgstr "Birthday of the Governor of Malacca" + +#. Birthday of the Sultan of Negeri Sembilan. +msgid "Hari Keputeraan Yang di-Pertuan Besar Negeri Sembilan" +msgstr "Birthday of the Sultan of Negeri Sembilan" + +#. The Sultan of Pahang Hol. +msgid "Hari Hol Sultan Pahang" +msgstr "The Sultan of Pahang Hol" + +#. Birthday of the Sultan of Pahang. +msgid "Hari Keputeraan Sultan Pahang" +msgstr "Birthday of the Sultan of Pahang" + +#. Birthday of the Raja of Perlis. +msgid "Hari Ulang Tahun Keputeraan Raja Perlis" +msgstr "Birthday of the Raja of Perlis" + +#. George Town Heritage Day. +msgid "Hari Ulang Tahun Perisytiharan Tapak Warisan Dunia" +msgstr "George Town Heritage Day" + +#. Birthday of the Governor of Penang. +msgid "Hari Jadi Yang di-Pertua Negeri Pulau Pinang" +msgstr "Birthday of the Governor of Penang" + +#. Birthday of the Sultan of Perak. +msgid "Hari Keputeraan Sultan Perak" +msgstr "Birthday of the Sultan of Perak" + +#. Good Friday. +msgid "Good Friday" +msgstr "Good Friday" + +#. Birthday of the Governor of Sabah. +msgid "Hari Jadi Yang di-Pertua Negeri Sabah" +msgstr "Birthday of the Governor of Sabah" + +#. Christmas Eve. +msgid "Christmas Eve" +msgstr "Christmas Eve" + +#. Birthday of The Sultan of Selangor. +msgid "Hari Keputeraan Sultan Selangor" +msgstr "Birthday of The Sultan of Selangor" + +#. Dayak Festival Day. +msgid "Perayaan Hari Gawai Dayak" +msgstr "Dayak Festival Day" + +#. Birthday of the Governor of Sarawak. +msgid "Hari Jadi Yang di-Pertua Negeri Sarawak" +msgstr "Birthday of the Governor of Sarawak" + +#. Sarawak Independence Day. +msgid "Hari Kemerdekaan Sarawak" +msgstr "Sarawak Independence Day" + +#. Anniversary of the Installation of the Sultan of Terengganu. +msgid "Hari Ulang Tahun Pertabalan Sultan Terengganu" +msgstr "Anniversary of the Installation of the Sultan of Terengganu" + +#. Birthday of the Sultan of Terengganu. +msgid "Hari Keputeraan Sultan Terengganu" +msgstr "Birthday of the Sultan of Terengganu" + +#. Arafat Day. +msgid "Hari Arafah" +msgstr "Arafat Day" + +#. General election additional holiday. +msgid "Cuti Peristiwa (pilihan raya umum)" +msgstr "General election additional holiday" + +#. Malaysia Cup Holiday. +msgid "Cuti Piala Malaysia" +msgstr "Malaysia Cup Holiday" + +#. Day of Installation of the 15th Yang di-Pertuan Agong. +msgid "Hari Pertabalan Yang di-Pertuan Agong ke-15" +msgstr "Day of Installation of the 15th Yang di-Pertuan Agong" + +#. Day of Installation of the 16th Yang di-Pertuan Agong. +msgid "Hari Pertabalan Yang di-Pertuan Agong ke-16" +msgstr "Day of Installation of the 16th Yang di-Pertuan Agong" + +#. Eid al-Fitr (additional holiday). +msgid "Hari Raya Puasa (pergantian hari)" +msgstr "Eid al-Fitr (additional holiday)" + +#. Additional holiday in commemoration of the 2017 SEA Games. +msgid "Cuti tambahan sempena memperingati SAT 2017" +msgstr "Additional holiday in commemoration of the 2017 SEA Games" diff --git a/holidays/locale/ms_MY/LC_MESSAGES/MY.po b/holidays/locale/ms_MY/LC_MESSAGES/MY.po new file mode 100644 index 000000000..ec06d7467 --- /dev/null +++ b/holidays/locale/ms_MY/LC_MESSAGES/MY.po @@ -0,0 +1,250 @@ +# 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/python-holidays +# License: MIT (see LICENSE file) +# +# Malaysia holidays. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.49\n" +"POT-Creation-Date: 2024-04-28 21:03+0300\n" +"PO-Revision-Date: 2024-04-28 21:06+0300\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays Localization Team\n" +"Language: ms_MY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.2\n" +"X-Generator: Poedit 3.4.2\n" + +#. %s (estimated). +#, c-format +msgid "%s (anggaran)" +msgstr "" + +#. %s (observed). +#, c-format +msgid "Cuti %s" +msgstr "" + +#. %s (observed, estimated). +#, c-format +msgid "Cuti %s (anggaran)" +msgstr "" + +#. Chinese New Year. +msgid "Tahun Baharu Cina" +msgstr "" + +#. Chinese New Year (Second Day). +msgid "Tahun Baharu Cina (Hari Kedua)" +msgstr "" + +#. Vesak Day. +msgid "Hari Wesak" +msgstr "" + +#. Labour Day. +msgid "Hari Pekerja" +msgstr "" + +#. Birthday of HM Yang di-Pertuan Agong. +msgid "Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong" +msgstr "" + +#. National Day. +msgid "Hari Kebangsaan" +msgstr "" + +#. Malaysia Day. +msgid "Hari Malaysia" +msgstr "" + +#. Christmas Day. +msgid "Hari Krismas" +msgstr "" + +#. Islamic New Year. +msgid "Awal Muharam" +msgstr "" + +#. Prophet Muhammad's Birthday. +msgid "Hari Keputeraan Nabi Muhammad S.A.W." +msgstr "" + +#. Eid al-Fitr. +msgid "Hari Raya Puasa" +msgstr "" + +#. Eid al-Fitr (Second Day). +msgid "Hari Raya Puasa (Hari Kedua)" +msgstr "" + +#. Eid al-Adha. +msgid "Hari Raya Qurban" +msgstr "" + +#. Deepavali. +msgid "Hari Deepavali" +msgstr "" + +#. Thaipusam. +msgid "Hari Thaipusam" +msgstr "" + +#. Birthday of the Sultan of Johor. +msgid "Hari Keputeraan Sultan Johor" +msgstr "" + +#. The Sultan of Johor Hol. +msgid "Hari Hol Almarhum Sultan Iskandar" +msgstr "" + +#. Beginning of Ramadan. +msgid "Awal Ramadan" +msgstr "" + +#. Birthday of The Sultan of Kedah. +msgid "Hari Keputeraan Sultan Kedah" +msgstr "" + +#. Isra and Miraj. +msgid "Israk dan Mikraj" +msgstr "" + +#. Eid al-Adha (Second Day). +msgid "Hari Raya Qurban (Hari Kedua)" +msgstr "" + +#. Birthday of the Sultan of Kelantan. +msgid "Hari Keputeraan Sultan Kelantan" +msgstr "" + +#. Nuzul Al-Quran Day. +msgid "Hari Nuzul Al-Quran" +msgstr "" + +#. New Year's Day. +msgid "Tahun Baharu" +msgstr "" + +#. Federal Territory Day. +msgid "Hari Wilayah Persekutuan" +msgstr "" + +#. Pesta Kaamatan. +msgid "Pesta Kaamatan" +msgstr "" + +#. Declaration of Independence Day. +msgid "Hari Pengisytiharan Tarikh Kemerdekaan" +msgstr "" + +#. Declaration of Malacca as a Historical City. +msgid "Hari Perisytiharan Melaka Sebagai Bandaraya Bersejarah" +msgstr "" + +#. Birthday of the Governor of Malacca. +msgid "Hari Jadi Yang di-Pertua Negeri Melaka" +msgstr "" + +#. Birthday of the Sultan of Negeri Sembilan. +msgid "Hari Keputeraan Yang di-Pertuan Besar Negeri Sembilan" +msgstr "" + +#. The Sultan of Pahang Hol. +msgid "Hari Hol Sultan Pahang" +msgstr "" + +#. Birthday of the Sultan of Pahang. +msgid "Hari Keputeraan Sultan Pahang" +msgstr "" + +#. Birthday of The Raja of Perlis. +msgid "Hari Ulang Tahun Keputeraan Raja Perlis" +msgstr "" + +#. George Town Heritage Day. +msgid "Hari Ulang Tahun Perisytiharan Tapak Warisan Dunia" +msgstr "" + +#. Birthday of the Governor of Penang. +msgid "Hari Jadi Yang di-Pertua Negeri Pulau Pinang" +msgstr "" + +#. Birthday of the Sultan of Perak. +msgid "Hari Keputeraan Sultan Perak" +msgstr "" + +#. Good Friday. +msgid "Good Friday" +msgstr "" + +#. Birthday of the Governor of Sabah. +msgid "Hari Jadi Yang di-Pertua Negeri Sabah" +msgstr "" + +#. Christmas Eve. +msgid "Christmas Eve" +msgstr "" + +#. Birthday of The Sultan of Selangor. +msgid "Hari Keputeraan Sultan Selangor" +msgstr "" + +#. Dayak Festival Day. +msgid "Perayaan Hari Gawai Dayak" +msgstr "" + +#. Birthday of the Governor of Sarawak. +msgid "Hari Jadi Yang di-Pertua Negeri Sarawak" +msgstr "" + +#. Sarawak Independence Day. +msgid "Hari Kemerdekaan Sarawak" +msgstr "" + +#. Anniversary of the Installation of the Sultan of Terengganu. +msgid "Hari Ulang Tahun Pertabalan Sultan Terengganu" +msgstr "" + +#. Birthday of the Sultan of Terengganu. +msgid "Hari Keputeraan Sultan Terengganu" +msgstr "" + +#. Arafat Day. +msgid "Hari Arafah" +msgstr "" + +#. General election additional holiday. +msgid "Cuti Peristiwa (pilihan raya umum)" +msgstr "" + +#. Malaysia Cup Holiday. +msgid "Cuti Piala Malaysia" +msgstr "" + +#. Day of Installation of the 15th Yang di-Pertuan Agong. +msgid "Hari Pertabalan Yang di-Pertuan Agong ke-15" +msgstr "" + +#. Day of Installation of the 16th Yang di-Pertuan Agong. +msgid "Hari Pertabalan Yang di-Pertuan Agong ke-16" +msgstr "" + +#. Eid al-Fitr (additional holiday). +msgid "Hari Raya Puasa (pergantian hari)" +msgstr "" + +#. Additional holiday in commemoration of the 2017 SEA Games. +msgid "Cuti tambahan sempena memperingati SAT 2017" +msgstr "" diff --git a/snapshots/countries/MY_01.json b/snapshots/countries/MY_01.json new file mode 100644 index 000000000..7ed012e28 --- /dev/null +++ b/snapshots/countries/MY_01.json @@ -0,0 +1,1716 @@ +{ + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-25": "Beginning of Ramadan (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-25": "Christmas Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-28": "Thaipusam", + "1953-05-14": "Beginning of Ramadan (estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1953-12-27": "Christmas Day (observed)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-02-18": "Thaipusam", + "1954-05-04": "Beginning of Ramadan (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-09": "Thaipusam", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-04-24": "Beginning of Ramadan (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-08": "Vesak Day (observed, estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-26": "Thaipusam", + "1956-04-12": "Beginning of Ramadan (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-13": "Eid al-Fitr (observed, estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-09-02": "National Day (observed)", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-03": "Chinese New Year (Second Day) (observed, estimated)", + "1957-02-15": "Thaipusam", + "1957-02-17": "Thaipusam (observed)", + "1957-04-01": "Beginning of Ramadan (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-05": "Thaipusam", + "1958-03-21": "Beginning of Ramadan (estimated)", + "1958-03-23": "Beginning of Ramadan (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-29": "Eid al-Adha (observed, estimated)", + "1958-08-31": "National Day", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-09-28": "Prophet Muhammad's Birthday (observed, estimated)", + "1958-11-09": "Deepavali", + "1958-12-25": "Christmas Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-22": "Thaipusam", + "1959-03-11": "Beginning of Ramadan (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-04-12": "Eid al-Fitr (observed, estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-05-24": "Vesak Day (observed, estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-11-01": "Deepavali (observed)", + "1959-12-25": "Christmas Day", + "1959-12-27": "Christmas Day (observed)", + "1960-01-13": "Thaipusam", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-01-31": "Chinese New Year (Second Day) (observed, estimated)", + "1960-02-28": "Beginning of Ramadan (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1961-03-02": "Thaipusam", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-19": "Thaipusam", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-05-20": "Vesak Day (observed, estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-31": "National Day", + "1962-09-02": "National Day (observed)", + "1962-10-26": "Deepavali", + "1962-10-28": "Deepavali (observed)", + "1962-12-25": "Christmas Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1963-01-27": "Chinese New Year (observed, estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-05": "Eid al-Adha (observed, estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-04": "Prophet Muhammad's Birthday (observed, estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-15": "Beginning of Ramadan (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-16": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "1964-02-28": "Thaipusam", + "1964-03-01": "Thaipusam (observed)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1964-12-27": "Christmas Day (observed)", + "1965-01-03": "Beginning of Ramadan (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-02-16": "Thaipusam", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-10-24": "Deepavali (observed)", + "1965-12-23": "Beginning of Ramadan (estimated)", + "1965-12-25": "Christmas Day", + "1966-01-06": "Thaipusam", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Chinese New Year (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-03": "Eid al-Adha (observed, estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-07-03": "Prophet Muhammad's Birthday (observed, estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-13": "Beginning of Ramadan (estimated)", + "1966-12-25": "Christmas Day", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-01-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-12": "Chinese New Year (Second Day) (observed, estimated)", + "1967-02-24": "Thaipusam", + "1967-02-26": "Thaipusam (observed)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-02": "Beginning of Ramadan (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated)", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-02-13": "Thaipusam", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-11-18": "Deepavali", + "1968-11-21": "Beginning of Ramadan (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-25": "Christmas Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-03": "Thaipusam", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-11-08": "Deepavali", + "1969-11-10": "Beginning of Ramadan (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-08": "Chinese New Year (observed, estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-21": "Thaipusam", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-01": "Beginning of Ramadan (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1970-12-27": "Christmas Day (observed)", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Prophet Muhammad's Birthday (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-10-20": "Beginning of Ramadan (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-11-21": "Eid al-Fitr (observed, estimated)", + "1971-12-25": "Christmas Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-02-29": "Thaipusam", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-08": "Beginning of Ramadan (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-18": "Thaipusam", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-09-02": "National Day (observed)", + "1973-09-27": "Beginning of Ramadan (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-12-25": "Christmas Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-09-17": "Beginning of Ramadan (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-02-26": "Thaipusam", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-06": "Beginning of Ramadan (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-15": "Thaipusam", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-03-14": "Prophet Muhammad's Birthday (observed, estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-26": "Beginning of Ramadan (estimated)", + "1976-08-31": "National Day", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-09-26": "Eid al-Fitr (observed, estimated)", + "1976-11-19": "Deepavali", + "1976-11-21": "Deepavali (observed)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-02-20": "Chinese New Year (observed, estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-03-05": "Thaipusam", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-15": "Beginning of Ramadan (estimated)", + "1977-08-31": "National Day", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-22": "Thaipusam", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-05": "Beginning of Ramadan (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-12": "Eid al-Adha (observed, estimated)", + "1978-12-25": "Christmas Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-02-11": "Prophet Muhammad's Birthday (observed, estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-07-25": "Beginning of Ramadan (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "1979-08-31": "National Day", + "1979-09-02": "National Day (observed)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-12-25": "Christmas Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-03-02": "Thaipusam", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-13": "Beginning of Ramadan (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "1981-02-19": "Thaipusam", + "1981-05-01": "Labor Day", + "1981-05-03": "Labor Day (observed)", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-02": "Beginning of Ramadan (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1981-12-27": "Christmas Day (observed)", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-10": "Thaipusam", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-06-22": "Beginning of Ramadan (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-28": "Thaipusam", + "1983-05-01": "Labor Day", + "1983-05-27": "Vesak Day (estimated)", + "1983-05-29": "Vesak Day (observed, estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-12": "Beginning of Ramadan (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-18": "Prophet Muhammad's Birthday (observed, estimated)", + "1983-12-25": "Christmas Day", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1984-02-17": "Thaipusam", + "1984-02-19": "Thaipusam (observed)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-31": "Beginning of Ramadan (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-08-31": "National Day", + "1984-09-02": "National Day (observed)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-03-06": "Thaipusam", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-20": "Beginning of Ramadan (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-12-25": "Christmas Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-23": "Thaipusam", + "1986-05-01": "Labor Day", + "1986-05-09": "Beginning of Ramadan (estimated)", + "1986-05-11": "Beginning of Ramadan (observed, estimated)", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Vesak Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-17": "Eid al-Adha (observed, estimated)", + "1986-08-31": "National Day", + "1986-10-31": "Deepavali", + "1986-11-02": "Deepavali (observed)", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-11-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1986-12-25": "Christmas Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "1987-04-29": "Beginning of Ramadan (estimated)", + "1987-05-01": "Labor Day", + "1987-05-03": "Labor Day (observed)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-05-31": "Eid al-Fitr (Second Day) (observed, estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1987-12-27": "Christmas Day (observed)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-03": "Thaipusam", + "1988-04-17": "Beginning of Ramadan (estimated)", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-02-21": "Thaipusam", + "1989-04-07": "Beginning of Ramadan (estimated)", + "1989-04-09": "Beginning of Ramadan (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-05-21": "Vesak Day (observed, estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-10-29": "Deepavali (observed)", + "1989-12-25": "Christmas Day", + "1990-01-12": "Thaipusam", + "1990-01-14": "Thaipusam (observed)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-03-27": "Beginning of Ramadan (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-04-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-09-02": "National Day (observed)", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-02-17": "Chinese New Year (observed, estimated)", + "1991-03-01": "Thaipusam", + "1991-03-03": "Thaipusam (observed)", + "1991-03-17": "Beginning of Ramadan (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-09-22": "Prophet Muhammad's Birthday (observed, estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-02-18": "Thaipusam", + "1992-03-05": "Beginning of Ramadan (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-05-01": "Labor Day", + "1992-05-03": "Labor Day (observed)", + "1992-05-17": "Vesak Day (estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1992-12-27": "Christmas Day (observed)", + "1993-01-08": "Thaipusam", + "1993-01-10": "Thaipusam (observed)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-02-22": "Beginning of Ramadan (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-11-14": "Deepavali (observed)", + "1993-12-25": "Christmas Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1994-02-13": "Beginning of Ramadan (observed, estimated); Chinese New Year (Second Day) (observed, estimated)", + "1994-02-25": "Thaipusam", + "1994-02-27": "Thaipusam (observed)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-05-01": "Labor Day", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-22": "Eid al-Adha (observed, estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-21": "Prophet Muhammad's Birthday (observed, estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-14": "Thaipusam", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-03-05": "Eid al-Fitr (Second Day) (observed, estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-21": "Beginning of Ramadan (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-03-04": "Thaipusam", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-10": "Beginning of Ramadan (estimated)", + "1997-01-12": "Beginning of Ramadan (observed, estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Chinese New Year (observed, estimated)", + "1997-02-22": "Thaipusam", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1997-12-30": "Beginning of Ramadan (estimated)", + "1998-01-13": "Thaipusam", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-02-01": "Eid al-Fitr (Second Day) (observed, estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-03": "Labor Day (observed)", + "1998-05-10": "Vesak Day (estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-12-19": "Beginning of Ramadan (estimated)", + "1998-12-25": "Christmas Day", + "1998-12-27": "Christmas Day (observed)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-03": "Thaipusam", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-09": "Beginning of Ramadan (estimated)", + "1999-12-25": "Christmas Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-20": "Thaipusam", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-11-27": "Beginning of Ramadan (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-09-02": "National Day (observed)", + "2001-11-14": "Deepavali", + "2001-11-17": "Beginning of Ramadan", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-27": "Thaipusam", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-26": "Prophet Muhammad's Birthday (observed)", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-11-03": "Deepavali", + "2002-11-06": "Beginning of Ramadan", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-08": "Eid al-Fitr (observed)", + "2002-12-25": "Christmas Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-12": "Eid al-Adha", + "2003-02-16": "Thaipusam", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-10-23": "Deepavali", + "2003-10-27": "Beginning of Ramadan", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-01-25": "Chinese New Year (Second Day) (observed)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-10-16": "Beginning of Ramadan", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-12-25": "Christmas Day", + "2005-01-21": "Eid al-Adha", + "2005-01-23": "Eid al-Adha (observed)", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-02-23": "Thaipusam", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-22": "Vesak Day", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-05": "Beginning of Ramadan", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-11-06": "Eid al-Fitr (Second Day) (observed)", + "2005-12-25": "Christmas Day", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-13": "Thaipusam", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-05-14": "Vesak Day (observed)", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-09-24": "Beginning of Ramadan", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-03-04": "Thaipusam", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-02": "National Day (observed)", + "2007-09-13": "Beginning of Ramadan", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-10": "Chinese New Year (Second Day) (observed)", + "2008-02-22": "Thaipusam", + "2008-02-24": "Thaipusam (observed)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-02": "Beginning of Ramadan", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-11": "Thaipusam", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-03": "Labor Day (observed)", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-22": "Beginning of Ramadan", + "2009-08-31": "National Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2009-12-27": "Christmas Day (observed)", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-02-28": "Prophet Muhammad's Birthday (observed)", + "2010-03-01": "Thaipusam", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-05-30": "Vesak Day (observed)", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-11": "Beginning of Ramadan", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-12": "Eid al-Fitr (observed)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-07": "Deepavali (observed)", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-12": "The Sultan of Johor Hol", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-06": "Chinese New Year (Second Day) (observed)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-02-18": "Thaipusam", + "2011-02-20": "Thaipusam (observed)", + "2011-05-01": "Labor Day", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-01": "Beginning of Ramadan", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-09-18": "Malaysia Day (observed)", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2012-01-08": "Thaipusam", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-07-20": "Beginning of Ramadan", + "2012-07-22": "Beginning of Ramadan (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-31": "National Day", + "2012-09-02": "National Day (observed)", + "2012-09-16": "Malaysia Day", + "2012-10-26": "Eid al-Adha", + "2012-10-28": "Eid al-Adha (observed)", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-20": "The Sultan of Johor Hol", + "2012-12-25": "Christmas Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-25": "Thaipusam", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-05-26": "Vesak Day (observed)", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-09": "Beginning of Ramadan", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-11": "Eid al-Fitr (Second Day) (observed)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-10": "The Sultan of Johor Hol", + "2013-12-25": "Christmas Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-02": "Chinese New Year (observed)", + "2014-02-14": "Thaipusam", + "2014-02-16": "Thaipusam (observed)", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-06-29": "Beginning of Ramadan", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-11-29": "The Sultan of Johor Hol", + "2014-12-25": "Christmas Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-02-22": "Chinese New Year (Second Day) (observed)", + "2015-03-05": "Thaipusam", + "2015-03-23": "Birthday of the Sultan of Johor", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Labor Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-06-18": "Beginning of Ramadan", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-07-19": "Eid al-Fitr (observed)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-11-19": "The Sultan of Johor Hol", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2015-12-27": "Christmas Day (observed)", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-02-23": "Thaipusam", + "2016-03-23": "Birthday of the Sultan of Johor", + "2016-05-01": "Labor Day", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-07": "Beginning of Ramadan", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-09-18": "Malaysia Day (observed)", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-11-07": "The Sultan of Johor Hol", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2017-01-13": "Thaipusam", + "2017-01-15": "Thaipusam (observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-03-23": "Birthday of the Sultan of Johor", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-05-27": "Beginning of Ramadan", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-03": "Eid al-Adha (observed)", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-10-27": "The Sultan of Johor Hol", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-03": "Prophet Muhammad's Birthday (observed)", + "2017-12-25": "Christmas Day", + "2018-01-31": "Thaipusam", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-02-18": "Chinese New Year (observed)", + "2018-03-23": "Birthday of the Sultan of Johor", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-17": "Beginning of Ramadan", + "2018-05-29": "Vesak Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-06-17": "Eid al-Fitr (observed)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-02": "National Day (observed)", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-10-15": "The Sultan of Johor Hol", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-21": "Thaipusam", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-03-23": "Birthday of the Sultan of Johor", + "2019-05-01": "Labor Day", + "2019-05-06": "Beginning of Ramadan", + "2019-05-19": "Vesak Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-05": "The Sultan of Johor Hol", + "2019-10-27": "Deepavali", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-02-08": "Thaipusam", + "2020-03-23": "Birthday of the Sultan of Johor", + "2020-04-24": "Beginning of Ramadan", + "2020-04-26": "Beginning of Ramadan (observed)", + "2020-05-01": "Labor Day", + "2020-05-03": "Labor Day (observed)", + "2020-05-07": "Vesak Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-02": "Eid al-Adha (observed)", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-09-24": "The Sultan of Johor Hol", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2020-12-27": "Christmas Day (observed)", + "2021-01-28": "Thaipusam", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-02-14": "Chinese New Year (observed)", + "2021-03-23": "Birthday of the Sultan of Johor", + "2021-04-13": "Beginning of Ramadan", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-16": "Eid al-Fitr (Second Day) (observed)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-13": "The Sultan of Johor Hol", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-03-23": "Birthday of the Sultan of Johor", + "2022-04-03": "Beginning of Ramadan", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-03": "The Sultan of Johor Hol", + "2022-09-16": "Malaysia Day", + "2022-09-18": "Malaysia Day (observed)", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-02-05": "Thaipusam", + "2023-03-23": "Beginning of Ramadan; Birthday of the Sultan of Johor", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-23": "The Sultan of Johor Hol", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-12-25": "Christmas Day", + "2024-01-25": "Thaipusam", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-03-12": "Beginning of Ramadan", + "2024-03-23": "Birthday of the Sultan of Johor", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-11": "The Sultan of Johor Hol", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-11": "Thaipusam", + "2025-03-01": "Beginning of Ramadan (estimated)", + "2025-03-23": "Birthday of the Sultan of Johor", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-08": "Eid al-Adha (observed, estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-07-31": "The Sultan of Johor Hol (estimated)", + "2025-08-31": "National Day", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-02-01": "Thaipusam", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-03-22": "Eid al-Fitr (observed, estimated)", + "2026-03-23": "Birthday of the Sultan of Johor", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-03": "Labor Day (observed); Vesak Day (observed, estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-07-20": "The Sultan of Johor Hol (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2026-12-27": "Christmas Day (observed)", + "2027-01-22": "Thaipusam", + "2027-01-24": "Thaipusam (observed)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Beginning of Ramadan (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-03-23": "Birthday of the Sultan of Johor", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-07-10": "The Sultan of Johor Hol (estimated)", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-11": "Thaipusam", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-01-28": "Beginning of Ramadan (estimated)", + "2028-01-30": "Beginning of Ramadan (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-03-23": "Birthday of the Sultan of Johor", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-07": "Eid al-Adha (observed, estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-06-29": "The Sultan of Johor Hol (estimated)", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-16": "Beginning of Ramadan (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-03-23": "Birthday of the Sultan of Johor", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-06-18": "The Sultan of Johor Hol (estimated)", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-02": "National Day (observed)", + "2029-09-16": "Malaysia Day", + "2029-11-04": "Deepavali", + "2029-12-25": "Christmas Day", + "2030-01-05": "Beginning of Ramadan (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-17": "Thaipusam", + "2030-03-23": "Birthday of the Sultan of Johor", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-06-07": "The Sultan of Johor Hol (estimated)", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-10-27": "Deepavali (observed)", + "2030-12-25": "Christmas Day", + "2030-12-26": "Beginning of Ramadan (estimated)", + "2031-01-08": "Thaipusam", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-01-26": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "2031-03-23": "Birthday of the Sultan of Johor", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-05-27": "The Sultan of Johor Hol (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-15": "Beginning of Ramadan (estimated)", + "2031-12-25": "Christmas Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Birthday of the Sultan of Johor", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-15": "The Sultan of Johor Hol (estimated)", + "2032-05-23": "Vesak Day (estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-04": "Beginning of Ramadan (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-13": "Eid al-Adha (observed, estimated)", + "2033-03-23": "Birthday of the Sultan of Johor", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-05": "The Sultan of Johor Hol (estimated)", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-15": "Vesak Day (observed, estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-09-18": "Malaysia Day (observed)", + "2033-10-21": "Deepavali", + "2033-10-23": "Deepavali (observed)", + "2033-11-23": "Beginning of Ramadan (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Eid al-Fitr (observed, estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-21": "Islamic New Year (estimated)", + "2034-03-23": "Birthday of the Sultan of Johor", + "2034-04-25": "The Sultan of Johor Hol (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-12": "Beginning of Ramadan (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-11": "Chinese New Year (Second Day) (observed, estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-23": "Thaipusam", + "2035-02-25": "Thaipusam (observed)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-03-23": "Birthday of the Sultan of Johor", + "2035-04-14": "The Sultan of Johor Hol (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-02": "National Day (observed)", + "2035-09-16": "Malaysia Day", + "2035-10-29": "Deepavali", + "2035-11-01": "Beginning of Ramadan (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-25": "Christmas Day", + "2036-01-13": "Thaipusam", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-03-23": "Birthday of the Sultan of Johor", + "2036-04-03": "The Sultan of Johor Hol (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-16": "Malaysia Day", + "2036-10-20": "Beginning of Ramadan (estimated)", + "2036-11-16": "Deepavali", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-03-02": "Thaipusam", + "2037-03-23": "Birthday of the Sultan of Johor; The Sultan of Johor Hol (estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-03": "Labor Day (observed)", + "2037-05-29": "Vesak Day (estimated)", + "2037-05-31": "Vesak Day (observed, estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-10": "Beginning of Ramadan (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-12-25": "Christmas Day", + "2037-12-27": "Christmas Day (observed)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-07": "Chinese New Year (Second Day) (observed, estimated); Islamic New Year (observed, estimated)", + "2038-02-19": "Thaipusam", + "2038-02-21": "Thaipusam (observed)", + "2038-03-12": "The Sultan of Johor Hol (estimated)", + "2038-03-23": "Birthday of the Sultan of Johor", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-09-30": "Beginning of Ramadan (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-10-31": "Eid al-Fitr (observed, estimated)", + "2038-12-25": "Christmas Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-03-01": "The Sultan of Johor Hol (estimated)", + "2039-03-23": "Birthday of the Sultan of Johor", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-09-18": "Malaysia Day (observed)", + "2039-09-19": "Beginning of Ramadan (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-19": "The Sultan of Johor Hol (estimated)", + "2040-02-27": "Thaipusam", + "2040-03-23": "Birthday of the Sultan of Johor", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-05-27": "Vesak Day (observed, estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-02": "National Day (observed)", + "2040-09-07": "Beginning of Ramadan (estimated)", + "2040-09-09": "Beginning of Ramadan (observed, estimated)", + "2040-09-16": "Malaysia Day", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-16": "Eid al-Adha (observed, estimated)", + "2040-12-25": "Christmas Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-03": "Chinese New Year (observed, estimated)", + "2041-02-07": "The Sultan of Johor Hol (estimated)", + "2041-02-15": "Thaipusam", + "2041-02-17": "Thaipusam (observed)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-03-17": "Prophet Muhammad's Birthday (observed, estimated)", + "2041-03-23": "Birthday of the Sultan of Johor", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-28": "Beginning of Ramadan (estimated)", + "2041-08-31": "National Day", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-09-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-07": "Thaipusam", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-01-28": "The Sultan of Johor Hol (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-03-23": "Birthday of the Sultan of Johor", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-17": "Beginning of Ramadan (estimated)", + "2042-08-31": "National Day", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-17": "The Sultan of Johor Hol (estimated)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-24": "Thaipusam", + "2043-03-23": "Birthday of the Sultan of Johor", + "2043-05-01": "Labor Day", + "2043-05-03": "Labor Day (observed)", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-06": "Beginning of Ramadan (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-06": "Eid al-Fitr (observed, estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2043-12-27": "Christmas Day (observed)", + "2044-01-07": "The Sultan of Johor Hol (estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-03-23": "Birthday of the Sultan of Johor", + "2044-05-01": "Labor Day", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-07-26": "Beginning of Ramadan (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-09-18": "Malaysia Day (observed)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "The Sultan of Johor Hol (estimated)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-02-19": "Chinese New Year (observed, estimated)", + "2045-03-04": "Thaipusam", + "2045-03-23": "Birthday of the Sultan of Johor", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-15": "Beginning of Ramadan (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-15": "The Sultan of Johor Hol (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-01-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-03-23": "Birthday of the Sultan of Johor", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-05": "Beginning of Ramadan (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-05": "Eid al-Fitr (observed, estimated)", + "2046-08-31": "National Day", + "2046-09-02": "National Day (observed)", + "2046-09-16": "Malaysia Day", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-04": "The Sultan of Johor Hol (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-13": "Thaipusam (observed)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-03-23": "Birthday of the Sultan of Johor", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-06-24": "Beginning of Ramadan (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-11-17": "Deepavali (observed)", + "2047-11-24": "The Sultan of Johor Hol (estimated)", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-16": "Chinese New Year (observed, estimated)", + "2048-02-28": "Thaipusam", + "2048-03-01": "Thaipusam (observed)", + "2048-03-23": "Birthday of the Sultan of Johor", + "2048-05-01": "Labor Day", + "2048-05-03": "Labor Day (observed)", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-12": "Beginning of Ramadan (estimated)", + "2048-06-14": "Beginning of Ramadan (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-11-12": "The Sultan of Johor Hol (estimated)", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-20": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-12-25": "Christmas Day", + "2048-12-27": "Christmas Day (observed)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-03-23": "Birthday of the Sultan of Johor", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-06-02": "Beginning of Ramadan (estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-07-04": "Eid al-Fitr (Second Day) (observed, estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-11-02": "The Sultan of Johor Hol (estimated)", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-08": "Thaipusam", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-03-23": "Birthday of the Sultan of Johor", + "2050-05-01": "Labor Day", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-22": "Beginning of Ramadan (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-09-18": "Malaysia Day (observed)", + "2050-10-22": "The Sultan of Johor Hol (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/MY_02.json b/snapshots/countries/MY_02.json new file mode 100644 index 000000000..19348b937 --- /dev/null +++ b/snapshots/countries/MY_02.json @@ -0,0 +1,1814 @@ +{ + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-04-22": "Isra' and Mi'raj (estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-25": "Beginning of Ramadan (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (Second Day) (estimated)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-25": "Christmas Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-04-12": "Isra' and Mi'raj (estimated)", + "1953-05-14": "Beginning of Ramadan (estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (Second Day) (estimated)", + "1953-08-23": "Eid al-Adha (Second Day) (observed, estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1953-12-27": "Christmas Day (observed)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-04-01": "Isra' and Mi'raj (estimated)", + "1954-05-04": "Beginning of Ramadan (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (Second Day) (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-03-21": "Isra' and Mi'raj (estimated)", + "1955-04-24": "Beginning of Ramadan (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-08": "Vesak Day (observed, estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (Second Day) (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-03-10": "Isra' and Mi'raj (estimated)", + "1956-04-12": "Beginning of Ramadan (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-13": "Eid al-Fitr (observed, estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (Second Day) (estimated)", + "1956-07-22": "Eid al-Adha (Second Day) (observed, estimated)", + "1956-08-31": "National Day", + "1956-09-02": "National Day (observed)", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-03": "Chinese New Year (Second Day) (observed, estimated)", + "1957-02-27": "Isra' and Mi'raj (estimated)", + "1957-04-01": "Beginning of Ramadan (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (Second Day) (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-02-16": "Isra' and Mi'raj (estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-21": "Beginning of Ramadan (estimated)", + "1958-03-23": "Beginning of Ramadan (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (Second Day) (estimated)", + "1958-06-29": "Eid al-Adha (observed, estimated)", + "1958-08-31": "National Day", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-09-28": "Prophet Muhammad's Birthday (observed, estimated)", + "1958-11-09": "Deepavali", + "1958-12-25": "Christmas Day", + "1959-02-06": "Isra' and Mi'raj (estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Isra' and Mi'raj (observed, estimated)", + "1959-03-11": "Beginning of Ramadan (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-04-12": "Eid al-Fitr (observed, estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-05-24": "Vesak Day (observed, estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (Second Day) (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-11-01": "Deepavali (observed)", + "1959-12-25": "Christmas Day", + "1959-12-27": "Christmas Day (observed)", + "1960-01-26": "Isra' and Mi'raj (estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-01-31": "Chinese New Year (Second Day) (observed, estimated)", + "1960-02-28": "Beginning of Ramadan (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (Second Day) (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1961-01-14": "Isra' and Mi'raj (estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (Second Day) (estimated)", + "1961-05-28": "Eid al-Adha (Second Day) (observed, estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-04": "Isra' and Mi'raj (estimated)", + "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (Second Day) (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-05-20": "Vesak Day (observed, estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-31": "National Day", + "1962-09-02": "National Day (observed)", + "1962-10-26": "Deepavali", + "1962-10-28": "Deepavali (observed)", + "1962-12-24": "Isra' and Mi'raj (estimated)", + "1962-12-25": "Christmas Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1963-01-27": "Chinese New Year (observed, estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (Second Day) (estimated)", + "1963-05-05": "Eid al-Adha (observed, estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-04": "Prophet Muhammad's Birthday (observed, estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-13": "Isra' and Mi'raj (estimated)", + "1963-12-15": "Isra' and Mi'raj (observed, estimated)", + "1963-12-25": "Christmas Day", + "1964-01-15": "Beginning of Ramadan (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-16": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (Second Day) (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-01": "Isra' and Mi'raj (estimated)", + "1964-12-25": "Christmas Day", + "1964-12-27": "Christmas Day (observed)", + "1965-01-03": "Beginning of Ramadan (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (Second Day) (estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-10-24": "Deepavali (observed)", + "1965-11-20": "Isra' and Mi'raj (estimated)", + "1965-12-23": "Beginning of Ramadan (estimated)", + "1965-12-25": "Christmas Day", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Chinese New Year (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (Second Day) (estimated)", + "1966-04-03": "Eid al-Adha (observed, estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-07-03": "Prophet Muhammad's Birthday (observed, estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali; Isra' and Mi'raj (estimated)", + "1966-12-13": "Beginning of Ramadan (estimated)", + "1966-12-25": "Christmas Day", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-01-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-12": "Chinese New Year (Second Day) (observed, estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (Second Day) (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-30": "Isra' and Mi'raj (estimated)", + "1967-10-31": "Deepavali", + "1967-12-02": "Beginning of Ramadan (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated)", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (Second Day) (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-10-19": "Isra' and Mi'raj (estimated)", + "1968-11-18": "Deepavali", + "1968-11-21": "Beginning of Ramadan (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-25": "Christmas Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (Second Day) (estimated)", + "1969-03-02": "Eid al-Adha (Second Day) (observed, estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-10-08": "Isra' and Mi'raj (estimated)", + "1969-11-08": "Deepavali", + "1969-11-10": "Beginning of Ramadan (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-08": "Chinese New Year (observed, estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (Second Day) (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-09-28": "Isra' and Mi'raj (estimated)", + "1970-10-28": "Deepavali", + "1970-11-01": "Beginning of Ramadan (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1970-12-27": "Christmas Day (observed)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (Second Day) (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Prophet Muhammad's Birthday (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-09-17": "Isra' and Mi'raj (estimated)", + "1971-09-19": "Isra' and Mi'raj (observed, estimated)", + "1971-10-20": "Beginning of Ramadan (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-11-21": "Eid al-Fitr (observed, estimated)", + "1971-12-25": "Christmas Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (Second Day) (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-09-05": "Isra' and Mi'raj (estimated)", + "1972-10-08": "Beginning of Ramadan (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (Second Day) (estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-25": "Isra' and Mi'raj (estimated)", + "1973-08-31": "National Day", + "1973-09-02": "National Day (observed)", + "1973-09-27": "Beginning of Ramadan (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-12-25": "Christmas Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (Second Day) (estimated)", + "1974-01-06": "Eid al-Adha (Second Day) (observed, estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-15": "Isra' and Mi'raj (estimated)", + "1974-08-31": "National Day", + "1974-09-17": "Beginning of Ramadan (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (Second Day) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-05": "Isra' and Mi'raj (estimated)", + "1975-08-31": "National Day", + "1975-09-06": "Beginning of Ramadan (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (Second Day) (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-03-14": "Prophet Muhammad's Birthday (observed, estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-07-24": "Isra' and Mi'raj (estimated)", + "1976-08-26": "Beginning of Ramadan (estimated)", + "1976-08-31": "National Day", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-09-26": "Eid al-Fitr (observed, estimated)", + "1976-11-19": "Deepavali", + "1976-11-21": "Deepavali (observed)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (Second Day) (estimated)", + "1976-12-25": "Christmas Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-02-20": "Chinese New Year (observed, estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-07-13": "Isra' and Mi'raj (estimated)", + "1977-08-15": "Beginning of Ramadan (estimated)", + "1977-08-31": "National Day", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (Second Day) (estimated)", + "1977-12-25": "Christmas Day", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-07-02": "Isra' and Mi'raj (estimated)", + "1978-08-05": "Beginning of Ramadan (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (Second Day) (estimated)", + "1978-11-12": "Eid al-Adha (observed, estimated)", + "1978-12-25": "Christmas Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-02-11": "Prophet Muhammad's Birthday (observed, estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-06-22": "Isra' and Mi'raj (estimated)", + "1979-06-24": "Isra' and Mi'raj (observed, estimated)", + "1979-07-25": "Beginning of Ramadan (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "1979-08-31": "National Day", + "1979-09-02": "National Day (observed)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (Second Day) (estimated)", + "1979-11-18": "Deepavali", + "1979-12-25": "Christmas Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-06-10": "Isra' and Mi'raj (estimated)", + "1980-07-13": "Beginning of Ramadan (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (Second Day) (estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "1981-05-01": "Labor Day", + "1981-05-03": "Labor Day (observed)", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-31": "Isra' and Mi'raj (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-02": "Beginning of Ramadan (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (Second Day) (estimated)", + "1981-10-11": "Eid al-Adha (Second Day) (observed, estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1981-12-27": "Christmas Day (observed)", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-20": "Isra' and Mi'raj (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-06-22": "Beginning of Ramadan (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (Second Day) (estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-05-01": "Labor Day", + "1983-05-10": "Isra' and Mi'raj (estimated)", + "1983-05-27": "Vesak Day (estimated)", + "1983-05-29": "Vesak Day (observed, estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-12": "Beginning of Ramadan (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (Second Day) (estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-18": "Prophet Muhammad's Birthday (observed, estimated)", + "1983-12-25": "Christmas Day", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1984-04-28": "Isra' and Mi'raj (estimated)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-31": "Beginning of Ramadan (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-08-31": "National Day", + "1984-09-02": "National Day (observed)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (Second Day) (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-04-17": "Isra' and Mi'raj (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-20": "Beginning of Ramadan (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (Second Day) (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-12-25": "Christmas Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-04-06": "Isra' and Mi'raj (estimated)", + "1986-05-01": "Labor Day", + "1986-05-09": "Beginning of Ramadan (estimated)", + "1986-05-11": "Beginning of Ramadan (observed, estimated)", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Vesak Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (Second Day) (estimated)", + "1986-08-17": "Eid al-Adha (observed, estimated)", + "1986-08-31": "National Day", + "1986-10-31": "Deepavali", + "1986-11-02": "Deepavali (observed)", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-11-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1986-12-25": "Christmas Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "1987-03-27": "Isra' and Mi'raj (estimated)", + "1987-03-29": "Isra' and Mi'raj (observed, estimated)", + "1987-04-29": "Beginning of Ramadan (estimated)", + "1987-05-01": "Labor Day", + "1987-05-03": "Labor Day (observed)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-05-31": "Eid al-Fitr (Second Day) (observed, estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (Second Day) (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1987-12-27": "Christmas Day (observed)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-15": "Isra' and Mi'raj (estimated)", + "1988-04-17": "Beginning of Ramadan (estimated)", + "1988-05-01": "Labor Day", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (Second Day) (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-03-05": "Isra' and Mi'raj (estimated)", + "1989-04-07": "Beginning of Ramadan (estimated)", + "1989-04-09": "Beginning of Ramadan (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-05-21": "Vesak Day (observed, estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (Second Day) (estimated)", + "1989-07-16": "Eid al-Adha (Second Day) (observed, estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-10-29": "Deepavali (observed)", + "1989-12-25": "Christmas Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-02-22": "Isra' and Mi'raj (estimated)", + "1990-03-27": "Beginning of Ramadan (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-04-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (Second Day) (estimated)", + "1990-08-31": "National Day", + "1990-09-02": "National Day (observed)", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-02-11": "Isra' and Mi'raj (estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-02-17": "Chinese New Year (observed, estimated)", + "1991-03-17": "Beginning of Ramadan (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (Second Day) (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-09-22": "Prophet Muhammad's Birthday (observed, estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-31": "Isra' and Mi'raj (estimated)", + "1992-02-02": "Isra' and Mi'raj (observed, estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-03-05": "Beginning of Ramadan (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-05-01": "Labor Day", + "1992-05-03": "Labor Day (observed)", + "1992-05-17": "Vesak Day (estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (Second Day) (estimated)", + "1992-06-14": "Eid al-Adha (Second Day) (observed, estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1992-12-27": "Christmas Day (observed)", + "1993-01-20": "Isra' and Mi'raj (estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-02-22": "Beginning of Ramadan (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (Second Day) (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-11-14": "Deepavali (observed)", + "1993-12-25": "Christmas Day", + "1994-01-09": "Isra' and Mi'raj (estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1994-02-13": "Beginning of Ramadan (observed, estimated); Chinese New Year (Second Day) (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-05-01": "Labor Day", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (Second Day) (estimated)", + "1994-05-22": "Eid al-Adha (observed, estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-21": "Prophet Muhammad's Birthday (observed, estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-29": "Isra' and Mi'raj (estimated)", + "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-03-05": "Eid al-Fitr (Second Day) (observed, estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (Second Day) (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-19": "Isra' and Mi'raj (estimated)", + "1995-12-25": "Christmas Day", + "1996-01-21": "Beginning of Ramadan (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (Second Day) (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-08": "Isra' and Mi'raj (estimated)", + "1996-12-25": "Christmas Day", + "1997-01-10": "Beginning of Ramadan (estimated)", + "1997-01-12": "Beginning of Ramadan (observed, estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Chinese New Year (observed, estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (Second Day) (estimated)", + "1997-04-20": "Eid al-Adha (Second Day) (observed, estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-10-29": "Deepavali", + "1997-11-27": "Isra' and Mi'raj (estimated)", + "1997-12-25": "Christmas Day", + "1997-12-30": "Beginning of Ramadan (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-02-01": "Eid al-Fitr (Second Day) (observed, estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (Second Day) (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-03": "Labor Day (observed)", + "1998-05-10": "Vesak Day (estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-16": "Isra' and Mi'raj (estimated)", + "1998-11-17": "Deepavali", + "1998-12-19": "Beginning of Ramadan (estimated)", + "1998-12-25": "Christmas Day", + "1998-12-27": "Christmas Day (observed)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (Second Day) (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-05": "Isra' and Mi'raj (estimated)", + "1999-11-06": "Deepavali", + "1999-11-07": "Isra' and Mi'raj (observed, estimated)", + "1999-11-29": "General election additional holiday", + "1999-12-09": "Beginning of Ramadan (estimated)", + "1999-12-25": "Christmas Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (Second Day) (estimated)", + "2000-03-19": "Eid al-Adha (Second Day) (observed, estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-24": "Isra' and Mi'raj (estimated)", + "2000-10-25": "Deepavali", + "2000-11-27": "Beginning of Ramadan (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-07": "Eid al-Adha (Second Day)", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-09-02": "National Day (observed)", + "2001-10-15": "Isra' and Mi'raj", + "2001-11-14": "Deepavali", + "2001-11-17": "Beginning of Ramadan", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-24": "Eid al-Adha (Second Day)", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-26": "Prophet Muhammad's Birthday (observed)", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-10-04": "Isra' and Mi'raj", + "2002-10-06": "Isra' and Mi'raj (observed)", + "2002-11-03": "Deepavali", + "2002-11-06": "Beginning of Ramadan", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-08": "Eid al-Fitr (observed)", + "2002-12-25": "Christmas Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-12": "Eid al-Adha", + "2003-02-13": "Eid al-Adha (Second Day)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-24": "Isra' and Mi'raj", + "2003-10-23": "Deepavali", + "2003-10-27": "Beginning of Ramadan", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-01-25": "Chinese New Year (Second Day) (observed)", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Eid al-Adha (Second Day)", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-09-12": "Isra' and Mi'raj", + "2004-10-16": "Beginning of Ramadan", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-12-25": "Christmas Day", + "2005-01-21": "Eid al-Adha", + "2005-01-22": "Eid al-Adha (Second Day)", + "2005-01-23": "Eid al-Adha (observed)", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-22": "Vesak Day", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-09-01": "Isra' and Mi'raj", + "2005-10-05": "Beginning of Ramadan", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-11-06": "Eid al-Fitr (Second Day) (observed)", + "2005-12-25": "Christmas Day", + "2006-01-10": "Eid al-Adha", + "2006-01-11": "Eid al-Adha (Second Day)", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-05-14": "Vesak Day (observed)", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-22": "Isra' and Mi'raj", + "2006-08-31": "National Day", + "2006-09-24": "Beginning of Ramadan", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "Eid al-Adha (Second Day)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-11": "Isra' and Mi'raj", + "2007-08-31": "National Day", + "2007-09-02": "National Day (observed)", + "2007-09-13": "Beginning of Ramadan", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-21": "Eid al-Adha (Second Day)", + "2007-12-23": "Eid al-Adha (Second Day) (observed)", + "2007-12-25": "Christmas Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-10": "Chinese New Year (Second Day) (observed)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-07-31": "Isra' and Mi'raj", + "2008-08-31": "National Day", + "2008-09-02": "Beginning of Ramadan", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-10": "Eid al-Adha (Second Day)", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-03": "Labor Day (observed)", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-07-20": "Isra' and Mi'raj", + "2009-08-22": "Beginning of Ramadan", + "2009-08-31": "National Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-11-29": "Eid al-Adha (Second Day)", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2009-12-27": "Christmas Day (observed)", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-02-28": "Prophet Muhammad's Birthday (observed)", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-05-30": "Vesak Day (observed)", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-07-09": "Isra' and Mi'raj", + "2010-07-11": "Isra' and Mi'raj (observed)", + "2010-08-11": "Beginning of Ramadan", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-12": "Eid al-Fitr (observed)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-07": "Deepavali (observed)", + "2010-11-17": "Eid al-Adha", + "2010-11-18": "Eid al-Adha (Second Day)", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-06": "Chinese New Year (Second Day) (observed)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-05-01": "Labor Day", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-06-29": "Isra' and Mi'raj", + "2011-08-01": "Beginning of Ramadan", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-09-18": "Malaysia Day (observed)", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-08": "Eid al-Adha (Second Day)", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-06-17": "Isra' and Mi'raj", + "2012-07-20": "Beginning of Ramadan", + "2012-07-22": "Beginning of Ramadan (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-31": "National Day", + "2012-09-02": "National Day (observed)", + "2012-09-16": "Malaysia Day", + "2012-10-26": "Eid al-Adha", + "2012-10-27": "Eid al-Adha (Second Day)", + "2012-10-28": "Eid al-Adha (observed)", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-05-26": "Vesak Day (observed)", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-06-06": "Isra' and Mi'raj", + "2013-07-09": "Beginning of Ramadan", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-11": "Eid al-Fitr (Second Day) (observed)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-10-16": "Eid al-Adha (Second Day)", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-02": "Chinese New Year (observed)", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-05-27": "Isra' and Mi'raj", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-06-29": "Beginning of Ramadan", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (Second Day)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-02-22": "Chinese New Year (Second Day) (observed)", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Labor Day (observed)", + "2015-05-16": "Isra' and Mi'raj", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-06-18": "Beginning of Ramadan", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-07-19": "Eid al-Fitr (observed)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-09-25": "Eid al-Adha (Second Day)", + "2015-09-27": "Eid al-Adha (Second Day) (observed)", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2015-12-27": "Christmas Day (observed)", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-05-01": "Labor Day", + "2016-05-05": "Isra' and Mi'raj", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-07": "Beginning of Ramadan", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-13": "Eid al-Adha (Second Day)", + "2016-09-16": "Malaysia Day", + "2016-09-18": "Malaysia Day (observed)", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong; Isra' and Mi'raj", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-05-27": "Beginning of Ramadan", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-02": "Eid al-Adha (Second Day)", + "2017-09-03": "Eid al-Adha (observed)", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-03": "Prophet Muhammad's Birthday (observed)", + "2017-12-25": "Christmas Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-02-18": "Chinese New Year (observed)", + "2018-04-14": "Isra' and Mi'raj", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-17": "Beginning of Ramadan", + "2018-05-29": "Vesak Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-06-17": "Birthday of The Sultan of Kedah", + "2018-06-18": "Eid al-Fitr (observed)", + "2018-08-22": "Eid al-Adha", + "2018-08-23": "Eid al-Adha (Second Day)", + "2018-08-31": "National Day", + "2018-09-02": "National Day (observed)", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-04-03": "Isra' and Mi'raj", + "2019-05-01": "Labor Day", + "2019-05-06": "Beginning of Ramadan", + "2019-05-19": "Vesak Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-06-16": "Birthday of The Sultan of Kedah", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (Second Day)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-03-22": "Isra' and Mi'raj", + "2020-04-24": "Beginning of Ramadan", + "2020-04-26": "Beginning of Ramadan (observed)", + "2020-05-01": "Labor Day", + "2020-05-03": "Labor Day (observed)", + "2020-05-07": "Vesak Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-06-21": "Birthday of The Sultan of Kedah", + "2020-07-31": "Eid al-Adha", + "2020-08-01": "Eid al-Adha (Second Day)", + "2020-08-02": "Eid al-Adha (observed)", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2020-12-27": "Christmas Day (observed)", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-02-14": "Chinese New Year (observed)", + "2021-03-11": "Isra' and Mi'raj", + "2021-04-13": "Beginning of Ramadan", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-16": "Eid al-Fitr (Second Day) (observed)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-06-20": "Birthday of The Sultan of Kedah", + "2021-07-20": "Eid al-Adha", + "2021-07-21": "Eid al-Adha (Second Day)", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-03-01": "Isra' and Mi'raj", + "2022-04-03": "Beginning of Ramadan", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-06-19": "Birthday of The Sultan of Kedah", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (Second Day)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-09-18": "Malaysia Day (observed)", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-02-05": "Thaipusam", + "2023-02-18": "Isra' and Mi'raj", + "2023-03-23": "Beginning of Ramadan", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-18": "Birthday of The Sultan of Kedah", + "2023-06-29": "Eid al-Adha", + "2023-06-30": "Eid al-Adha (Second Day)", + "2023-07-02": "Eid al-Adha (Second Day) (observed)", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-12-25": "Christmas Day", + "2024-01-25": "Thaipusam", + "2024-02-08": "Isra' and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-03-12": "Beginning of Ramadan", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-06-18": "Eid al-Adha (Second Day)", + "2024-06-30": "Birthday of The Sultan of Kedah", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-27": "Isra' and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-11": "Thaipusam", + "2025-03-01": "Beginning of Ramadan (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (Second Day) (estimated)", + "2025-06-08": "Eid al-Adha (observed, estimated)", + "2025-06-15": "Birthday of The Sultan of Kedah", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-16": "Isra' and Mi'raj (estimated)", + "2026-01-18": "Isra' and Mi'raj (observed, estimated)", + "2026-02-01": "Thaipusam", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-03-22": "Eid al-Fitr (observed, estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-03": "Labor Day (observed); Vesak Day (observed, estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (Second Day) (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-06-21": "Birthday of The Sultan of Kedah", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2026-12-27": "Christmas Day (observed)", + "2027-01-05": "Isra' and Mi'raj (estimated)", + "2027-01-22": "Thaipusam", + "2027-01-24": "Thaipusam (observed)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Beginning of Ramadan (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (Second Day) (estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-06-20": "Birthday of The Sultan of Kedah", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day; Isra' and Mi'raj (estimated)", + "2028-01-11": "Thaipusam", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-01-28": "Beginning of Ramadan (estimated)", + "2028-01-30": "Beginning of Ramadan (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (Second Day) (estimated)", + "2028-05-07": "Eid al-Adha (observed, estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-06-18": "Birthday of The Sultan of Kedah", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-14": "Isra' and Mi'raj (estimated)", + "2028-12-25": "Christmas Day", + "2029-01-16": "Beginning of Ramadan (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (Second Day) (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-06-17": "Birthday of The Sultan of Kedah", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-02": "National Day (observed)", + "2029-09-16": "Malaysia Day", + "2029-11-04": "Deepavali", + "2029-12-03": "Isra' and Mi'raj (estimated)", + "2029-12-25": "Christmas Day", + "2030-01-05": "Beginning of Ramadan (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-17": "Thaipusam", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (Second Day) (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-06-16": "Birthday of The Sultan of Kedah", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-10-27": "Deepavali (observed)", + "2030-11-23": "Isra' and Mi'raj (estimated)", + "2030-12-25": "Christmas Day", + "2030-12-26": "Beginning of Ramadan (estimated)", + "2031-01-08": "Thaipusam", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-01-26": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (Second Day) (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-06-15": "Birthday of The Sultan of Kedah", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-16": "Malaysia Day", + "2031-11-12": "Isra' and Mi'raj (estimated)", + "2031-11-13": "Deepavali", + "2031-12-15": "Beginning of Ramadan (estimated)", + "2031-12-25": "Christmas Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (Second Day) (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Birthday of The Sultan of Kedah; Prophet Muhammad's Birthday (estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali; Isra' and Mi'raj (estimated)", + "2032-12-04": "Beginning of Ramadan (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (Second Day) (estimated)", + "2033-03-13": "Eid al-Adha (observed, estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-15": "Vesak Day (observed, estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-06-19": "Birthday of The Sultan of Kedah", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-09-18": "Malaysia Day (observed)", + "2033-10-21": "Deepavali; Isra' and Mi'raj (estimated)", + "2033-10-23": "Deepavali (observed); Isra' and Mi'raj (observed, estimated)", + "2033-11-23": "Beginning of Ramadan (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Eid al-Fitr (observed, estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (Second Day) (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-06-18": "Birthday of The Sultan of Kedah", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-10-10": "Isra' and Mi'raj (estimated)", + "2034-11-09": "Deepavali", + "2034-11-12": "Beginning of Ramadan (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-11": "Chinese New Year (Second Day) (observed, estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (Second Day) (estimated)", + "2035-02-23": "Thaipusam", + "2035-02-25": "Thaipusam (observed)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-06-17": "Birthday of The Sultan of Kedah", + "2035-08-31": "National Day", + "2035-09-02": "National Day (observed)", + "2035-09-16": "Malaysia Day", + "2035-09-29": "Isra' and Mi'raj (estimated)", + "2035-10-29": "Deepavali", + "2035-11-01": "Beginning of Ramadan (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-25": "Christmas Day", + "2036-01-13": "Thaipusam", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (Second Day) (estimated)", + "2036-02-10": "Eid al-Adha (Second Day) (observed, estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-06-15": "Birthday of The Sultan of Kedah", + "2036-08-31": "National Day", + "2036-09-16": "Malaysia Day", + "2036-09-18": "Isra' and Mi'raj (estimated)", + "2036-10-20": "Beginning of Ramadan (estimated)", + "2036-11-16": "Deepavali", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (Second Day) (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-03-02": "Thaipusam", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-03": "Labor Day (observed)", + "2037-05-29": "Vesak Day (estimated)", + "2037-05-31": "Vesak Day (observed, estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-06-21": "Birthday of The Sultan of Kedah", + "2037-08-31": "National Day", + "2037-09-07": "Isra' and Mi'raj (estimated)", + "2037-09-16": "Malaysia Day", + "2037-10-10": "Beginning of Ramadan (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-12-25": "Christmas Day", + "2037-12-27": "Christmas Day (observed)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (Second Day) (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-07": "Chinese New Year (Second Day) (observed, estimated); Islamic New Year (observed, estimated)", + "2038-02-19": "Thaipusam", + "2038-02-21": "Thaipusam (observed)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-06-20": "Birthday of The Sultan of Kedah", + "2038-08-28": "Isra' and Mi'raj (estimated)", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-09-30": "Beginning of Ramadan (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-10-31": "Eid al-Fitr (observed, estimated)", + "2038-12-25": "Christmas Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (Second Day) (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-06-19": "Birthday of The Sultan of Kedah", + "2039-08-17": "Isra' and Mi'raj (estimated)", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-09-18": "Malaysia Day (observed)", + "2039-09-19": "Beginning of Ramadan (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (Second Day) (estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-27": "Thaipusam", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-05-27": "Vesak Day (observed, estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-06-17": "Birthday of The Sultan of Kedah", + "2040-08-05": "Isra' and Mi'raj (estimated)", + "2040-08-31": "National Day", + "2040-09-02": "National Day (observed)", + "2040-09-07": "Beginning of Ramadan (estimated)", + "2040-09-09": "Beginning of Ramadan (observed, estimated)", + "2040-09-16": "Malaysia Day", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (Second Day) (estimated)", + "2040-12-16": "Eid al-Adha (observed, estimated)", + "2040-12-25": "Christmas Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-03": "Chinese New Year (observed, estimated)", + "2041-02-15": "Thaipusam", + "2041-02-17": "Thaipusam (observed)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-03-17": "Prophet Muhammad's Birthday (observed, estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-06-16": "Birthday of The Sultan of Kedah", + "2041-07-25": "Isra' and Mi'raj (estimated)", + "2041-08-28": "Beginning of Ramadan (estimated)", + "2041-08-31": "National Day", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-09-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (Second Day) (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-07": "Thaipusam", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-06-15": "Birthday of The Sultan of Kedah", + "2042-07-15": "Isra' and Mi'raj (estimated)", + "2042-08-17": "Beginning of Ramadan (estimated)", + "2042-08-31": "National Day", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (Second Day) (estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-24": "Thaipusam", + "2043-05-01": "Labor Day", + "2043-05-03": "Labor Day (observed)", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-06-21": "Birthday of The Sultan of Kedah", + "2043-07-04": "Isra' and Mi'raj (estimated)", + "2043-08-06": "Beginning of Ramadan (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-06": "Eid al-Fitr (observed, estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (Second Day) (estimated)", + "2043-11-15": "Eid al-Adha (Second Day) (observed, estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2043-12-27": "Christmas Day (observed)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-05-01": "Labor Day", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-06-19": "Birthday of The Sultan of Kedah", + "2044-06-23": "Isra' and Mi'raj (estimated)", + "2044-07-26": "Beginning of Ramadan (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-09-18": "Malaysia Day (observed)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (Second Day) (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-02-19": "Chinese New Year (observed, estimated)", + "2045-03-04": "Thaipusam", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-06-13": "Isra' and Mi'raj (estimated)", + "2045-06-18": "Birthday of The Sultan of Kedah", + "2045-07-15": "Beginning of Ramadan (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (Second Day) (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-01-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-06-02": "Isra' and Mi'raj (estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-06-17": "Birthday of The Sultan of Kedah", + "2046-07-05": "Beginning of Ramadan (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-05": "Eid al-Fitr (observed, estimated)", + "2046-08-31": "National Day", + "2046-09-02": "National Day (observed)", + "2046-09-16": "Malaysia Day", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (Second Day) (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-13": "Thaipusam (observed)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Isra' and Mi'raj (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-06-16": "Birthday of The Sultan of Kedah", + "2047-06-24": "Beginning of Ramadan (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (Second Day) (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-11-17": "Deepavali (observed)", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-16": "Chinese New Year (observed, estimated)", + "2048-02-28": "Thaipusam", + "2048-03-01": "Thaipusam (observed)", + "2048-05-01": "Labor Day", + "2048-05-03": "Labor Day (observed)", + "2048-05-10": "Isra' and Mi'raj (estimated)", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-12": "Beginning of Ramadan (estimated)", + "2048-06-14": "Beginning of Ramadan (observed, estimated)", + "2048-06-21": "Birthday of The Sultan of Kedah", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (Second Day) (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-20": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-12-25": "Christmas Day", + "2048-12-27": "Christmas Day (observed)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-04-29": "Isra' and Mi'raj (estimated)", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-06-02": "Beginning of Ramadan (estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-20": "Birthday of The Sultan of Kedah", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-07-04": "Eid al-Fitr (Second Day) (observed, estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (Second Day) (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-08": "Thaipusam", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-04-19": "Isra' and Mi'raj (estimated)", + "2050-05-01": "Labor Day", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-22": "Beginning of Ramadan (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-19": "Birthday of The Sultan of Kedah", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (Second Day) (estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-09-18": "Malaysia Day (observed)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/MY_03.json b/snapshots/countries/MY_03.json new file mode 100644 index 000000000..fe9b02e32 --- /dev/null +++ b/snapshots/countries/MY_03.json @@ -0,0 +1,1839 @@ +{ + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (Second Day) (estimated)", + "1952-11-15": "Deepavali", + "1952-11-16": "Deepavali (observed)", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-25": "Christmas Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (observed, estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-05-31": "Nuzul Al-Quran Day (observed, estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (Second Day) (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (Second Day) (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1954-12-26": "Christmas Day (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (Second Day) (estimated)", + "1955-08-01": "Eid al-Adha (observed, estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-10-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1955-11-12": "Deepavali", + "1955-11-13": "Deepavali (observed)", + "1955-12-25": "Christmas Day", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-04-29": "Nuzul Al-Quran Day (observed, estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-13": "Eid al-Fitr (Second Day) (observed, estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (Second Day) (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (Second Day) (estimated)", + "1957-08-31": "National Day", + "1957-09-01": "National Day (observed)", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-05-04": "Vesak Day (observed, estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (Second Day) (estimated)", + "1958-06-29": "Eid al-Adha (Second Day) (observed, estimated)", + "1958-08-31": "National Day", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-12-25": "Christmas Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-04-12": "Eid al-Fitr (Second Day) (observed, estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (Second Day) (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (Second Day) (estimated)", + "1960-06-06": "Birthday of HM Yang di-Pertuan Agong (observed); Eid al-Adha (observed, estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-09-04": "Prophet Muhammad's Birthday (observed, estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-05": "Nuzul Al-Quran Day (observed, estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (Second Day) (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (Second Day) (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-01-27": "Chinese New Year (Second Day) (observed, estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (Second Day) (estimated)", + "1963-05-05": "Eid al-Adha (Second Day) (observed, estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-09-01": "National Day (observed)", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-16": "Eid al-Fitr (Second Day) (observed, estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (Second Day) (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (Second Day) (estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-05-16": "Vesak Day (observed, estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-07-11": "Prophet Muhammad's Birthday (observed, estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1965-12-26": "Christmas Day (observed)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-09": "Nuzul Al-Quran Day (observed, estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (Second Day) (estimated)", + "1966-04-03": "Eid al-Adha (Second Day) (observed, estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (Second Day) (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated)", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (Second Day) (estimated)", + "1968-03-11": "Eid al-Adha (observed, estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-05-12": "Vesak Day (observed, estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-06-09": "Prophet Muhammad's Birthday (observed, estimated)", + "1968-08-31": "National Day", + "1968-09-01": "National Day (observed)", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-08": "Nuzul Al-Quran Day (observed, estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (Second Day) (estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1969-08-31": "National Day", + "1969-11-08": "Deepavali", + "1969-11-09": "Deepavali (observed)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (Second Day) (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (Second Day) (estimated)", + "1971-02-08": "Eid al-Adha (observed, estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-11-21": "Eid al-Fitr (Second Day) (observed, estimated)", + "1971-12-25": "Christmas Day", + "1971-12-26": "Christmas Day (observed)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (Second Day) (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-05-28": "Vesak Day (observed, estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-05": "Deepavali (observed)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (Second Day) (estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-14": "Nuzul Al-Quran Day (observed, estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (Second Day) (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1974-08-31": "National Day", + "1974-09-01": "National Day (observed)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (Second Day) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1975-08-31": "National Day", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-11-02": "Deepavali (observed)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (Second Day) (estimated)", + "1975-12-15": "Eid al-Adha (observed, estimated)", + "1975-12-25": "Christmas Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-02": "Labor Day (observed)", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-12": "Nuzul Al-Quran Day (observed, estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-09-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (Second Day) (estimated)", + "1976-12-25": "Christmas Day", + "1976-12-26": "Christmas Day (observed)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-02-20": "Chinese New Year (Second Day) (observed, estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (Second Day) (estimated)", + "1977-12-25": "Christmas Day", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (Second Day) (estimated)", + "1978-11-12": "Eid al-Adha (Second Day) (observed, estimated)", + "1978-12-25": "Christmas Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (Second Day) (estimated)", + "1979-11-18": "Deepavali", + "1979-12-25": "Christmas Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (observed, estimated)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (Second Day) (estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-07-19": "Nuzul Al-Quran Day (observed, estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (Second Day) (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-02": "Labor Day (observed)", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-09": "Vesak Day (observed, estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (Second Day) (estimated)", + "1982-11-13": "Deepavali", + "1982-11-14": "Deepavali (observed)", + "1982-12-25": "Christmas Day", + "1982-12-26": "Christmas Day (observed)", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-05-01": "Labor Day", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (Second Day) (estimated)", + "1983-09-19": "Eid al-Adha (observed, estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-17": "Nuzul Al-Quran Day (observed, estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (Second Day) (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-05": "Vesak Day (observed, estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (Second Day) (estimated)", + "1985-08-31": "National Day", + "1985-09-01": "National Day (observed)", + "1985-11-10": "Deepavali", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-12-25": "Christmas Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (Second Day) (estimated)", + "1986-08-17": "Eid al-Adha (Second Day) (observed, estimated)", + "1986-08-31": "National Day", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (Second Day) (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-05-01": "Labor Day", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (Second Day) (estimated)", + "1988-07-25": "Eid al-Adha (observed, estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-10-23": "Prophet Muhammad's Birthday (observed, estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (Second Day) (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (observed, estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (Second Day) (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-02-17": "Chinese New Year (Second Day) (observed, estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (Second Day) (estimated)", + "1991-06-24": "Eid al-Adha (observed, estimated)", + "1991-08-31": "National Day", + "1991-09-01": "National Day (observed)", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-03-22": "Nuzul Al-Quran Day (observed, estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (Second Day) (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-10-25": "Deepavali (observed)", + "1992-12-25": "Christmas Day", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (observed, estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-02": "Labor Day (observed)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (Second Day) (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1993-12-26": "Christmas Day (observed)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-05-01": "Labor Day", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (Second Day) (estimated)", + "1994-05-22": "Eid al-Adha (Second Day) (observed, estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (Second Day) (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (Second Day) (estimated)", + "1996-04-29": "Eid al-Adha (observed, estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-07-28": "Prophet Muhammad's Birthday (observed, estimated)", + "1996-08-31": "National Day", + "1996-09-01": "National Day (observed)", + "1996-11-09": "Deepavali", + "1996-11-10": "Deepavali (observed)", + "1996-12-25": "Christmas Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (Second Day) (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (Second Day) (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (Second Day) (estimated)", + "1999-03-29": "Eid al-Adha (observed, estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-02": "Labor Day (observed)", + "1999-05-29": "Vesak Day (estimated)", + "1999-05-30": "Vesak Day (observed, estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-06-27": "Prophet Muhammad's Birthday (observed, estimated)", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-07": "Deepavali (observed)", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "1999-12-26": "Christmas Day (observed); Nuzul Al-Quran Day (observed, estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (Second Day) (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-07": "Eid al-Adha (Second Day)", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-24": "Eid al-Adha (Second Day)", + "2002-02-25": "Eid al-Adha (observed)", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2002-08-31": "National Day", + "2002-09-01": "National Day (observed)", + "2002-11-03": "Deepavali", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-08": "Eid al-Fitr (Second Day) (observed)", + "2002-12-25": "Christmas Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-13": "Eid al-Adha (Second Day)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2003-08-31": "National Day", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Eid al-Adha (Second Day)", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Labor Day (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-12-25": "Christmas Day", + "2004-12-26": "Christmas Day (observed)", + "2005-01-21": "Eid al-Adha", + "2005-01-22": "Eid al-Adha (Second Day)", + "2005-01-23": "Eid al-Adha (Second Day) (observed)", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-22": "Vesak Day", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2006-01-10": "Eid al-Adha", + "2006-01-11": "Eid al-Adha (Second Day)", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-22": "Deepavali (observed)", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "Eid al-Adha (Second Day)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-04-01": "Prophet Muhammad's Birthday (observed)", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-09-30": "Nuzul Al-Quran Day (observed)", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-21": "Eid al-Adha (Second Day)", + "2007-12-25": "Christmas Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2008-08-31": "National Day", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-10": "Eid al-Adha (Second Day)", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-05-10": "Vesak Day (observed)", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-10-17": "Deepavali", + "2009-10-18": "Deepavali (observed)", + "2009-11-28": "Eid al-Adha", + "2009-11-29": "Eid al-Adha (Second Day)", + "2009-11-30": "Eid al-Adha (observed)", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-30": "Birthday of the Sultan of Kelantan", + "2010-03-31": "Birthday of the Sultan of Kelantan", + "2010-05-01": "Labor Day", + "2010-05-02": "Labor Day (observed)", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-12": "Eid al-Fitr (Second Day) (observed)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-11-18": "Eid al-Adha (Second Day)", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2010-12-26": "Christmas Day (observed)", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-03-30": "Birthday of the Sultan of Kelantan", + "2011-03-31": "Birthday of the Sultan of Kelantan", + "2011-05-01": "Labor Day", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-08": "Eid al-Adha (Second Day)", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-05-06": "Vesak Day (observed)", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-10-26": "Eid al-Adha", + "2012-10-27": "Eid al-Adha (Second Day)", + "2012-10-28": "Eid al-Adha (Second Day) (observed)", + "2012-11-11": "Birthday of the Sultan of Kelantan", + "2012-11-12": "Birthday of the Sultan of Kelantan", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-01": "National Day (observed)", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-10-16": "Eid al-Adha (Second Day)", + "2013-11-02": "Deepavali", + "2013-11-03": "Deepavali (observed)", + "2013-11-05": "Islamic New Year", + "2013-11-11": "Birthday of the Sultan of Kelantan", + "2013-11-12": "Birthday of the Sultan of Kelantan", + "2013-12-25": "Christmas Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-02": "Chinese New Year (Second Day) (observed)", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (Second Day)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-11-11": "Birthday of the Sultan of Kelantan", + "2014-11-12": "Birthday of the Sultan of Kelantan", + "2014-12-25": "Christmas Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-01-04": "Prophet Muhammad's Birthday (observed)", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-05": "Nuzul Al-Quran Day (observed)", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-07-19": "Eid al-Fitr (Second Day) (observed)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-09-25": "Eid al-Adha (Second Day)", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-11-11": "Birthday of the Sultan of Kelantan", + "2015-11-12": "Birthday of the Sultan of Kelantan", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-05-01": "Labor Day", + "2016-05-21": "Vesak Day", + "2016-05-22": "Vesak Day (observed)", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-13": "Eid al-Adha (Second Day)", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-10-30": "Deepavali (observed)", + "2016-11-11": "Birthday of the Sultan of Kelantan", + "2016-11-12": "Birthday of the Sultan of Kelantan", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-02": "Eid al-Adha (Second Day)", + "2017-09-03": "Eid al-Adha (Second Day) (observed)", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2017-09-16": "Malaysia Day", + "2017-09-17": "Malaysia Day (observed)", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-11-11": "Birthday of the Sultan of Kelantan", + "2017-11-12": "Birthday of the Sultan of Kelantan", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-02-18": "Chinese New Year (Second Day) (observed)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-03": "Nuzul Al-Quran Day (observed)", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-06-17": "Eid al-Fitr (Second Day) (observed)", + "2018-08-22": "Eid al-Adha", + "2018-08-23": "Eid al-Adha (Second Day)", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-11-06": "Deepavali", + "2018-11-11": "Birthday of the Sultan of Kelantan", + "2018-11-12": "Birthday of the Sultan of Kelantan", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (Second Day)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-02": "National Day (observed)", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-11-10": "Prophet Muhammad's Birthday (observed)", + "2019-11-11": "Birthday of the Sultan of Kelantan", + "2019-11-12": "Birthday of the Sultan of Kelantan", + "2019-12-25": "Christmas Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (observed)", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-01": "Eid al-Adha (Second Day)", + "2020-08-02": "Eid al-Adha (Second Day) (observed)", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-11": "Birthday of the Sultan of Kelantan", + "2020-11-12": "Birthday of the Sultan of Kelantan", + "2020-11-14": "Deepavali", + "2020-11-15": "Deepavali (observed)", + "2020-12-25": "Christmas Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-02-14": "Chinese New Year (Second Day) (observed)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-02": "Labor Day (observed)", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-07-21": "Eid al-Adha (Second Day)", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-11-11": "Birthday of the Sultan of Kelantan", + "2021-11-12": "Birthday of the Sultan of Kelantan", + "2021-12-25": "Christmas Day", + "2021-12-26": "Christmas Day (observed)", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (Second Day)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-11": "Birthday of the Sultan of Kelantan", + "2022-11-12": "Birthday of the Sultan of Kelantan", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-09": "Nuzul Al-Quran Day (observed)", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-28": "Arafat Day", + "2023-06-29": "Eid al-Adha", + "2023-06-30": "Eid al-Adha (Second Day)", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-17": "Malaysia Day (observed)", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-09-29": "Birthday of the Sultan of Kelantan", + "2023-09-30": "Birthday of the Sultan of Kelantan", + "2023-11-12": "Deepavali", + "2023-12-25": "Christmas Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-16": "Arafat Day", + "2024-06-17": "Eid al-Adha", + "2024-06-18": "Eid al-Adha (Second Day)", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-01": "National Day (observed)", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-09-29": "Birthday of the Sultan of Kelantan", + "2024-09-30": "Birthday of the Sultan of Kelantan", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-05": "Arafat Day (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (Second Day) (estimated)", + "2025-06-08": "Eid al-Adha (Second Day) (observed, estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-09-29": "Birthday of the Sultan of Kelantan", + "2025-09-30": "Birthday of the Sultan of Kelantan", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-03-22": "Eid al-Fitr (Second Day) (observed, estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-26": "Arafat Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (Second Day) (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-09-29": "Birthday of the Sultan of Kelantan", + "2026-09-30": "Birthday of the Sultan of Kelantan", + "2026-11-07": "Deepavali", + "2026-11-08": "Deepavali (observed)", + "2026-12-25": "Christmas Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-02": "Labor Day (observed)", + "2027-05-15": "Arafat Day (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (Second Day) (estimated)", + "2027-05-18": "Arafat Day (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-15": "Prophet Muhammad's Birthday (observed, estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-09-29": "Birthday of the Sultan of Kelantan", + "2027-09-30": "Birthday of the Sultan of Kelantan", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2027-12-26": "Christmas Day (observed)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-04": "Arafat Day (estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (Second Day) (estimated)", + "2028-05-07": "Eid al-Adha (Second Day) (observed, estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-09-17": "Malaysia Day (observed)", + "2028-09-29": "Birthday of the Sultan of Kelantan", + "2028-09-30": "Birthday of the Sultan of Kelantan", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-04-23": "Arafat Day (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (Second Day) (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-29": "Birthday of the Sultan of Kelantan", + "2029-09-30": "Birthday of the Sultan of Kelantan", + "2029-11-04": "Deepavali", + "2029-12-25": "Christmas Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-04-12": "Arafat Day (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (Second Day) (estimated)", + "2030-04-15": "Eid al-Adha (observed, estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-07-14": "Prophet Muhammad's Birthday (observed, estimated)", + "2030-08-31": "National Day", + "2030-09-01": "National Day (observed)", + "2030-09-16": "Malaysia Day", + "2030-09-29": "Birthday of the Sultan of Kelantan", + "2030-09-30": "Birthday of the Sultan of Kelantan", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-12": "Nuzul Al-Quran Day (observed, estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-01-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "2031-04-01": "Arafat Day (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (Second Day) (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-16": "Malaysia Day", + "2031-09-29": "Birthday of the Sultan of Kelantan", + "2031-09-30": "Birthday of the Sultan of Kelantan", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-21": "Arafat Day (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (Second Day) (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-02": "Labor Day (observed)", + "2032-05-23": "Vesak Day (estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-09-29": "Birthday of the Sultan of Kelantan", + "2032-09-30": "Birthday of the Sultan of Kelantan", + "2032-11-01": "Deepavali", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2032-12-26": "Christmas Day (observed)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-03-10": "Arafat Day (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (Second Day) (estimated)", + "2033-03-13": "Eid al-Adha (Second Day) (observed, estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-09-29": "Birthday of the Sultan of Kelantan", + "2033-09-30": "Birthday of the Sultan of Kelantan", + "2033-10-21": "Deepavali", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-28": "Arafat Day (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (Second Day) (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-09-17": "Malaysia Day (observed)", + "2034-09-29": "Birthday of the Sultan of Kelantan", + "2034-09-30": "Birthday of the Sultan of Kelantan", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-17": "Arafat Day (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (Second Day) (estimated)", + "2035-02-20": "Arafat Day (observed, estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-29": "Birthday of the Sultan of Kelantan", + "2035-09-30": "Birthday of the Sultan of Kelantan", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-11-18": "Nuzul Al-Quran Day (observed, estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-06": "Arafat Day (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (Second Day) (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-11": "Vesak Day (observed, estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-16": "Malaysia Day", + "2036-09-29": "Birthday of the Sultan of Kelantan", + "2036-09-30": "Birthday of the Sultan of Kelantan", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-25": "Arafat Day (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (Second Day) (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-09-29": "Birthday of the Sultan of Kelantan", + "2037-09-30": "Birthday of the Sultan of Kelantan", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-12-25": "Christmas Day", + "2038-01-15": "Arafat Day (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (Second Day) (estimated)", + "2038-01-18": "Eid al-Adha (observed, estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-04-18": "Prophet Muhammad's Birthday (observed, estimated)", + "2038-05-01": "Labor Day", + "2038-05-02": "Labor Day (observed)", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-09-29": "Birthday of the Sultan of Kelantan", + "2038-09-30": "Birthday of the Sultan of Kelantan", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-17": "Nuzul Al-Quran Day (observed, estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-10-31": "Eid al-Fitr (Second Day) (observed, estimated)", + "2038-12-25": "Christmas Day", + "2038-12-26": "Christmas Day (observed)", + "2039-01-04": "Arafat Day (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (Second Day) (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-08": "Vesak Day (observed, estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-09-29": "Birthday of the Sultan of Kelantan", + "2039-09-30": "Birthday of the Sultan of Kelantan", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Arafat Day (estimated); Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (Second Day) (estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-29": "Birthday of the Sultan of Kelantan", + "2040-09-30": "Birthday of the Sultan of Kelantan", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-11-03": "Deepavali", + "2040-11-04": "Deepavali (observed)", + "2040-12-13": "Arafat Day (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (Second Day) (estimated)", + "2040-12-16": "Eid al-Adha (Second Day) (observed, estimated)", + "2040-12-25": "Christmas Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-03": "Chinese New Year (Second Day) (observed, estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-31": "National Day", + "2041-09-01": "National Day (observed)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-09-29": "Birthday of the Sultan of Kelantan", + "2041-09-30": "Birthday of the Sultan of Kelantan", + "2041-10-23": "Deepavali", + "2041-12-03": "Arafat Day (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (Second Day) (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-31": "National Day", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-09-29": "Birthday of the Sultan of Kelantan", + "2042-09-30": "Birthday of the Sultan of Kelantan", + "2042-11-11": "Deepavali", + "2042-11-22": "Arafat Day (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (Second Day) (estimated)", + "2042-11-25": "Arafat Day (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-05-24": "Vesak Day (observed, estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-23": "Nuzul Al-Quran Day (observed, estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "2043-09-16": "Malaysia Day", + "2043-09-29": "Birthday of the Sultan of Kelantan", + "2043-09-30": "Birthday of the Sultan of Kelantan", + "2043-10-31": "Deepavali", + "2043-11-01": "Deepavali (observed)", + "2043-11-11": "Arafat Day (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (Second Day) (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-05-01": "Labor Day", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-09-29": "Birthday of the Sultan of Kelantan", + "2044-09-30": "Birthday of the Sultan of Kelantan", + "2044-10-30": "Arafat Day (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (Second Day) (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-02-19": "Chinese New Year (Second Day) (observed, estimated)", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-09-17": "Malaysia Day (observed)", + "2045-09-29": "Birthday of the Sultan of Kelantan", + "2045-09-30": "Birthday of the Sultan of Kelantan", + "2045-10-20": "Arafat Day (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (Second Day) (estimated)", + "2045-10-23": "Eid al-Adha (observed, estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-07-22": "Nuzul Al-Quran Day (observed, estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-05": "Eid al-Fitr (Second Day) (observed, estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-29": "Birthday of the Sultan of Kelantan", + "2046-09-30": "Birthday of the Sultan of Kelantan", + "2046-10-09": "Arafat Day (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (Second Day) (estimated)", + "2046-10-27": "Deepavali", + "2046-10-28": "Deepavali (observed)", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (observed, estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-01": "National Day (observed)", + "2047-09-16": "Malaysia Day", + "2047-09-29": "Arafat Day (estimated); Birthday of the Sultan of Kelantan", + "2047-09-30": "Birthday of the Sultan of Kelantan; Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (Second Day) (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-18": "Arafat Day (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (Second Day) (estimated)", + "2048-09-21": "Eid al-Adha (observed, estimated)", + "2048-09-29": "Birthday of the Sultan of Kelantan", + "2048-09-30": "Birthday of the Sultan of Kelantan", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-05-01": "Labor Day", + "2049-05-02": "Labor Day (observed)", + "2049-05-16": "Vesak Day (estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-07": "Arafat Day (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (Second Day) (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-09-29": "Birthday of the Sultan of Kelantan", + "2049-09-30": "Birthday of the Sultan of Kelantan", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2049-12-26": "Christmas Day (observed)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-05-01": "Labor Day", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-27": "Arafat Day (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (Second Day) (estimated)", + "2050-08-30": "Arafat Day (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-09-29": "Birthday of the Sultan of Kelantan", + "2050-09-30": "Birthday of the Sultan of Kelantan", + "2050-11-12": "Deepavali", + "2050-11-13": "Deepavali (observed)", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-11-27": "Prophet Muhammad's Birthday (observed, estimated)", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/MY_04.json b/snapshots/countries/MY_04.json new file mode 100644 index 000000000..b5d396de9 --- /dev/null +++ b/snapshots/countries/MY_04.json @@ -0,0 +1,1821 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-25": "Beginning of Ramadan (estimated)", + "1952-05-26": "Beginning of Ramadan (observed, estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-10-10": "Birthday of the Governor of Malacca", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-05-14": "Beginning of Ramadan (estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-10-09": "Birthday of the Governor of Malacca", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-05-04": "Beginning of Ramadan (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-08": "Birthday of the Governor of Malacca", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-04-24": "Beginning of Ramadan (estimated)", + "1955-04-25": "Beginning of Ramadan (observed, estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-14": "Birthday of the Governor of Malacca", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-04-12": "Beginning of Ramadan (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-12": "Birthday of the Governor of Malacca", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-04-01": "Beginning of Ramadan (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-10-11": "Birthday of the Governor of Malacca", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-21": "Beginning of Ramadan (estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-10-10": "Birthday of the Governor of Malacca", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-03-11": "Beginning of Ramadan (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-09": "Birthday of the Governor of Malacca", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-02-28": "Beginning of Ramadan (estimated)", + "1960-02-29": "Beginning of Ramadan (observed, estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-10-14": "Birthday of the Governor of Malacca", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-10-13": "Birthday of the Governor of Malacca", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-12": "Birthday of the Governor of Malacca", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-10-11": "Birthday of the Governor of Malacca", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-15": "Beginning of Ramadan (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-10-09": "Birthday of the Governor of Malacca", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-03": "Beginning of Ramadan (estimated)", + "1965-01-04": "Beginning of Ramadan (observed, estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-08": "Birthday of the Governor of Malacca", + "1965-10-22": "Deepavali", + "1965-12-23": "Beginning of Ramadan (estimated)", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-10-14": "Birthday of the Governor of Malacca", + "1966-11-10": "Deepavali", + "1966-12-13": "Beginning of Ramadan (estimated)", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-13": "Birthday of the Governor of Malacca", + "1967-10-31": "Deepavali", + "1967-12-02": "Beginning of Ramadan (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-10-11": "Birthday of the Governor of Malacca", + "1968-11-18": "Deepavali", + "1968-11-21": "Beginning of Ramadan (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-10-10": "Birthday of the Governor of Malacca", + "1969-11-08": "Deepavali", + "1969-11-10": "Beginning of Ramadan (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-09": "Birthday of the Governor of Malacca", + "1970-10-28": "Deepavali", + "1970-11-01": "Beginning of Ramadan (estimated)", + "1970-11-02": "Beginning of Ramadan (observed, estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-10-08": "Birthday of the Governor of Malacca", + "1971-10-20": "Beginning of Ramadan (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-08": "Beginning of Ramadan (estimated)", + "1972-10-09": "Beginning of Ramadan (observed, estimated)", + "1972-10-13": "Birthday of the Governor of Malacca", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-09-27": "Beginning of Ramadan (estimated)", + "1973-10-12": "Birthday of the Governor of Malacca", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-09-17": "Beginning of Ramadan (estimated)", + "1974-10-11": "Birthday of the Governor of Malacca", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-06": "Beginning of Ramadan (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-10-10": "Birthday of the Governor of Malacca", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-26": "Beginning of Ramadan (estimated)", + "1976-08-31": "National Day", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-10-08": "Birthday of the Governor of Malacca", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-15": "Beginning of Ramadan (estimated)", + "1977-08-31": "National Day", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-10-14": "Birthday of the Governor of Malacca", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-05": "Beginning of Ramadan (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-13": "Birthday of the Governor of Malacca", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-07-25": "Beginning of Ramadan (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-12": "Birthday of the Governor of Malacca", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-13": "Beginning of Ramadan (estimated)", + "1980-07-14": "Beginning of Ramadan (observed, estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-10": "Birthday of the Governor of Malacca", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-02": "Beginning of Ramadan (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Birthday of the Governor of Malacca", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-06-22": "Beginning of Ramadan (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-10-08": "Birthday of the Governor of Malacca", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-12": "Beginning of Ramadan (estimated)", + "1983-06-13": "Beginning of Ramadan (observed, estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-10-14": "Birthday of the Governor of Malacca", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-31": "Beginning of Ramadan (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-12": "Birthday of the Governor of Malacca", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-20": "Beginning of Ramadan (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-10-11": "Birthday of the Governor of Malacca", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-05-01": "Labor Day", + "1986-05-09": "Beginning of Ramadan (estimated)", + "1986-05-23": "Vesak Day (estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-10": "Birthday of the Governor of Malacca", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-04-29": "Beginning of Ramadan (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-10-09": "Birthday of the Governor of Malacca", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-04-17": "Beginning of Ramadan (estimated)", + "1988-04-18": "Beginning of Ramadan (observed, estimated)", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-14": "Birthday of the Governor of Malacca", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-04-07": "Beginning of Ramadan (estimated)", + "1989-04-15": "Declaration of Malacca as a Historical City", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-13": "Birthday of the Governor of Malacca", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-03-27": "Beginning of Ramadan (estimated)", + "1990-04-15": "Declaration of Malacca as a Historical City", + "1990-04-16": "Declaration of Malacca as a Historical City (observed)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-10-12": "Birthday of the Governor of Malacca", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-17": "Beginning of Ramadan (estimated)", + "1991-03-18": "Beginning of Ramadan (observed, estimated)", + "1991-04-15": "Declaration of Malacca as a Historical City; Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-10-11": "Birthday of the Governor of Malacca", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-03-05": "Beginning of Ramadan (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-04-15": "Declaration of Malacca as a Historical City", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-09": "Birthday of the Governor of Malacca", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-02-22": "Beginning of Ramadan (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-04-15": "Declaration of Malacca as a Historical City", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-10-08": "Birthday of the Governor of Malacca", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-04-15": "Declaration of Malacca as a Historical City", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-10-14": "Birthday of the Governor of Malacca", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-04-15": "Declaration of Malacca as a Historical City", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-10-13": "Birthday of the Governor of Malacca", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-01-21": "Beginning of Ramadan (estimated)", + "1996-01-22": "Beginning of Ramadan (observed, estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-15": "Declaration of Malacca as a Historical City", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-10-11": "Birthday of the Governor of Malacca", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-10": "Beginning of Ramadan (estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-04-15": "Declaration of Malacca as a Historical City", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-10": "Birthday of the Governor of Malacca", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1997-12-30": "Beginning of Ramadan (estimated)", + "1998-01-01": "New Year's Day", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-15": "Declaration of Malacca as a Historical City", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-10-09": "Birthday of the Governor of Malacca", + "1998-11-17": "Deepavali", + "1998-12-19": "Beginning of Ramadan (estimated)", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-15": "Declaration of Malacca as a Historical City", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-10-08": "Birthday of the Governor of Malacca", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-09": "Beginning of Ramadan (estimated)", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-04-15": "Declaration of Malacca as a Historical City", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-13": "Birthday of the Governor of Malacca", + "2000-10-25": "Deepavali", + "2000-11-27": "Beginning of Ramadan (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-04-15": "Declaration of Malacca as a Historical City", + "2001-04-16": "Declaration of Malacca as a Historical City (observed)", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-10-12": "Birthday of the Governor of Malacca", + "2001-11-14": "Deepavali", + "2001-11-17": "Beginning of Ramadan", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-03-15": "Islamic New Year", + "2002-04-15": "Declaration of Malacca as a Historical City", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-10-11": "Birthday of the Governor of Malacca", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-06": "Beginning of Ramadan", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-03-05": "Islamic New Year", + "2003-04-15": "Declaration of Malacca as a Historical City", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-10": "Birthday of the Governor of Malacca", + "2003-10-23": "Deepavali", + "2003-10-27": "Beginning of Ramadan", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-04-15": "Declaration of Malacca as a Historical City", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-10-08": "Birthday of the Governor of Malacca", + "2004-10-16": "Beginning of Ramadan", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-04-15": "Declaration of Malacca as a Historical City", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-05": "Beginning of Ramadan", + "2005-10-14": "Birthday of the Governor of Malacca", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-04-15": "Declaration of Malacca as a Historical City", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-09-24": "Beginning of Ramadan", + "2006-09-25": "Beginning of Ramadan (observed)", + "2006-10-13": "Birthday of the Governor of Malacca", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-04-15": "Declaration of Malacca as a Historical City", + "2007-04-16": "Declaration of Malacca as a Historical City (observed)", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-13": "Beginning of Ramadan", + "2007-10-12": "Birthday of the Governor of Malacca", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-04-15": "Declaration of Malacca as a Historical City", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-02": "Beginning of Ramadan", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-10": "Birthday of the Governor of Malacca", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-04-15": "Declaration of Malacca as a Historical City", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-22": "Beginning of Ramadan", + "2009-08-31": "National Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-09": "Birthday of the Governor of Malacca", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-04-15": "Declaration of Malacca as a Historical City", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-11": "Beginning of Ramadan", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-10-08": "Birthday of the Governor of Malacca", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-04-15": "Declaration of Malacca as a Historical City", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-01": "Beginning of Ramadan", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-14": "Birthday of the Governor of Malacca", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-04-15": "Declaration of Malacca as a Historical City", + "2012-04-16": "Declaration of Malacca as a Historical City (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-07-20": "Beginning of Ramadan", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-12": "Birthday of the Governor of Malacca", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-04-15": "Declaration of Malacca as a Historical City", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-09": "Beginning of Ramadan", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-11": "Birthday of the Governor of Malacca", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-04-15": "Declaration of Malacca as a Historical City", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-06-29": "Beginning of Ramadan", + "2014-06-30": "Beginning of Ramadan (observed)", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-10": "Birthday of the Governor of Malacca", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-04-15": "Declaration of Malacca as a Historical City", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-06-18": "Beginning of Ramadan", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-09": "Birthday of the Governor of Malacca", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-04-15": "Declaration of Malacca as a Historical City", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-07": "Beginning of Ramadan", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-14": "Birthday of the Governor of Malacca", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-15": "Declaration of Malacca as a Historical City", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-05-27": "Beginning of Ramadan", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-13": "Birthday of the Governor of Malacca", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-04-15": "Declaration of Malacca as a Historical City", + "2018-04-16": "Declaration of Malacca as a Historical City (observed)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-17": "Beginning of Ramadan", + "2018-05-29": "Vesak Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-10-12": "Birthday of the Governor of Malacca", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-04-15": "Declaration of Malacca as a Historical City", + "2019-05-01": "Labor Day", + "2019-05-06": "Beginning of Ramadan", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-11": "Birthday of the Governor of Malacca", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-04-15": "Declaration of Malacca as a Historical City", + "2020-04-24": "Beginning of Ramadan", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-24": "Birthday of the Governor of Malacca", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-13": "Beginning of Ramadan", + "2021-04-15": "Declaration of Malacca as a Historical City", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-24": "Birthday of the Governor of Malacca", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-03": "Beginning of Ramadan", + "2022-04-04": "Beginning of Ramadan (observed)", + "2022-04-15": "Declaration of Malacca as a Historical City", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-24": "Birthday of the Governor of Malacca", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-03-23": "Beginning of Ramadan", + "2023-04-15": "Declaration of Malacca as a Historical City", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-24": "Birthday of the Governor of Malacca", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-02-20": "Declaration of Independence Day", + "2024-03-12": "Beginning of Ramadan", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-24": "Birthday of the Governor of Malacca", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-20": "Declaration of Independence Day", + "2025-03-01": "Beginning of Ramadan (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-24": "Birthday of the Governor of Malacca", + "2025-08-25": "Birthday of the Governor of Malacca (observed)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year (Second Day) (estimated)", + "2026-02-20": "Declaration of Independence Day", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-24": "Birthday of the Governor of Malacca", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Beginning of Ramadan (estimated)", + "2027-02-09": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-20": "Declaration of Independence Day", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-24": "Birthday of the Governor of Malacca", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-01-28": "Beginning of Ramadan (estimated)", + "2028-02-20": "Declaration of Independence Day", + "2028-02-21": "Declaration of Independence Day (observed)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-24": "Birthday of the Governor of Malacca", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-16": "Beginning of Ramadan (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-20": "Declaration of Independence Day", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-24": "Birthday of the Governor of Malacca", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-05": "Beginning of Ramadan (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-02-20": "Declaration of Independence Day", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-24": "Birthday of the Governor of Malacca", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2030-12-26": "Beginning of Ramadan (estimated)", + "2031-01-01": "New Year's Day", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-02-20": "Declaration of Independence Day", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-24": "Birthday of the Governor of Malacca", + "2031-08-25": "Birthday of the Governor of Malacca (observed)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-15": "Beginning of Ramadan (estimated)", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-20": "Declaration of Independence Day", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-24": "Birthday of the Governor of Malacca", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-04": "Beginning of Ramadan (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-02-20": "Declaration of Independence Day", + "2033-02-21": "Declaration of Independence Day (observed)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-24": "Birthday of the Governor of Malacca", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-11-23": "Beginning of Ramadan (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated); Declaration of Independence Day", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-24": "Birthday of the Governor of Malacca", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-12": "Beginning of Ramadan (estimated)", + "2034-11-13": "Beginning of Ramadan (observed, estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-02-20": "Declaration of Independence Day", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-24": "Birthday of the Governor of Malacca", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-01": "Beginning of Ramadan (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-20": "Declaration of Independence Day", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-24": "Birthday of the Governor of Malacca", + "2036-08-25": "Birthday of the Governor of Malacca (observed)", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-10-20": "Beginning of Ramadan (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-02-20": "Declaration of Independence Day", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-24": "Birthday of the Governor of Malacca", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-10": "Beginning of Ramadan (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-20": "Declaration of Independence Day", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-24": "Birthday of the Governor of Malacca", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-09-30": "Beginning of Ramadan (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-02-20": "Declaration of Independence Day", + "2039-02-21": "Declaration of Independence Day (observed)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-24": "Birthday of the Governor of Malacca", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-09-19": "Beginning of Ramadan (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-02-20": "Declaration of Independence Day", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-24": "Birthday of the Governor of Malacca", + "2040-08-31": "National Day", + "2040-09-07": "Beginning of Ramadan (estimated)", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-20": "Declaration of Independence Day", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-24": "Birthday of the Governor of Malacca", + "2041-08-28": "Beginning of Ramadan (estimated)", + "2041-08-31": "National Day", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-02-20": "Declaration of Independence Day", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-17": "Beginning of Ramadan (estimated)", + "2042-08-18": "Beginning of Ramadan (observed, estimated)", + "2042-08-24": "Birthday of the Governor of Malacca", + "2042-08-25": "Birthday of the Governor of Malacca (observed)", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-20": "Declaration of Independence Day", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-06": "Beginning of Ramadan (estimated)", + "2043-08-24": "Birthday of the Governor of Malacca", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-20": "Declaration of Independence Day", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-07-26": "Beginning of Ramadan (estimated)", + "2044-08-24": "Birthday of the Governor of Malacca; Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-02-20": "Declaration of Independence Day", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-15": "Beginning of Ramadan (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-24": "Birthday of the Governor of Malacca", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-20": "Declaration of Independence Day", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-05": "Beginning of Ramadan (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-24": "Birthday of the Governor of Malacca", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-02-20": "Declaration of Independence Day", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-06-24": "Beginning of Ramadan (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-24": "Birthday of the Governor of Malacca", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-20": "Declaration of Independence Day", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-12": "Beginning of Ramadan (estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-24": "Birthday of the Governor of Malacca", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-20": "Declaration of Independence Day", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-02": "Beginning of Ramadan (estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-24": "Birthday of the Governor of Malacca", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-02-20": "Declaration of Independence Day", + "2050-02-21": "Declaration of Independence Day (observed)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-22": "Beginning of Ramadan (estimated)", + "2050-05-23": "Beginning of Ramadan (observed, estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-24": "Birthday of the Governor of Malacca", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_05.json b/snapshots/countries/MY_05.json new file mode 100644 index 000000000..feb11f7d6 --- /dev/null +++ b/snapshots/countries/MY_05.json @@ -0,0 +1,1811 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-04-22": "Isra' and Mi'raj (estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-02-28": "Thaipusam", + "1953-04-12": "Isra' and Mi'raj (estimated)", + "1953-04-13": "Isra' and Mi'raj (observed, estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-02-18": "Thaipusam", + "1954-04-01": "Isra' and Mi'raj (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-09": "Thaipusam", + "1955-01-10": "Thaipusam (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-03-21": "Isra' and Mi'raj (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-02-26": "Thaipusam", + "1956-02-27": "Thaipusam (observed)", + "1956-03-10": "Isra' and Mi'raj (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-15": "Thaipusam", + "1957-02-27": "Isra' and Mi'raj (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-16": "Isra' and Mi'raj (estimated)", + "1958-02-17": "Isra' and Mi'raj (observed, estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-05": "Thaipusam", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-06": "Isra' and Mi'raj (estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-02-22": "Thaipusam", + "1959-02-23": "Thaipusam (observed)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-13": "Thaipusam", + "1960-01-26": "Isra' and Mi'raj (estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-01-14": "Isra' and Mi'raj (estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-02": "Thaipusam", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-01-04": "Isra' and Mi'raj (estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-19": "Thaipusam", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-24": "Isra' and Mi'raj (estimated)", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-13": "Isra' and Mi'raj (estimated)", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-28": "Thaipusam", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-01": "Isra' and Mi'raj (estimated)", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-02-16": "Thaipusam", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-11-20": "Isra' and Mi'raj (estimated)", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Thaipusam", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali; Isra' and Mi'raj (estimated)", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-24": "Thaipusam", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-30": "Isra' and Mi'raj (estimated)", + "1967-10-31": "Deepavali", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-02-13": "Thaipusam", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-10-19": "Isra' and Mi'raj (estimated)", + "1968-11-18": "Deepavali", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-03": "Thaipusam", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-10-08": "Isra' and Mi'raj (estimated)", + "1969-11-08": "Deepavali", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-21": "Thaipusam", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-09-28": "Isra' and Mi'raj (estimated)", + "1970-10-28": "Deepavali", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-09-17": "Isra' and Mi'raj (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-02-29": "Thaipusam", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-09-05": "Isra' and Mi'raj (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-02-18": "Thaipusam", + "1973-02-19": "Thaipusam (observed)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-25": "Isra' and Mi'raj (estimated)", + "1973-08-31": "National Day", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-15": "Isra' and Mi'raj (estimated)", + "1974-08-31": "National Day", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-02-26": "Thaipusam", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-05": "Isra' and Mi'raj (estimated)", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-02-15": "Thaipusam", + "1976-02-16": "Thaipusam (observed)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-07-24": "Isra' and Mi'raj (estimated)", + "1976-08-31": "National Day", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-03-05": "Thaipusam", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-07-13": "Isra' and Mi'raj (estimated)", + "1977-08-31": "National Day", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-02-22": "Thaipusam", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-07-02": "Isra' and Mi'raj (estimated)", + "1978-07-03": "Isra' and Mi'raj (observed, estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-06-22": "Isra' and Mi'raj (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-03-02": "Thaipusam", + "1980-03-03": "Thaipusam (observed)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-06-10": "Isra' and Mi'raj (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-19": "Thaipusam", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-31": "Isra' and Mi'raj (estimated)", + "1981-06-01": "Isra' and Mi'raj (observed, estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-10": "Thaipusam", + "1982-01-11": "Thaipusam (observed)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-20": "Isra' and Mi'raj (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-02-28": "Thaipusam", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-10": "Isra' and Mi'raj (estimated)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-17": "Thaipusam", + "1984-04-28": "Isra' and Mi'raj (estimated)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-03-06": "Thaipusam", + "1985-04-17": "Isra' and Mi'raj (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-02-23": "Thaipusam", + "1986-02-24": "Thaipusam (observed)", + "1986-04-06": "Isra' and Mi'raj (estimated)", + "1986-04-07": "Isra' and Mi'raj (observed, estimated)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-03-27": "Isra' and Mi'raj (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-03": "Thaipusam", + "1988-03-15": "Isra' and Mi'raj (estimated)", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-02-21": "Thaipusam", + "1989-03-05": "Isra' and Mi'raj (estimated)", + "1989-03-06": "Isra' and Mi'raj (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-12": "Thaipusam", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-02-22": "Isra' and Mi'raj (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-11": "Isra' and Mi'raj (estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-01": "Thaipusam", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-01-31": "Isra' and Mi'raj (estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-02-18": "Thaipusam", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-08": "Thaipusam", + "1993-01-20": "Isra' and Mi'raj (estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-01-09": "Isra' and Mi'raj (estimated)", + "1994-01-10": "Isra' and Mi'raj (observed, estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-25": "Thaipusam", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1994-12-29": "Isra' and Mi'raj (estimated)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-14": "Thaipusam", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-19": "Isra' and Mi'raj (estimated)", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-03-04": "Thaipusam", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-08": "Isra' and Mi'raj (estimated)", + "1996-12-09": "Isra' and Mi'raj (observed, estimated)", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-02-22": "Thaipusam", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-29": "Deepavali", + "1997-11-27": "Isra' and Mi'raj (estimated)", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-13": "Thaipusam", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-16": "Isra' and Mi'raj (estimated)", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-03": "Thaipusam", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-05": "Isra' and Mi'raj (estimated)", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-02-20": "Thaipusam", + "2000-02-21": "Thaipusam (observed)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-24": "Isra' and Mi'raj (estimated)", + "2000-10-25": "Deepavali", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-10-15": "Isra' and Mi'raj", + "2001-11-14": "Deepavali", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-27": "Thaipusam", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-10-04": "Isra' and Mi'raj", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-16": "Thaipusam", + "2003-02-17": "Thaipusam (observed)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-09-24": "Isra' and Mi'raj", + "2003-10-23": "Deepavali", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-09-12": "Isra' and Mi'raj", + "2004-09-13": "Isra' and Mi'raj (observed)", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-02-23": "Thaipusam", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-09-01": "Isra' and Mi'raj", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-02-13": "Thaipusam", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-22": "Isra' and Mi'raj", + "2006-08-31": "National Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-04": "Thaipusam", + "2007-03-05": "Thaipusam (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-11": "Isra' and Mi'raj", + "2007-08-31": "National Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-22": "Thaipusam", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-07-31": "Isra' and Mi'raj", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-11": "Thaipusam", + "2009-01-12": "Thaipusam (observed)", + "2009-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-07-20": "Isra' and Mi'raj", + "2009-08-31": "National Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-01": "Thaipusam", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-07-09": "Isra' and Mi'raj", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-02-18": "Thaipusam", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-06-29": "Isra' and Mi'raj", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-08": "Thaipusam", + "2012-01-09": "Thaipusam (observed)", + "2012-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-06-17": "Isra' and Mi'raj", + "2012-06-18": "Isra' and Mi'raj (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-02-25": "Thaipusam", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-06-06": "Isra' and Mi'raj", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Birthday of the Sultan of Negeri Sembilan; Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-14": "Thaipusam", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-05-27": "Isra' and Mi'raj", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-03-05": "Thaipusam", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-05-16": "Isra' and Mi'raj", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-02-23": "Thaipusam", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-05": "Isra' and Mi'raj", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-13": "Thaipusam", + "2017-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong; Isra' and Mi'raj", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2018-01-15": "Birthday of the Sultan of Negeri Sembilan (observed)", + "2018-01-31": "Thaipusam", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-04-14": "Isra' and Mi'raj", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2019-01-21": "Thaipusam", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-04-03": "Isra' and Mi'raj", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-02-08": "Thaipusam", + "2020-03-22": "Isra' and Mi'raj", + "2020-03-23": "Isra' and Mi'raj (observed)", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2021-01-28": "Thaipusam", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-03-11": "Isra' and Mi'raj", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-03-01": "Isra' and Mi'raj", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-05": "Thaipusam", + "2023-02-06": "Thaipusam (observed)", + "2023-02-18": "Isra' and Mi'raj", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2024-01-15": "Birthday of the Sultan of Negeri Sembilan (observed)", + "2024-01-25": "Thaipusam", + "2024-02-08": "Isra' and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2025-01-27": "Isra' and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-11": "Thaipusam", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2026-01-16": "Isra' and Mi'raj (estimated)", + "2026-02-01": "Thaipusam", + "2026-02-02": "Thaipusam (observed)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-05": "Isra' and Mi'raj (estimated)", + "2027-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2027-01-22": "Thaipusam", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day; Isra' and Mi'raj (estimated)", + "2028-01-01": "New Year's Day", + "2028-01-11": "Thaipusam", + "2028-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-14": "Isra' and Mi'raj (estimated)", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2029-01-15": "Birthday of the Sultan of Negeri Sembilan (observed)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-03": "Isra' and Mi'raj (estimated)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-02-17": "Thaipusam", + "2030-02-18": "Thaipusam (observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-11-23": "Isra' and Mi'raj (estimated)", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-08": "Thaipusam", + "2031-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-12": "Isra' and Mi'raj (estimated)", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Birthday of the Sultan of Negeri Sembilan; Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali; Isra' and Mi'raj (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali; Isra' and Mi'raj (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-06": "Thaipusam (observed)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-10-10": "Isra' and Mi'raj (estimated)", + "2034-11-09": "Deepavali", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2035-01-15": "Birthday of the Sultan of Negeri Sembilan (observed)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-02-23": "Thaipusam", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-09-29": "Isra' and Mi'raj (estimated)", + "2035-10-29": "Deepavali", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-13": "Thaipusam", + "2036-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2036-01-15": "Thaipusam (observed)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-09-18": "Isra' and Mi'raj (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-03-02": "Thaipusam", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-07": "Isra' and Mi'raj (estimated)", + "2037-09-16": "Malaysia Day", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-19": "Thaipusam", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-28": "Isra' and Mi'raj (estimated)", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-10": "Thaipusam (observed)", + "2039-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-17": "Isra' and Mi'raj (estimated)", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-02-27": "Thaipusam", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-05": "Isra' and Mi'raj (estimated)", + "2040-08-06": "Isra' and Mi'raj (observed, estimated)", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-15": "Thaipusam", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-07-25": "Isra' and Mi'raj (estimated)", + "2041-08-31": "National Day", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Thaipusam", + "2042-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-07-15": "Isra' and Mi'raj (estimated)", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-02-24": "Thaipusam", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-07-04": "Isra' and Mi'raj (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-02-15": "Thaipusam (observed)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-06-23": "Isra' and Mi'raj (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-03-04": "Thaipusam", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-06-13": "Isra' and Mi'raj (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2046-01-15": "Birthday of the Sultan of Negeri Sembilan (observed)", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-02": "Isra' and Mi'raj (estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Isra' and Mi'raj (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-28": "Thaipusam", + "2048-05-01": "Labor Day", + "2048-05-10": "Isra' and Mi'raj (estimated)", + "2048-05-11": "Isra' and Mi'raj (observed, estimated)", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-04-29": "Isra' and Mi'raj (estimated)", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-08": "Thaipusam", + "2050-01-14": "Birthday of the Sultan of Negeri Sembilan", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-04-19": "Isra' and Mi'raj (estimated)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_06.json b/snapshots/countries/MY_06.json new file mode 100644 index 000000000..eebbe2034 --- /dev/null +++ b/snapshots/countries/MY_06.json @@ -0,0 +1,1810 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-11-08": "Deepavali", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-07": "Hari Hol Sultan Pahang", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-10-24": "Birthday of the Sultan of Pahang", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-07": "Hari Hol Sultan Pahang", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-10-24": "Birthday of the Sultan of Pahang", + "1976-10-25": "Birthday of the Sultan of Pahang (observed)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-05-07": "Hari Hol Sultan Pahang", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-10-24": "Birthday of the Sultan of Pahang", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-05-01": "Labor Day", + "1978-05-07": "Hari Hol Sultan Pahang", + "1978-05-08": "Hari Hol Sultan Pahang (observed)", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-24": "Birthday of the Sultan of Pahang", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-07": "Hari Hol Sultan Pahang", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-24": "Birthday of the Sultan of Pahang", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-05-01": "Labor Day", + "1980-05-07": "Hari Hol Sultan Pahang", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-10-24": "Birthday of the Sultan of Pahang", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-05-01": "Labor Day", + "1981-05-07": "Hari Hol Sultan Pahang", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-24": "Birthday of the Sultan of Pahang", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-07": "Hari Hol Sultan Pahang", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-10-24": "Birthday of the Sultan of Pahang", + "1982-10-25": "Birthday of the Sultan of Pahang (observed)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-07": "Hari Hol Sultan Pahang", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-10-24": "Birthday of the Sultan of Pahang", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-05-01": "Labor Day", + "1984-05-07": "Hari Hol Sultan Pahang", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-10-24": "Birthday of the Sultan of Pahang", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-07": "Hari Hol Sultan Pahang", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-10-24": "Birthday of the Sultan of Pahang", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-05-01": "Labor Day", + "1986-05-07": "Hari Hol Sultan Pahang", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-24": "Birthday of the Sultan of Pahang", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-05-01": "Labor Day", + "1987-05-07": "Hari Hol Sultan Pahang", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-10-24": "Birthday of the Sultan of Pahang", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-07": "Hari Hol Sultan Pahang", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-10-24": "Birthday of the Sultan of Pahang", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated); Hari Hol Sultan Pahang", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated); Hari Hol Sultan Pahang (observed)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-24": "Birthday of the Sultan of Pahang", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-07": "Hari Hol Sultan Pahang", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-10-24": "Birthday of the Sultan of Pahang", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-07": "Hari Hol Sultan Pahang", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-10-24": "Birthday of the Sultan of Pahang", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-07": "Hari Hol Sultan Pahang", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Birthday of the Sultan of Pahang; Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-07": "Hari Hol Sultan Pahang", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-10-24": "Birthday of the Sultan of Pahang", + "1993-10-25": "Birthday of the Sultan of Pahang (observed)", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-07": "Hari Hol Sultan Pahang", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-10-24": "Birthday of the Sultan of Pahang", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-07": "Hari Hol Sultan Pahang", + "1995-05-08": "Hari Hol Sultan Pahang (observed)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-10-24": "Birthday of the Sultan of Pahang", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-07": "Hari Hol Sultan Pahang", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-10-24": "Birthday of the Sultan of Pahang", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Hari Hol Sultan Pahang; Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-24": "Birthday of the Sultan of Pahang", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-07": "Hari Hol Sultan Pahang", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-10-24": "Birthday of the Sultan of Pahang", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-07": "Hari Hol Sultan Pahang", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-10-24": "Birthday of the Sultan of Pahang", + "1999-10-25": "Birthday of the Sultan of Pahang (observed)", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-07": "Hari Hol Sultan Pahang", + "2000-05-08": "Hari Hol Sultan Pahang (observed)", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-24": "Birthday of the Sultan of Pahang", + "2000-10-25": "Deepavali", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Hari Hol Sultan Pahang; Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-10-24": "Birthday of the Sultan of Pahang", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-07": "Hari Hol Sultan Pahang", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-10-24": "Birthday of the Sultan of Pahang", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-07": "Hari Hol Sultan Pahang", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-23": "Deepavali", + "2003-10-24": "Birthday of the Sultan of Pahang", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-05-07": "Hari Hol Sultan Pahang", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-10-24": "Birthday of the Sultan of Pahang", + "2004-10-25": "Birthday of the Sultan of Pahang (observed)", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-07": "Hari Hol Sultan Pahang", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-10-24": "Birthday of the Sultan of Pahang", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-07": "Hari Hol Sultan Pahang", + "2006-05-08": "Hari Hol Sultan Pahang (observed)", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Birthday of the Sultan of Pahang; Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-05-07": "Hari Hol Sultan Pahang", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-10-24": "Birthday of the Sultan of Pahang", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-07": "Hari Hol Sultan Pahang", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-24": "Birthday of the Sultan of Pahang", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-07": "Hari Hol Sultan Pahang", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-10-24": "Birthday of the Sultan of Pahang", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-05-01": "Labor Day", + "2010-05-07": "Hari Hol Sultan Pahang", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-10-24": "Birthday of the Sultan of Pahang", + "2010-10-25": "Birthday of the Sultan of Pahang (observed)", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-07": "Hari Hol Sultan Pahang", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-24": "Birthday of the Sultan of Pahang", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-05-07": "Hari Hol Sultan Pahang", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-24": "Birthday of the Sultan of Pahang", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-05-01": "Labor Day", + "2013-05-07": "Hari Hol Sultan Pahang", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-10-24": "Birthday of the Sultan of Pahang", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-05-01": "Labor Day", + "2014-05-07": "Hari Hol Sultan Pahang", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-24": "Birthday of the Sultan of Pahang", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-05-07": "Hari Hol Sultan Pahang", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-10-24": "Birthday of the Sultan of Pahang", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-07": "Hari Hol Sultan Pahang", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-24": "Birthday of the Sultan of Pahang", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-07": "Hari Hol Sultan Pahang", + "2017-05-08": "Hari Hol Sultan Pahang (observed)", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-10-24": "Birthday of the Sultan of Pahang", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-07": "Hari Hol Sultan Pahang", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-10-24": "Birthday of the Sultan of Pahang", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-07": "Hari Hol Sultan Pahang", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Birthday of the Sultan of Pahang; Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-22": "Hari Hol Sultan Pahang", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-30": "Birthday of the Sultan of Pahang", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-22": "Hari Hol Sultan Pahang", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-07-30": "Birthday of the Sultan of Pahang", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-05-22": "Hari Hol Sultan Pahang", + "2022-05-23": "Hari Hol Sultan Pahang (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Birthday of the Sultan of Pahang; Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-05-22": "Hari Hol Sultan Pahang", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-07-30": "Birthday of the Sultan of Pahang", + "2023-07-31": "Birthday of the Sultan of Pahang (observed)", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Hari Hol Sultan Pahang; Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-07-30": "Birthday of the Sultan of Pahang", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-05-22": "Hari Hol Sultan Pahang", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-07-30": "Birthday of the Sultan of Pahang", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-22": "Hari Hol Sultan Pahang", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-07-30": "Birthday of the Sultan of Pahang", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-05-22": "Hari Hol Sultan Pahang", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-07-30": "Birthday of the Sultan of Pahang", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-22": "Hari Hol Sultan Pahang", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-07-30": "Birthday of the Sultan of Pahang", + "2028-07-31": "Birthday of the Sultan of Pahang (observed)", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-22": "Hari Hol Sultan Pahang", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-07-30": "Birthday of the Sultan of Pahang", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-05-22": "Hari Hol Sultan Pahang", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-07-30": "Birthday of the Sultan of Pahang", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-05-22": "Hari Hol Sultan Pahang", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-07-30": "Birthday of the Sultan of Pahang", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-22": "Hari Hol Sultan Pahang", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-07-30": "Birthday of the Sultan of Pahang", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-22": "Hari Hol Sultan Pahang", + "2033-05-23": "Hari Hol Sultan Pahang (observed)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-07-30": "Birthday of the Sultan of Pahang", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-22": "Hari Hol Sultan Pahang", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-07-30": "Birthday of the Sultan of Pahang", + "2034-07-31": "Birthday of the Sultan of Pahang (observed)", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Hari Hol Sultan Pahang; Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-07-30": "Birthday of the Sultan of Pahang", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-22": "Hari Hol Sultan Pahang", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-07-30": "Birthday of the Sultan of Pahang", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-22": "Hari Hol Sultan Pahang", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-07-30": "Birthday of the Sultan of Pahang", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-05-22": "Hari Hol Sultan Pahang", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-07-30": "Birthday of the Sultan of Pahang", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-22": "Hari Hol Sultan Pahang", + "2039-05-23": "Hari Hol Sultan Pahang (observed)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-07-30": "Birthday of the Sultan of Pahang", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-22": "Hari Hol Sultan Pahang", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-07-30": "Birthday of the Sultan of Pahang", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-05-22": "Hari Hol Sultan Pahang", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-07-30": "Birthday of the Sultan of Pahang", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-05-22": "Hari Hol Sultan Pahang", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-07-30": "Birthday of the Sultan of Pahang", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-05-01": "Labor Day", + "2043-05-22": "Hari Hol Sultan Pahang", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-07-30": "Birthday of the Sultan of Pahang", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-05-22": "Hari Hol Sultan Pahang", + "2044-05-23": "Hari Hol Sultan Pahang (observed)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-07-30": "Birthday of the Sultan of Pahang", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-05-22": "Hari Hol Sultan Pahang", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-30": "Birthday of the Sultan of Pahang", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-01": "Birthday of the Sultan of Pahang (observed)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-05-22": "Hari Hol Sultan Pahang", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-07-30": "Birthday of the Sultan of Pahang", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Hari Hol Sultan Pahang", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-07-30": "Birthday of the Sultan of Pahang", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-05-01": "Labor Day", + "2048-05-22": "Hari Hol Sultan Pahang", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-07-30": "Birthday of the Sultan of Pahang", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-05-22": "Hari Hol Sultan Pahang", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-07-30": "Birthday of the Sultan of Pahang", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-22": "Hari Hol Sultan Pahang", + "2050-05-23": "Hari Hol Sultan Pahang (observed)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-07-30": "Birthday of the Sultan of Pahang", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_07.json b/snapshots/countries/MY_07.json new file mode 100644 index 000000000..5932b08fc --- /dev/null +++ b/snapshots/countries/MY_07.json @@ -0,0 +1,1909 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-07-12": "Birthday of the Governor of Penang", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-02-28": "Thaipusam", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-07-11": "Birthday of the Governor of Penang", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-02-18": "Thaipusam", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-07-10": "Birthday of the Governor of Penang", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-09": "Thaipusam", + "1955-01-10": "Thaipusam (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-09": "Birthday of the Governor of Penang", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-02-26": "Thaipusam", + "1956-02-27": "Thaipusam (observed)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-14": "Birthday of the Governor of Penang", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-15": "Thaipusam", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-13": "Birthday of the Governor of Penang", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-05": "Thaipusam", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-07-12": "Birthday of the Governor of Penang", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-02-22": "Thaipusam", + "1959-02-23": "Thaipusam (observed)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-07-11": "Birthday of the Governor of Penang", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-13": "Thaipusam", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-07-09": "Birthday of the Governor of Penang", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-02": "Thaipusam", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-07-08": "Birthday of the Governor of Penang", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-19": "Thaipusam", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-07-14": "Birthday of the Governor of Penang", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-07-13": "Birthday of the Governor of Penang", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-28": "Thaipusam", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-11": "Birthday of the Governor of Penang", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-02-16": "Thaipusam", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Birthday of the Governor of Penang; Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Thaipusam", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-07-09": "Birthday of the Governor of Penang", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-24": "Thaipusam", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-07-08": "Birthday of the Governor of Penang", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-02-13": "Thaipusam", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-07-13": "Birthday of the Governor of Penang", + "1968-08-31": "National Day", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-03": "Thaipusam", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-07-12": "Birthday of the Governor of Penang", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-11-08": "Deepavali", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-21": "Thaipusam", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-07-11": "Birthday of the Governor of Penang", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-07-10": "Birthday of the Governor of Penang", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-02-29": "Thaipusam", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-07-08": "Birthday of the Governor of Penang", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-02-18": "Thaipusam", + "1973-02-19": "Thaipusam (observed)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-07-14": "Birthday of the Governor of Penang", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-07-13": "Birthday of the Governor of Penang", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-02-26": "Thaipusam", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-07-12": "Birthday of the Governor of Penang", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-02-15": "Thaipusam", + "1976-02-16": "Thaipusam (observed)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-07-10": "Birthday of the Governor of Penang", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-03-05": "Thaipusam", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-07-09": "Birthday of the Governor of Penang", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-02-22": "Thaipusam", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-07-08": "Birthday of the Governor of Penang", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-07-14": "Birthday of the Governor of Penang", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-03-02": "Thaipusam", + "1980-03-03": "Thaipusam (observed)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-12": "Birthday of the Governor of Penang", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-19": "Thaipusam", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-11": "Birthday of the Governor of Penang", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-10": "Thaipusam", + "1982-01-11": "Thaipusam (observed)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-10": "Birthday of the Governor of Penang", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-02-28": "Thaipusam", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-09": "Birthday of the Governor of Penang", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-17": "Thaipusam", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-07-14": "Birthday of the Governor of Penang", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-03-06": "Thaipusam", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-07-13": "Birthday of the Governor of Penang", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-02-23": "Thaipusam", + "1986-02-24": "Thaipusam (observed)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-07-12": "Birthday of the Governor of Penang", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-07-11": "Birthday of the Governor of Penang", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-03": "Thaipusam", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-09": "Birthday of the Governor of Penang", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-02-21": "Thaipusam", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-08": "Birthday of the Governor of Penang", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-12": "Thaipusam", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-14": "Birthday of the Governor of Penang", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-01": "Thaipusam", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-07-13": "Birthday of the Governor of Penang", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-02-18": "Thaipusam", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-07-11": "Birthday of the Governor of Penang", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-08": "Thaipusam", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-07-10": "Birthday of the Governor of Penang", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-25": "Thaipusam", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-07-09": "Birthday of the Governor of Penang", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-14": "Thaipusam", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-07-08": "Birthday of the Governor of Penang", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-03-04": "Thaipusam", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-13": "Birthday of the Governor of Penang", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-02-22": "Thaipusam", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-12": "Birthday of the Governor of Penang", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-13": "Thaipusam", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-07-11": "Birthday of the Governor of Penang", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-03": "Thaipusam", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-07-10": "Birthday of the Governor of Penang", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-02-20": "Thaipusam", + "2000-02-21": "Thaipusam (observed)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-07-08": "Birthday of the Governor of Penang", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-07-14": "Birthday of the Governor of Penang", + "2001-08-31": "National Day", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-27": "Thaipusam", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-07-13": "Birthday of the Governor of Penang", + "2002-08-31": "National Day", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-16": "Thaipusam", + "2003-02-17": "Thaipusam (observed)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-07-12": "Birthday of the Governor of Penang", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-07-10": "Birthday of the Governor of Penang", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-02-23": "Thaipusam", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-07-09": "Birthday of the Governor of Penang", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-02-13": "Thaipusam", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-07-08": "Birthday of the Governor of Penang", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-04": "Thaipusam", + "2007-03-05": "Thaipusam (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-07-14": "Birthday of the Governor of Penang", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-22": "Thaipusam", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-07-12": "Birthday of the Governor of Penang", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-11": "Thaipusam", + "2009-01-12": "Thaipusam (observed)", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-07-07": "George Town Heritage Day", + "2009-07-11": "Birthday of the Governor of Penang", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-01": "Thaipusam", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-07-07": "George Town Heritage Day", + "2010-07-10": "Birthday of the Governor of Penang", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-02-18": "Thaipusam", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-07-07": "George Town Heritage Day", + "2011-07-09": "Birthday of the Governor of Penang", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-08": "Thaipusam", + "2012-01-09": "Thaipusam (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-07-07": "George Town Heritage Day", + "2012-07-14": "Birthday of the Governor of Penang", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-02-25": "Thaipusam", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-07": "George Town Heritage Day", + "2013-07-08": "George Town Heritage Day (observed)", + "2013-07-13": "Birthday of the Governor of Penang", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-14": "Thaipusam", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-07": "George Town Heritage Day", + "2014-07-12": "Birthday of the Governor of Penang", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-03-05": "Thaipusam", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-07": "George Town Heritage Day", + "2015-07-11": "Birthday of the Governor of Penang", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-02-23": "Thaipusam", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day); George Town Heritage Day", + "2016-07-09": "Birthday of the Governor of Penang", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-13": "Thaipusam", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-07-07": "George Town Heritage Day", + "2017-07-08": "Birthday of the Governor of Penang", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-31": "Thaipusam", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-07-07": "George Town Heritage Day", + "2018-07-14": "Birthday of the Governor of Penang", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Thaipusam", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-07": "George Town Heritage Day", + "2019-07-08": "George Town Heritage Day (observed)", + "2019-07-13": "Birthday of the Governor of Penang", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-02-08": "Thaipusam", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-07": "George Town Heritage Day", + "2020-07-11": "Birthday of the Governor of Penang", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-28": "Thaipusam", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-07": "George Town Heritage Day", + "2021-07-10": "Birthday of the Governor of Penang", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-07": "George Town Heritage Day", + "2022-07-09": "Birthday of the Governor of Penang", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-05": "Thaipusam", + "2023-02-06": "Thaipusam (observed)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-07": "George Town Heritage Day", + "2023-07-08": "Birthday of the Governor of Penang", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-25": "Thaipusam", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "George Town Heritage Day; Islamic New Year", + "2024-07-08": "George Town Heritage Day (observed); Islamic New Year (observed)", + "2024-07-13": "Birthday of the Governor of Penang", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-11": "Thaipusam", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-07-07": "George Town Heritage Day", + "2025-07-12": "Birthday of the Governor of Penang", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-01": "Thaipusam", + "2026-02-02": "Thaipusam (observed)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-07-07": "George Town Heritage Day", + "2026-07-11": "Birthday of the Governor of Penang", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-22": "Thaipusam", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-07-07": "George Town Heritage Day", + "2027-07-10": "Birthday of the Governor of Penang", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-11": "Thaipusam", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-07-07": "George Town Heritage Day", + "2028-07-08": "Birthday of the Governor of Penang", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-07": "George Town Heritage Day", + "2029-07-14": "Birthday of the Governor of Penang", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-02-17": "Thaipusam", + "2030-02-18": "Thaipusam (observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-07": "George Town Heritage Day", + "2030-07-08": "George Town Heritage Day (observed)", + "2030-07-13": "Birthday of the Governor of Penang; Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-08": "Thaipusam", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-07-07": "George Town Heritage Day", + "2031-07-12": "Birthday of the Governor of Penang", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-07-07": "George Town Heritage Day", + "2032-07-10": "Birthday of the Governor of Penang", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-07-07": "George Town Heritage Day", + "2033-07-09": "Birthday of the Governor of Penang", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-06": "Thaipusam (observed)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-07-07": "George Town Heritage Day", + "2034-07-08": "Birthday of the Governor of Penang", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-02-23": "Thaipusam", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-07-07": "George Town Heritage Day", + "2035-07-14": "Birthday of the Governor of Penang", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-13": "Thaipusam", + "2036-01-14": "Thaipusam (observed)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-07-07": "George Town Heritage Day", + "2036-07-12": "Birthday of the Governor of Penang", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-03-02": "Thaipusam", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-07-07": "George Town Heritage Day", + "2037-07-11": "Birthday of the Governor of Penang", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-19": "Thaipusam", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-07-07": "George Town Heritage Day", + "2038-07-10": "Birthday of the Governor of Penang", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-10": "Thaipusam (observed)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-07-07": "George Town Heritage Day", + "2039-07-09": "Birthday of the Governor of Penang", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-02-27": "Thaipusam", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-07-07": "George Town Heritage Day", + "2040-07-14": "Birthday of the Governor of Penang", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-15": "Thaipusam", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-07-07": "George Town Heritage Day", + "2041-07-08": "George Town Heritage Day (observed)", + "2041-07-13": "Birthday of the Governor of Penang", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Thaipusam", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-07-07": "George Town Heritage Day", + "2042-07-12": "Birthday of the Governor of Penang", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-02-24": "Thaipusam", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-07-07": "George Town Heritage Day", + "2043-07-11": "Birthday of the Governor of Penang", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-02-15": "Thaipusam (observed)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-07-07": "George Town Heritage Day", + "2044-07-09": "Birthday of the Governor of Penang", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-03-04": "Thaipusam", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-07": "George Town Heritage Day", + "2045-07-08": "Birthday of the Governor of Penang", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-07": "George Town Heritage Day", + "2046-07-14": "Birthday of the Governor of Penang", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-07": "George Town Heritage Day", + "2047-07-08": "George Town Heritage Day (observed)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-13": "Birthday of the Governor of Penang", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-28": "Thaipusam", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-07": "George Town Heritage Day", + "2048-07-11": "Birthday of the Governor of Penang", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-07-07": "George Town Heritage Day", + "2049-07-10": "Birthday of the Governor of Penang", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-08": "Thaipusam", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-07-07": "George Town Heritage Day", + "2050-07-09": "Birthday of the Governor of Penang", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_08.json b/snapshots/countries/MY_08.json new file mode 100644 index 000000000..0ff197ce4 --- /dev/null +++ b/snapshots/countries/MY_08.json @@ -0,0 +1,1863 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-27": "Birthday of the Sultan of Perak", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-02-28": "Thaipusam", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-11-27": "Birthday of the Sultan of Perak", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-02-18": "Thaipusam", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-11-27": "Birthday of the Sultan of Perak", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-09": "Thaipusam", + "1955-01-10": "Thaipusam (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-11-27": "Birthday of the Sultan of Perak", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-02-26": "Thaipusam", + "1956-02-27": "Thaipusam (observed)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-11-27": "Birthday of the Sultan of Perak", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-15": "Thaipusam", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-11-27": "Birthday of the Sultan of Perak", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-05": "Thaipusam", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-11-27": "Birthday of the Sultan of Perak", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-02-22": "Thaipusam", + "1959-02-23": "Thaipusam (observed)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-11-27": "Birthday of the Sultan of Perak", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-13": "Thaipusam", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-11-27": "Birthday of the Sultan of Perak", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-02": "Thaipusam", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-11-27": "Birthday of the Sultan of Perak", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-19": "Thaipusam", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-11-27": "Birthday of the Sultan of Perak", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-11-27": "Birthday of the Sultan of Perak", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-28": "Thaipusam", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-11-27": "Birthday of the Sultan of Perak", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-02-16": "Thaipusam", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-11-27": "Birthday of the Sultan of Perak", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Thaipusam", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-11-27": "Birthday of the Sultan of Perak", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-24": "Thaipusam", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-11-27": "Birthday of the Sultan of Perak", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-02-13": "Thaipusam", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-11-18": "Deepavali", + "1968-11-27": "Birthday of the Sultan of Perak", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-03": "Thaipusam", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-11-08": "Deepavali", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-11-27": "Birthday of the Sultan of Perak", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-21": "Thaipusam", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-27": "Birthday of the Sultan of Perak", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-11-27": "Birthday of the Sultan of Perak", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-02-29": "Thaipusam", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-11-27": "Birthday of the Sultan of Perak", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-02-18": "Thaipusam", + "1973-02-19": "Thaipusam (observed)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-11-27": "Birthday of the Sultan of Perak", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-11-27": "Birthday of the Sultan of Perak", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-02-26": "Thaipusam", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-11-27": "Birthday of the Sultan of Perak", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-02-15": "Thaipusam", + "1976-02-16": "Thaipusam (observed)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-11-19": "Deepavali", + "1976-11-27": "Birthday of the Sultan of Perak", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-03-05": "Thaipusam", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-27": "Birthday of the Sultan of Perak", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-02-22": "Thaipusam", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-27": "Birthday of the Sultan of Perak", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-11-27": "Birthday of the Sultan of Perak", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-03-02": "Thaipusam", + "1980-03-03": "Thaipusam (observed)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-11-27": "Birthday of the Sultan of Perak", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-19": "Thaipusam", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-11-27": "Birthday of the Sultan of Perak", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-10": "Thaipusam", + "1982-01-11": "Thaipusam (observed)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-11-13": "Deepavali", + "1982-11-27": "Birthday of the Sultan of Perak", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-02-28": "Thaipusam", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-11-03": "Deepavali", + "1983-11-27": "Birthday of the Sultan of Perak", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-17": "Thaipusam", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-11-27": "Birthday of the Sultan of Perak", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-03-06": "Thaipusam", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-11-27": "Birthday of the Sultan of Perak", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-02-23": "Thaipusam", + "1986-02-24": "Thaipusam (observed)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-11-27": "Birthday of the Sultan of Perak", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-11-27": "Birthday of the Sultan of Perak", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-03": "Thaipusam", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-11-27": "Birthday of the Sultan of Perak", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-02-21": "Thaipusam", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-11-27": "Birthday of the Sultan of Perak", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-12": "Thaipusam", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-11-27": "Birthday of the Sultan of Perak", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-01": "Thaipusam", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-11-27": "Birthday of the Sultan of Perak", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-02-18": "Thaipusam", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-11-27": "Birthday of the Sultan of Perak", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-08": "Thaipusam", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-11-27": "Birthday of the Sultan of Perak", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-25": "Thaipusam", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-11-27": "Birthday of the Sultan of Perak", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-14": "Thaipusam", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-11-27": "Birthday of the Sultan of Perak", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-03-04": "Thaipusam", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-11-27": "Birthday of the Sultan of Perak", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-02-22": "Thaipusam", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-29": "Deepavali", + "1997-11-27": "Birthday of the Sultan of Perak", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-13": "Thaipusam", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-11-27": "Birthday of the Sultan of Perak", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-03": "Thaipusam", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-27": "Birthday of the Sultan of Perak", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-02-20": "Thaipusam", + "2000-02-21": "Thaipusam (observed)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-11-27": "Birthday of the Sultan of Perak", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-11-14": "Deepavali", + "2001-11-27": "Birthday of the Sultan of Perak", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-27": "Thaipusam", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-11-27": "Birthday of the Sultan of Perak", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-16": "Thaipusam", + "2003-02-17": "Thaipusam (observed)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Birthday of the Sultan of Perak; Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-11-27": "Birthday of the Sultan of Perak", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-02-23": "Thaipusam", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-11-27": "Birthday of the Sultan of Perak", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-02-13": "Thaipusam", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-11-27": "Birthday of the Sultan of Perak", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-04": "Thaipusam", + "2007-03-05": "Thaipusam (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-11-27": "Birthday of the Sultan of Perak", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-22": "Thaipusam", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-11-27": "Birthday of the Sultan of Perak", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-11": "Thaipusam", + "2009-01-12": "Thaipusam (observed)", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-11-27": "Birthday of the Sultan of Perak", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-01": "Thaipusam", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-11-27": "Birthday of the Sultan of Perak", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-02-18": "Thaipusam", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Birthday of the Sultan of Perak; Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-08": "Thaipusam", + "2012-01-09": "Thaipusam (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-11-27": "Birthday of the Sultan of Perak", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-02-25": "Thaipusam", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-11-27": "Birthday of the Sultan of Perak", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-14": "Thaipusam", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-11-27": "Birthday of the Sultan of Perak", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-03-05": "Thaipusam", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-11-27": "Birthday of the Sultan of Perak", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-02-23": "Thaipusam", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-11-27": "Birthday of the Sultan of Perak", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-13": "Thaipusam", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-11-27": "Birthday of the Sultan of Perak", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-31": "Thaipusam", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-02": "Birthday of the Sultan of Perak", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Thaipusam", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-01": "Birthday of the Sultan of Perak", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-02-08": "Thaipusam", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-06": "Birthday of the Sultan of Perak", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-28": "Thaipusam", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-11-05": "Birthday of the Sultan of Perak", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-04": "Birthday of the Sultan of Perak", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-05": "Thaipusam", + "2023-02-06": "Thaipusam (observed)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-03": "Birthday of the Sultan of Perak", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-25": "Thaipusam", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-11-01": "Birthday of the Sultan of Perak", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-11": "Thaipusam", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-07": "Birthday of the Sultan of Perak", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-01": "Thaipusam", + "2026-02-02": "Thaipusam (observed)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-06": "Birthday of the Sultan of Perak", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-22": "Thaipusam", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-11-05": "Birthday of the Sultan of Perak", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-11": "Thaipusam", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-03": "Birthday of the Sultan of Perak", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-02": "Birthday of the Sultan of Perak", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-02-17": "Thaipusam", + "2030-02-18": "Thaipusam (observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-11-01": "Birthday of the Sultan of Perak", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-08": "Thaipusam", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-07": "Birthday of the Sultan of Perak", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-11-05": "Birthday of the Sultan of Perak", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-11-04": "Birthday of the Sultan of Perak", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-06": "Thaipusam (observed)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-03": "Birthday of the Sultan of Perak", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-02-23": "Thaipusam", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-02": "Birthday of the Sultan of Perak", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-13": "Thaipusam", + "2036-01-14": "Thaipusam (observed)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-07": "Birthday of the Sultan of Perak", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-03-02": "Thaipusam", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-06": "Birthday of the Sultan of Perak", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-19": "Thaipusam", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-11-05": "Birthday of the Sultan of Perak", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-10": "Thaipusam (observed)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-04": "Birthday of the Sultan of Perak", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-02-27": "Thaipusam", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-02": "Birthday of the Sultan of Perak", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-15": "Thaipusam", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-11-01": "Birthday of the Sultan of Perak", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Thaipusam", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-07": "Birthday of the Sultan of Perak", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-02-24": "Thaipusam", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-06": "Birthday of the Sultan of Perak", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-02-15": "Thaipusam (observed)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-04": "Birthday of the Sultan of Perak", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-03-04": "Thaipusam", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-03": "Birthday of the Sultan of Perak", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-11-02": "Birthday of the Sultan of Perak", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-01": "Birthday of the Sultan of Perak", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-28": "Thaipusam", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-11-06": "Birthday of the Sultan of Perak", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-11-05": "Birthday of the Sultan of Perak", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-08": "Thaipusam", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-04": "Birthday of the Sultan of Perak", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_09.json b/snapshots/countries/MY_09.json new file mode 100644 index 000000000..9eee16708 --- /dev/null +++ b/snapshots/countries/MY_09.json @@ -0,0 +1,1817 @@ +{ + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-04-22": "Isra' and Mi'raj (estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (Second Day) (estimated)", + "1952-09-02": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-04-12": "Isra' and Mi'raj (estimated)", + "1953-04-13": "Isra' and Mi'raj (observed, estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (Second Day) (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-04-01": "Isra' and Mi'raj (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (Second Day) (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-03-21": "Isra' and Mi'raj (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (Second Day) (estimated)", + "1955-08-01": "Eid al-Adha (Second Day) (observed, estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-03-10": "Isra' and Mi'raj (estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (Second Day) (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-27": "Isra' and Mi'raj (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (Second Day) (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-02-16": "Isra' and Mi'raj (estimated)", + "1958-02-17": "Isra' and Mi'raj (observed, estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (Second Day) (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-02-06": "Isra' and Mi'raj (estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (Second Day) (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-26": "Isra' and Mi'raj (estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (Second Day) (estimated)", + "1960-06-06": "Eid al-Adha (Second Day) (observed, estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-14": "Isra' and Mi'raj (estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (Second Day) (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-04": "Isra' and Mi'raj (estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (Second Day) (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-24": "Isra' and Mi'raj (estimated)", + "1962-12-25": "Christmas Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (Second Day) (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-13": "Isra' and Mi'raj (estimated)", + "1963-12-25": "Christmas Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (Second Day) (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-01": "Isra' and Mi'raj (estimated)", + "1964-12-25": "Christmas Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (Second Day) (estimated)", + "1965-04-13": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-11-20": "Isra' and Mi'raj (estimated)", + "1965-12-25": "Christmas Day", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (Second Day) (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali; Isra' and Mi'raj (estimated)", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (Second Day) (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-30": "Isra' and Mi'raj (estimated)", + "1967-10-31": "Deepavali", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated)", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (Second Day) (estimated)", + "1968-03-11": "Eid al-Adha (Second Day) (observed, estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-10-19": "Isra' and Mi'raj (estimated)", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (Second Day) (estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-10-08": "Isra' and Mi'raj (estimated)", + "1969-11-08": "Deepavali", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (Second Day) (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-09-28": "Isra' and Mi'raj (estimated)", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (Second Day) (estimated)", + "1971-02-08": "Eid al-Adha (Second Day) (observed, estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-09-17": "Isra' and Mi'raj (estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (Second Day) (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-09-05": "Isra' and Mi'raj (estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (Second Day) (estimated)", + "1973-01-16": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-25": "Isra' and Mi'raj (estimated)", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (Second Day) (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-15": "Isra' and Mi'raj (estimated)", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (Second Day) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-05": "Isra' and Mi'raj (estimated)", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (Second Day) (estimated)", + "1975-12-15": "Eid al-Adha (Second Day) (observed, estimated)", + "1975-12-25": "Christmas Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-07-24": "Isra' and Mi'raj (estimated)", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (Second Day) (estimated)", + "1976-12-25": "Christmas Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-07-13": "Isra' and Mi'raj (estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (Second Day) (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-07-02": "Isra' and Mi'raj (estimated)", + "1978-07-03": "Isra' and Mi'raj (observed, estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (Second Day) (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-06-22": "Isra' and Mi'raj (estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (Second Day) (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-06-10": "Isra' and Mi'raj (estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (Second Day) (estimated)", + "1980-10-21": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-31": "Isra' and Mi'raj (estimated)", + "1981-06-01": "Isra' and Mi'raj (observed, estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (Second Day) (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-20": "Isra' and Mi'raj (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (Second Day) (estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-10": "Isra' and Mi'raj (estimated)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (Second Day) (estimated)", + "1983-09-19": "Eid al-Adha (Second Day) (observed, estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-04-28": "Isra' and Mi'raj (estimated)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (Second Day) (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-04-17": "Isra' and Mi'raj (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (Second Day) (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-04-06": "Isra' and Mi'raj (estimated)", + "1986-04-07": "Isra' and Mi'raj (observed, estimated)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (Second Day) (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-03-27": "Isra' and Mi'raj (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (Second Day) (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-15": "Isra' and Mi'raj (estimated)", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (Second Day) (estimated)", + "1988-07-25": "Eid al-Adha (Second Day) (observed, estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-03-05": "Isra' and Mi'raj (estimated)", + "1989-03-06": "Isra' and Mi'raj (observed, estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (Second Day) (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-02-22": "Isra' and Mi'raj (estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (Second Day) (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-02-11": "Isra' and Mi'raj (estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (Second Day) (estimated)", + "1991-06-24": "Eid al-Adha (Second Day) (observed, estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-31": "Isra' and Mi'raj (estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (Second Day) (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-20": "Isra' and Mi'raj (estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (Second Day) (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-09": "Isra' and Mi'raj (estimated)", + "1994-01-10": "Isra' and Mi'raj (observed, estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (Second Day) (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1994-12-29": "Isra' and Mi'raj (estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (Second Day) (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-19": "Isra' and Mi'raj (estimated)", + "1995-12-25": "Christmas Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (Second Day) (estimated)", + "1996-04-29": "Eid al-Adha (Second Day) (observed, estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-08": "Isra' and Mi'raj (estimated)", + "1996-12-09": "Isra' and Mi'raj (observed, estimated)", + "1996-12-25": "Christmas Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (Second Day) (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-29": "Deepavali", + "1997-11-27": "Isra' and Mi'raj (estimated)", + "1997-12-25": "Christmas Day", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (Second Day) (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-16": "Isra' and Mi'raj (estimated)", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (Second Day) (estimated)", + "1999-03-29": "Eid al-Adha (Second Day) (observed, estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-05": "Isra' and Mi'raj (estimated)", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (Second Day) (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-17": "Birthday of the Raja of Perlis", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-24": "Isra' and Mi'raj (estimated)", + "2000-10-25": "Deepavali", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-07": "Eid al-Adha (Second Day)", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-05-17": "Birthday of the Raja of Perlis", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-10-15": "Isra' and Mi'raj", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-24": "Eid al-Adha (Second Day)", + "2002-02-25": "Eid al-Adha (Second Day) (observed)", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-17": "Birthday of the Raja of Perlis", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-10-04": "Isra' and Mi'raj", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-13": "Eid al-Adha (Second Day)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-05-17": "Birthday of the Raja of Perlis", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-09-24": "Isra' and Mi'raj", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Eid al-Adha (Second Day)", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-05-17": "Birthday of the Raja of Perlis", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-09-12": "Isra' and Mi'raj", + "2004-09-13": "Isra' and Mi'raj (observed)", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-21": "Eid al-Adha", + "2005-01-22": "Eid al-Adha (Second Day)", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-17": "Birthday of the Raja of Perlis", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-09-01": "Isra' and Mi'raj", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-11": "Eid al-Adha (Second Day)", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-05-17": "Birthday of the Raja of Perlis", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-22": "Isra' and Mi'raj", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "Eid al-Adha (Second Day)", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-05-17": "Birthday of the Raja of Perlis", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-11": "Isra' and Mi'raj", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-21": "Eid al-Adha (Second Day)", + "2007-12-25": "Christmas Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-17": "Birthday of the Raja of Perlis", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-07-31": "Isra' and Mi'raj", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-10": "Eid al-Adha (Second Day)", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-05-17": "Birthday of the Raja of Perlis", + "2009-05-18": "Birthday of the Raja of Perlis (observed)", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-07-20": "Isra' and Mi'raj", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-11-29": "Eid al-Adha (Second Day)", + "2009-11-30": "Eid al-Adha (Second Day) (observed)", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-05-01": "Labor Day", + "2010-05-17": "Birthday of the Raja of Perlis", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-07-09": "Isra' and Mi'raj", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-11-18": "Eid al-Adha (Second Day)", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Birthday of the Raja of Perlis; Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-06-29": "Isra' and Mi'raj", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-08": "Eid al-Adha (Second Day)", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-05-17": "Birthday of the Raja of Perlis", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-06-17": "Isra' and Mi'raj", + "2012-06-18": "Isra' and Mi'raj (observed)", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-10-27": "Eid al-Adha (Second Day)", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-05-01": "Labor Day", + "2013-05-17": "Birthday of the Raja of Perlis", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-06-06": "Isra' and Mi'raj", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-10-16": "Eid al-Adha (Second Day)", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-05-17": "Birthday of the Raja of Perlis", + "2014-05-27": "Isra' and Mi'raj", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (Second Day)", + "2014-10-07": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-05-16": "Isra' and Mi'raj", + "2015-05-17": "Birthday of the Raja of Perlis", + "2015-05-18": "Birthday of the Raja of Perlis (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-09-25": "Eid al-Adha (Second Day)", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-05": "Isra' and Mi'raj", + "2016-05-17": "Birthday of the Raja of Perlis", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-13": "Eid al-Adha (Second Day)", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong; Isra' and Mi'raj", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-05-17": "Birthday of the Raja of Perlis", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-02": "Eid al-Adha (Second Day)", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-04-14": "Isra' and Mi'raj", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-07-17": "Birthday of the Raja of Perlis", + "2018-08-22": "Eid al-Adha", + "2018-08-23": "Eid al-Adha (Second Day)", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-04-03": "Isra' and Mi'raj", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-17": "Birthday of the Raja of Perlis", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (Second Day)", + "2019-08-13": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-03-22": "Isra' and Mi'raj", + "2020-03-23": "Isra' and Mi'raj (observed)", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-17": "Birthday of the Raja of Perlis", + "2020-07-31": "Eid al-Adha", + "2020-08-01": "Eid al-Adha (Second Day)", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-03-11": "Isra' and Mi'raj", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-17": "Birthday of the Raja of Perlis", + "2021-07-20": "Eid al-Adha", + "2021-07-21": "Eid al-Adha (Second Day)", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-03-01": "Isra' and Mi'raj", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-05-17": "Birthday of the Raja of Perlis", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (Second Day)", + "2022-07-12": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-18": "Isra' and Mi'raj", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-05-17": "Birthday of the Raja of Perlis", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-06-30": "Eid al-Adha (Second Day)", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-02-08": "Isra' and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-17": "Birthday of the Raja of Perlis", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-06-18": "Eid al-Adha (Second Day)", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-27": "Isra' and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-05-17": "Birthday of the Raja of Perlis", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (Second Day) (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-16": "Isra' and Mi'raj (estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-17": "Birthday of the Raja of Perlis", + "2026-05-18": "Birthday of the Raja of Perlis (observed)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (Second Day) (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-05": "Isra' and Mi'raj (estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Birthday of the Raja of Perlis; Eid al-Adha (Second Day) (estimated)", + "2027-05-18": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day; Isra' and Mi'raj (estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (Second Day) (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-17": "Birthday of the Raja of Perlis", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-14": "Isra' and Mi'raj (estimated)", + "2028-12-25": "Christmas Day", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (Second Day) (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-17": "Birthday of the Raja of Perlis", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-03": "Isra' and Mi'raj (estimated)", + "2029-12-25": "Christmas Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (Second Day) (estimated)", + "2030-04-15": "Eid al-Adha (Second Day) (observed, estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-05-17": "Birthday of the Raja of Perlis", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-11-23": "Isra' and Mi'raj (estimated)", + "2030-12-25": "Christmas Day", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (Second Day) (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-05-17": "Birthday of the Raja of Perlis", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-12": "Isra' and Mi'raj (estimated)", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (Second Day) (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-17": "Birthday of the Raja of Perlis", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali; Isra' and Mi'raj (estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (Second Day) (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-17": "Birthday of the Raja of Perlis", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali; Isra' and Mi'raj (estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (Second Day) (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-17": "Birthday of the Raja of Perlis", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-10-10": "Isra' and Mi'raj (estimated)", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (Second Day) (estimated)", + "2035-02-20": "Eid al-Adha (observed, estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-17": "Birthday of the Raja of Perlis", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-09-29": "Isra' and Mi'raj (estimated)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (Second Day) (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-17": "Birthday of the Raja of Perlis", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-09-18": "Isra' and Mi'raj (estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (Second Day) (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-17": "Birthday of the Raja of Perlis", + "2037-05-18": "Birthday of the Raja of Perlis (observed)", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-07": "Isra' and Mi'raj (estimated)", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (Second Day) (estimated)", + "2038-01-18": "Eid al-Adha (Second Day) (observed, estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-17": "Birthday of the Raja of Perlis", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-28": "Isra' and Mi'raj (estimated)", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (Second Day) (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-17": "Birthday of the Raja of Perlis", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-17": "Isra' and Mi'raj (estimated)", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (Second Day) (estimated)", + "2039-12-28": "Christmas Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-17": "Birthday of the Raja of Perlis", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-05": "Isra' and Mi'raj (estimated)", + "2040-08-06": "Isra' and Mi'raj (observed, estimated)", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (Second Day) (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-05-17": "Birthday of the Raja of Perlis", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-07-25": "Isra' and Mi'raj (estimated)", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (Second Day) (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-05-17": "Birthday of the Raja of Perlis", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-07-15": "Isra' and Mi'raj (estimated)", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (Second Day) (estimated)", + "2042-11-25": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-05-01": "Labor Day", + "2043-05-17": "Birthday of the Raja of Perlis", + "2043-05-18": "Birthday of the Raja of Perlis (observed)", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-07-04": "Isra' and Mi'raj (estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (Second Day) (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-05-17": "Birthday of the Raja of Perlis", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-06-23": "Isra' and Mi'raj (estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (Second Day) (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-05-17": "Birthday of the Raja of Perlis", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-06-13": "Isra' and Mi'raj (estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (Second Day) (estimated)", + "2045-10-23": "Eid al-Adha (Second Day) (observed, estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-05-01": "Labor Day", + "2046-05-17": "Birthday of the Raja of Perlis", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-02": "Isra' and Mi'raj (estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (Second Day) (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-17": "Birthday of the Raja of Perlis", + "2047-05-22": "Isra' and Mi'raj (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (Second Day) (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-05-01": "Labor Day", + "2048-05-10": "Isra' and Mi'raj (estimated)", + "2048-05-11": "Isra' and Mi'raj (observed, estimated)", + "2048-05-17": "Birthday of the Raja of Perlis", + "2048-05-18": "Birthday of the Raja of Perlis (observed)", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (Second Day) (estimated)", + "2048-09-21": "Eid al-Adha (Second Day) (observed, estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-04-29": "Isra' and Mi'raj (estimated)", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Birthday of the Raja of Perlis", + "2049-05-18": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (Second Day) (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-04-19": "Isra' and Mi'raj (estimated)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-17": "Birthday of the Raja of Perlis", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (Second Day) (estimated)", + "2050-08-30": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_10.json b/snapshots/countries/MY_10.json new file mode 100644 index 000000000..97d55bab2 --- /dev/null +++ b/snapshots/countries/MY_10.json @@ -0,0 +1,1879 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-11": "Birthday of The Sultan of Selangor", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-02-28": "Thaipusam", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-11": "Birthday of The Sultan of Selangor", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-02-18": "Thaipusam", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-11": "Birthday of The Sultan of Selangor", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-09": "Thaipusam", + "1955-01-10": "Thaipusam (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-11": "Birthday of The Sultan of Selangor", + "1955-12-12": "Birthday of The Sultan of Selangor (observed)", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-02-26": "Thaipusam", + "1956-02-27": "Thaipusam (observed)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-11": "Birthday of The Sultan of Selangor", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-15": "Thaipusam", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-11": "Birthday of The Sultan of Selangor", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-05": "Thaipusam", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-11": "Birthday of The Sultan of Selangor", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-02-22": "Thaipusam", + "1959-02-23": "Thaipusam (observed)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-11": "Birthday of The Sultan of Selangor", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-13": "Thaipusam", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-11": "Birthday of The Sultan of Selangor", + "1960-12-12": "Birthday of The Sultan of Selangor (observed)", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-02": "Thaipusam", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-11": "Birthday of The Sultan of Selangor", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-19": "Thaipusam", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-11": "Birthday of The Sultan of Selangor", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-11": "Birthday of The Sultan of Selangor", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-28": "Thaipusam", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-11": "Birthday of The Sultan of Selangor", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-02-16": "Thaipusam", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-12-11": "Birthday of The Sultan of Selangor", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Thaipusam", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-11": "Birthday of The Sultan of Selangor", + "1966-12-12": "Birthday of The Sultan of Selangor (observed)", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-24": "Thaipusam", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-11": "Birthday of The Sultan of Selangor", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-02-13": "Thaipusam", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-11": "Birthday of The Sultan of Selangor", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-03": "Thaipusam", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-11-08": "Deepavali", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Birthday of The Sultan of Selangor; Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-21": "Thaipusam", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-11": "Birthday of The Sultan of Selangor", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-11": "Birthday of The Sultan of Selangor", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-02-29": "Thaipusam", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-11": "Birthday of The Sultan of Selangor", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-02-18": "Thaipusam", + "1973-02-19": "Thaipusam (observed)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-11": "Birthday of The Sultan of Selangor", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-11": "Birthday of The Sultan of Selangor", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-02-26": "Thaipusam", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-11": "Birthday of The Sultan of Selangor", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-02-15": "Thaipusam", + "1976-02-16": "Thaipusam (observed)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-11": "Birthday of The Sultan of Selangor", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-03-05": "Thaipusam", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-11": "Birthday of The Sultan of Selangor", + "1977-12-12": "Birthday of The Sultan of Selangor (observed)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-02-22": "Thaipusam", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-11": "Birthday of The Sultan of Selangor", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-11": "Birthday of The Sultan of Selangor", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-03-02": "Thaipusam", + "1980-03-03": "Thaipusam (observed)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-11": "Birthday of The Sultan of Selangor", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-19": "Thaipusam", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-12-11": "Birthday of The Sultan of Selangor", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-10": "Thaipusam", + "1982-01-11": "Thaipusam (observed)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-11-13": "Deepavali", + "1982-12-11": "Birthday of The Sultan of Selangor", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-02-28": "Thaipusam", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-11-03": "Deepavali", + "1983-12-11": "Birthday of The Sultan of Selangor", + "1983-12-12": "Birthday of The Sultan of Selangor (observed)", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-17": "Thaipusam", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-11": "Birthday of The Sultan of Selangor", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-03-06": "Thaipusam", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-11": "Birthday of The Sultan of Selangor", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-02-23": "Thaipusam", + "1986-02-24": "Thaipusam (observed)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-11": "Birthday of The Sultan of Selangor", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-11": "Birthday of The Sultan of Selangor", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-03": "Thaipusam", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-11": "Birthday of The Sultan of Selangor", + "1988-12-12": "Birthday of The Sultan of Selangor (observed)", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-02-21": "Thaipusam", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-11": "Birthday of The Sultan of Selangor", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-12": "Thaipusam", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-11": "Birthday of The Sultan of Selangor", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-01": "Thaipusam", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-11": "Birthday of The Sultan of Selangor", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-02-18": "Thaipusam", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-11": "Birthday of The Sultan of Selangor", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-08": "Thaipusam", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-11": "Birthday of The Sultan of Selangor", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-25": "Thaipusam", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-11": "Birthday of The Sultan of Selangor", + "1994-12-12": "Birthday of The Sultan of Selangor (observed)", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-14": "Thaipusam", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-11": "Birthday of The Sultan of Selangor", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-03-04": "Thaipusam", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-11": "Birthday of The Sultan of Selangor", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-02-22": "Thaipusam", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-29": "Deepavali", + "1997-12-11": "Birthday of The Sultan of Selangor", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-13": "Thaipusam", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-12-11": "Birthday of The Sultan of Selangor", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-03": "Thaipusam", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-11": "Birthday of The Sultan of Selangor", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-02-20": "Thaipusam", + "2000-02-21": "Thaipusam (observed)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-12-11": "Birthday of The Sultan of Selangor", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-11": "Birthday of The Sultan of Selangor", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-27": "Thaipusam", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-11": "Birthday of The Sultan of Selangor", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-16": "Thaipusam", + "2003-02-17": "Thaipusam (observed)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-11": "Birthday of The Sultan of Selangor", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-11": "Birthday of The Sultan of Selangor", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-02-23": "Thaipusam", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-11": "Birthday of The Sultan of Selangor", + "2005-12-12": "Birthday of The Sultan of Selangor (observed)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-02-13": "Thaipusam", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-11": "Birthday of The Sultan of Selangor", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-04": "Thaipusam", + "2007-03-05": "Thaipusam (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-11": "Birthday of The Sultan of Selangor", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-22": "Thaipusam", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-11": "Birthday of The Sultan of Selangor", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-11": "Thaipusam", + "2009-01-12": "Thaipusam (observed)", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-11": "Birthday of The Sultan of Selangor", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-01": "Thaipusam", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-11": "Birthday of The Sultan of Selangor", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-02-18": "Thaipusam", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-11": "Birthday of The Sultan of Selangor", + "2011-12-12": "Birthday of The Sultan of Selangor (observed)", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-08": "Thaipusam", + "2012-01-09": "Thaipusam (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-11": "Birthday of The Sultan of Selangor", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-02-25": "Thaipusam", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-11": "Birthday of The Sultan of Selangor", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-14": "Thaipusam", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-11": "Birthday of The Sultan of Selangor", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-03-05": "Thaipusam", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-11": "Birthday of The Sultan of Selangor", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-02-23": "Thaipusam", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-11": "Birthday of The Sultan of Selangor", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-13": "Birthday of The Sultan of Selangor (observed)", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-13": "Thaipusam", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-11": "Birthday of The Sultan of Selangor", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-31": "Thaipusam", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-11": "Birthday of The Sultan of Selangor", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Thaipusam", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-11": "Birthday of The Sultan of Selangor", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-02-08": "Thaipusam", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-11": "Birthday of The Sultan of Selangor", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-28": "Thaipusam", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-11": "Birthday of The Sultan of Selangor", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-11": "Birthday of The Sultan of Selangor", + "2022-12-12": "Birthday of The Sultan of Selangor (observed)", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-05": "Thaipusam", + "2023-02-06": "Thaipusam (observed)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-11": "Birthday of The Sultan of Selangor", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-25": "Thaipusam", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-11": "Birthday of The Sultan of Selangor", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-11": "Thaipusam", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-11": "Birthday of The Sultan of Selangor", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-01": "Thaipusam", + "2026-02-02": "Thaipusam (observed)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-11": "Birthday of The Sultan of Selangor", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-22": "Thaipusam", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-11": "Birthday of The Sultan of Selangor", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-11": "Thaipusam", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-11": "Birthday of The Sultan of Selangor", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-11": "Birthday of The Sultan of Selangor", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-02-17": "Thaipusam", + "2030-02-18": "Thaipusam (observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-12-11": "Birthday of The Sultan of Selangor", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-08": "Thaipusam", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-11": "Birthday of The Sultan of Selangor", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-11": "Birthday of The Sultan of Selangor", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-11": "Birthday of The Sultan of Selangor", + "2033-12-12": "Birthday of The Sultan of Selangor (observed)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-06": "Thaipusam (observed)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-11": "Birthday of The Sultan of Selangor", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-02-23": "Thaipusam", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-11": "Birthday of The Sultan of Selangor", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-13": "Thaipusam", + "2036-01-14": "Thaipusam (observed)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-11": "Birthday of The Sultan of Selangor", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-03-02": "Thaipusam", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-11": "Birthday of The Sultan of Selangor", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-19": "Thaipusam", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-11": "Birthday of The Sultan of Selangor", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-10": "Thaipusam (observed)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-11": "Birthday of The Sultan of Selangor", + "2039-12-12": "Birthday of The Sultan of Selangor (observed)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-02-27": "Thaipusam", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-11": "Birthday of The Sultan of Selangor", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-15": "Thaipusam", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-11": "Birthday of The Sultan of Selangor", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Thaipusam", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-11": "Birthday of The Sultan of Selangor", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-02-24": "Thaipusam", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-11": "Birthday of The Sultan of Selangor", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-02-15": "Thaipusam (observed)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-11": "Birthday of The Sultan of Selangor", + "2044-12-12": "Birthday of The Sultan of Selangor (observed)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-03-04": "Thaipusam", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-11": "Birthday of The Sultan of Selangor", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-11": "Birthday of The Sultan of Selangor", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-11": "Birthday of The Sultan of Selangor", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-28": "Thaipusam", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-11": "Birthday of The Sultan of Selangor", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-11": "Birthday of The Sultan of Selangor", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-08": "Thaipusam", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-11": "Birthday of The Sultan of Selangor", + "2050-12-12": "Birthday of The Sultan of Selangor (observed)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_11.json b/snapshots/countries/MY_11.json new file mode 100644 index 000000000..2e094fa61 --- /dev/null +++ b/snapshots/countries/MY_11.json @@ -0,0 +1,1989 @@ +{ + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-30": "Arafat Day (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (Second Day) (estimated)", + "1952-09-02": "Arafat Day (observed, estimated)", + "1952-11-15": "Deepavali", + "1952-11-16": "Deepavali (observed)", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-25": "Christmas Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (observed, estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-05-31": "Nuzul Al-Quran Day (observed, estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (observed, estimated)", + "1953-08-19": "Arafat Day (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (Second Day) (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1954-08-08": "Arafat Day (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (Second Day) (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1954-12-26": "Christmas Day (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1955-07-29": "Arafat Day (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (Second Day) (estimated)", + "1955-08-01": "Eid al-Adha (observed, estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-10-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1955-11-12": "Deepavali", + "1955-11-13": "Deepavali (observed)", + "1955-12-25": "Christmas Day", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-04-29": "Nuzul Al-Quran Day (observed, estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-13": "Eid al-Fitr (Second Day) (observed, estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1956-07-18": "Arafat Day (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (Second Day) (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1957-07-07": "Arafat Day (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (Second Day) (estimated)", + "1957-08-31": "National Day", + "1957-09-01": "National Day (observed)", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-05-04": "Vesak Day (observed, estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1958-06-26": "Arafat Day (estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (Second Day) (estimated)", + "1958-06-29": "Eid al-Adha (Second Day) (observed, estimated)", + "1958-08-31": "National Day", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-12-25": "Christmas Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-04-12": "Eid al-Fitr (Second Day) (observed, estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1959-06-16": "Arafat Day (estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (Second Day) (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-03": "Arafat Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (Second Day) (estimated)", + "1960-06-06": "Birthday of HM Yang di-Pertuan Agong (observed); Eid al-Adha (observed, estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-09-04": "Prophet Muhammad's Birthday (observed, estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-05": "Nuzul Al-Quran Day (observed, estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (observed, estimated)", + "1961-05-24": "Arafat Day (estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (Second Day) (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-13": "Arafat Day (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (Second Day) (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-01-27": "Chinese New Year (Second Day) (observed, estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-05-02": "Arafat Day (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (Second Day) (estimated)", + "1963-05-05": "Eid al-Adha (Second Day) (observed, estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-09-01": "National Day (observed)", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-16": "Eid al-Fitr (Second Day) (observed, estimated)", + "1964-04-21": "Arafat Day (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (Second Day) (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-10": "Arafat Day (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (Second Day) (estimated)", + "1965-04-13": "Arafat Day (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-05-16": "Vesak Day (observed, estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-07-11": "Prophet Muhammad's Birthday (observed, estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1965-12-26": "Christmas Day (observed)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-09": "Nuzul Al-Quran Day (observed, estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "1966-03-31": "Arafat Day (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (Second Day) (estimated)", + "1966-04-03": "Eid al-Adha (Second Day) (observed, estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-20": "Arafat Day (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (Second Day) (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated)", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-08": "Arafat Day (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (Second Day) (estimated)", + "1968-03-11": "Eid al-Adha (observed, estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-05-12": "Vesak Day (observed, estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-06-09": "Prophet Muhammad's Birthday (observed, estimated)", + "1968-08-31": "National Day", + "1968-09-01": "National Day (observed)", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-08": "Nuzul Al-Quran Day (observed, estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-26": "Arafat Day (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (Second Day) (estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1969-08-31": "National Day", + "1969-11-08": "Deepavali", + "1969-11-09": "Deepavali (observed)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "1970-02-15": "Arafat Day (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (Second Day) (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-05": "Arafat Day (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (Second Day) (estimated)", + "1971-02-08": "Eid al-Adha (observed, estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-11-21": "Eid al-Fitr (Second Day) (observed, estimated)", + "1971-12-25": "Christmas Day", + "1971-12-26": "Christmas Day (observed)", + "1972-01-25": "Arafat Day (estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (Second Day) (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-05-28": "Vesak Day (observed, estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-05": "Deepavali (observed)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-13": "Arafat Day (estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (Second Day) (estimated)", + "1973-01-16": "Arafat Day (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-14": "Nuzul Al-Quran Day (observed, estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-02": "Arafat Day (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (Second Day) (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1974-08-31": "National Day", + "1974-09-01": "National Day (observed)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-23": "Arafat Day (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (Second Day) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1975-08-31": "National Day", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-11-02": "Deepavali (observed)", + "1975-12-12": "Arafat Day (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (Second Day) (estimated)", + "1975-12-15": "Eid al-Adha (observed, estimated)", + "1975-12-25": "Christmas Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-02": "Labor Day (observed)", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-12": "Nuzul Al-Quran Day (observed, estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-09-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "1976-11-19": "Deepavali", + "1976-11-30": "Arafat Day (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (Second Day) (estimated)", + "1976-12-25": "Christmas Day", + "1976-12-26": "Christmas Day (observed)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-02-20": "Chinese New Year (Second Day) (observed, estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-20": "Arafat Day (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (Second Day) (estimated)", + "1977-12-25": "Christmas Day", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-10-30": "Deepavali", + "1978-11-09": "Arafat Day (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (Second Day) (estimated)", + "1978-11-12": "Eid al-Adha (Second Day) (observed, estimated)", + "1978-12-25": "Christmas Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-30": "Arafat Day (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (Second Day) (estimated)", + "1979-11-18": "Deepavali", + "1979-12-25": "Christmas Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (observed, estimated)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-10-18": "Arafat Day (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (Second Day) (estimated)", + "1980-10-21": "Arafat Day (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-07-19": "Nuzul Al-Quran Day (observed, estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-07": "Arafat Day (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (Second Day) (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", + "1982-05-02": "Labor Day (observed)", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-09": "Vesak Day (observed, estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-26": "Arafat Day (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (Second Day) (estimated)", + "1982-11-13": "Deepavali", + "1982-11-14": "Deepavali (observed)", + "1982-12-25": "Christmas Day", + "1982-12-26": "Christmas Day (observed)", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-05-01": "Labor Day", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-16": "Arafat Day (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (Second Day) (estimated)", + "1983-09-19": "Eid al-Adha (observed, estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-17": "Nuzul Al-Quran Day (observed, estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-04": "Arafat Day (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (Second Day) (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-05": "Vesak Day (observed, estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-25": "Arafat Day (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (Second Day) (estimated)", + "1985-08-31": "National Day", + "1985-09-01": "National Day (observed)", + "1985-11-10": "Deepavali", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-12-25": "Christmas Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1986-08-14": "Arafat Day (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (Second Day) (estimated)", + "1986-08-17": "Eid al-Adha (Second Day) (observed, estimated)", + "1986-08-31": "National Day", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1987-08-03": "Arafat Day (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (Second Day) (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-05-01": "Labor Day", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1988-07-22": "Arafat Day (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (Second Day) (estimated)", + "1988-07-25": "Eid al-Adha (observed, estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-10-23": "Prophet Muhammad's Birthday (observed, estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1989-07-12": "Arafat Day (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (Second Day) (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (observed, estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1990-07-01": "Arafat Day (estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (Second Day) (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-02-17": "Chinese New Year (Second Day) (observed, estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1991-06-21": "Arafat Day (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (Second Day) (estimated)", + "1991-06-24": "Eid al-Adha (observed, estimated)", + "1991-08-31": "National Day", + "1991-09-01": "National Day (observed)", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-03-22": "Nuzul Al-Quran Day (observed, estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1992-06-10": "Arafat Day (estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (Second Day) (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-10-25": "Deepavali (observed)", + "1992-12-25": "Christmas Day", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (observed, estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-02": "Labor Day (observed)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-30": "Arafat Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (Second Day) (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1993-12-26": "Christmas Day (observed)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-05-01": "Labor Day", + "1994-05-19": "Arafat Day (estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (Second Day) (estimated)", + "1994-05-22": "Eid al-Adha (Second Day) (observed, estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-08": "Arafat Day (estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (Second Day) (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-26": "Arafat Day (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (Second Day) (estimated)", + "1996-04-29": "Eid al-Adha (observed, estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-07-28": "Prophet Muhammad's Birthday (observed, estimated)", + "1996-08-31": "National Day", + "1996-09-01": "National Day (observed)", + "1996-11-09": "Deepavali", + "1996-11-10": "Deepavali (observed)", + "1996-12-25": "Christmas Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Chinese New Year (Second Day) (observed, estimated); Eid al-Fitr (observed, estimated)", + "1997-04-16": "Arafat Day (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (Second Day) (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-06": "Arafat Day (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (Second Day) (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-26": "Arafat Day (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (Second Day) (estimated)", + "1999-03-29": "Eid al-Adha (observed, estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-02": "Labor Day (observed)", + "1999-05-29": "Vesak Day (estimated)", + "1999-05-30": "Vesak Day (observed, estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-06-27": "Prophet Muhammad's Birthday (observed, estimated)", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-07": "Deepavali (observed)", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "1999-12-26": "Christmas Day (observed); Nuzul Al-Quran Day (observed, estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (observed, estimated)", + "2000-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2000-03-05": "Anniversary of the Installation of the Sultan of Terengganu (observed)", + "2000-03-15": "Arafat Day (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (Second Day) (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-04-26": "Birthday of the Sultan of Terengganu", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2001-03-05": "Arafat Day", + "2001-03-06": "Eid al-Adha", + "2001-03-07": "Eid al-Adha (Second Day)", + "2001-03-26": "Islamic New Year", + "2001-04-26": "Birthday of the Sultan of Terengganu", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-22": "Arafat Day", + "2002-02-23": "Eid al-Adha", + "2002-02-24": "Eid al-Adha (Second Day)", + "2002-02-25": "Eid al-Adha (observed)", + "2002-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2002-03-15": "Islamic New Year", + "2002-04-26": "Birthday of the Sultan of Terengganu", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2002-08-31": "National Day", + "2002-09-01": "National Day (observed)", + "2002-11-03": "Deepavali", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-08": "Eid al-Fitr (Second Day) (observed)", + "2002-12-25": "Christmas Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (observed)", + "2003-02-11": "Arafat Day", + "2003-02-12": "Eid al-Adha", + "2003-02-13": "Eid al-Adha (Second Day)", + "2003-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2003-03-05": "Islamic New Year", + "2003-04-26": "Birthday of the Sultan of Terengganu", + "2003-04-27": "Birthday of the Sultan of Terengganu (observed)", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2003-08-31": "National Day", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-01": "Arafat Day", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Eid al-Adha (Second Day)", + "2004-02-22": "Islamic New Year", + "2004-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2004-04-26": "Birthday of the Sultan of Terengganu", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Labor Day (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-12-25": "Christmas Day", + "2004-12-26": "Christmas Day (observed)", + "2005-01-20": "Arafat Day", + "2005-01-21": "Eid al-Adha", + "2005-01-22": "Eid al-Adha (Second Day)", + "2005-01-23": "Eid al-Adha (Second Day) (observed)", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-04-26": "Birthday of the Sultan of Terengganu", + "2005-05-01": "Labor Day", + "2005-05-22": "Vesak Day", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2006-01-09": "Arafat Day", + "2006-01-10": "Eid al-Adha", + "2006-01-11": "Eid al-Adha (Second Day)", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2006-03-05": "Anniversary of the Installation of the Sultan of Terengganu (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-04-26": "Birthday of the Sultan of Terengganu", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-06-04": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-22": "Deepavali (observed)", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-30": "Arafat Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "Eid al-Adha (Second Day)", + "2007-01-02": "Arafat Day (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-04-01": "Prophet Muhammad's Birthday (observed)", + "2007-04-26": "Birthday of the Sultan of Terengganu", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-09-30": "Nuzul Al-Quran Day (observed)", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (observed)", + "2007-11-08": "Deepavali", + "2007-12-19": "Arafat Day", + "2007-12-20": "Eid al-Adha", + "2007-12-21": "Eid al-Adha (Second Day)", + "2007-12-25": "Christmas Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-04-26": "Birthday of the Sultan of Terengganu", + "2008-04-27": "Birthday of the Sultan of Terengganu (observed)", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2008-08-31": "National Day", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-08": "Arafat Day", + "2008-12-09": "Eid al-Adha", + "2008-12-10": "Eid al-Adha (Second Day)", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-04-26": "Birthday of the Sultan of Terengganu", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-05-10": "Vesak Day (observed)", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-10-17": "Deepavali", + "2009-10-18": "Deepavali (observed)", + "2009-11-27": "Arafat Day", + "2009-11-28": "Eid al-Adha", + "2009-11-29": "Eid al-Adha (Second Day)", + "2009-11-30": "Eid al-Adha (observed)", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2010-04-26": "Birthday of the Sultan of Terengganu", + "2010-05-01": "Labor Day", + "2010-05-02": "Labor Day (observed)", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-06-06": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-12": "Eid al-Fitr (Second Day) (observed)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-16": "Arafat Day", + "2010-11-17": "Eid al-Adha", + "2010-11-18": "Eid al-Adha (Second Day)", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2010-12-26": "Christmas Day (observed)", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2011-04-26": "Birthday of the Sultan of Terengganu", + "2011-05-01": "Labor Day", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-06": "Arafat Day", + "2011-11-07": "Eid al-Adha", + "2011-11-08": "Eid al-Adha (Second Day)", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2012-04-26": "Birthday of the Sultan of Terengganu", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-05-06": "Vesak Day (observed)", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-06-03": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-10-25": "Arafat Day", + "2012-10-26": "Eid al-Adha", + "2012-10-27": "Eid al-Adha (Second Day)", + "2012-10-28": "Eid al-Adha (Second Day) (observed)", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2013-04-26": "Birthday of the Sultan of Terengganu", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-06-02": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-01": "National Day (observed)", + "2013-09-16": "Malaysia Day", + "2013-10-14": "Arafat Day", + "2013-10-15": "Eid al-Adha", + "2013-10-16": "Eid al-Adha (Second Day)", + "2013-11-02": "Deepavali", + "2013-11-03": "Deepavali (observed)", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-02-02": "Chinese New Year (Second Day) (observed)", + "2014-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2014-04-26": "Birthday of the Sultan of Terengganu", + "2014-04-27": "Birthday of the Sultan of Terengganu (observed)", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-06-08": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-16": "Malaysia Day", + "2014-10-04": "Arafat Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (Second Day)", + "2014-10-07": "Arafat Day (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-01-04": "Prophet Muhammad's Birthday (observed)", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2015-04-26": "Birthday of the Sultan of Terengganu", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-06-07": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-05": "Nuzul Al-Quran Day (observed)", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-07-19": "Eid al-Fitr (Second Day) (observed)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-23": "Arafat Day", + "2015-09-24": "Eid al-Adha", + "2015-09-25": "Eid al-Adha (Second Day)", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2016-04-26": "Birthday of the Sultan of Terengganu", + "2016-05-01": "Labor Day", + "2016-05-21": "Vesak Day", + "2016-05-22": "Vesak Day (observed)", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-05": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-11": "Arafat Day", + "2016-09-12": "Eid al-Adha", + "2016-09-13": "Eid al-Adha (Second Day)", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-10-30": "Deepavali (observed)", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (observed)", + "2017-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2017-03-05": "Anniversary of the Installation of the Sultan of Terengganu (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-04-26": "Birthday of the Sultan of Terengganu", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-08-31": "Arafat Day; National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-02": "Eid al-Adha (Second Day)", + "2017-09-03": "Eid al-Adha (Second Day) (observed)", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2017-09-16": "Malaysia Day", + "2017-09-17": "Malaysia Day (observed)", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-02-18": "Chinese New Year (Second Day) (observed)", + "2018-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2018-04-26": "Birthday of the Sultan of Terengganu", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-03": "Nuzul Al-Quran Day (observed)", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-06-17": "Eid al-Fitr (Second Day) (observed)", + "2018-08-21": "Arafat Day", + "2018-08-22": "Eid al-Adha", + "2018-08-23": "Eid al-Adha (Second Day)", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2019-04-26": "Birthday of the Sultan of Terengganu", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-10": "Arafat Day", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (Second Day)", + "2019-08-13": "Arafat Day (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-02": "National Day (observed)", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-11-10": "Prophet Muhammad's Birthday (observed)", + "2019-12-25": "Christmas Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (observed)", + "2020-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2020-03-22": "Isra' and Mi'raj", + "2020-04-26": "Birthday of the Sultan of Terengganu", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-30": "Arafat Day", + "2020-07-31": "Eid al-Adha", + "2020-08-01": "Eid al-Adha (Second Day)", + "2020-08-02": "Eid al-Adha (Second Day) (observed)", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-11-15": "Deepavali (observed)", + "2020-12-25": "Christmas Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-02-14": "Chinese New Year (Second Day) (observed)", + "2021-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2021-03-11": "Isra' and Mi'raj", + "2021-04-26": "Birthday of the Sultan of Terengganu", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-02": "Labor Day (observed)", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-19": "Arafat Day", + "2021-07-20": "Eid al-Adha", + "2021-07-21": "Eid al-Adha (Second Day)", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-25": "Christmas Day", + "2021-12-26": "Christmas Day (observed)", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-03-01": "Isra' and Mi'raj", + "2022-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-04-26": "Birthday of the Sultan of Terengganu", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-09": "Arafat Day", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (Second Day)", + "2022-07-12": "Arafat Day (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-02-18": "Isra' and Mi'raj", + "2023-02-19": "Isra' and Mi'raj (observed)", + "2023-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2023-03-05": "Anniversary of the Installation of the Sultan of Terengganu (observed)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-09": "Nuzul Al-Quran Day (observed)", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (observed)", + "2023-04-26": "Birthday of the Sultan of Terengganu", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-28": "Arafat Day", + "2023-06-29": "Eid al-Adha", + "2023-06-30": "Eid al-Adha (Second Day)", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-17": "Malaysia Day (observed)", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-12-25": "Christmas Day", + "2024-02-08": "Isra' and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (observed)", + "2024-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-04-26": "Birthday of the Sultan of Terengganu", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-16": "Arafat Day", + "2024-06-17": "Eid al-Adha", + "2024-06-18": "Eid al-Adha (Second Day)", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-01": "National Day (observed)", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-27": "Isra' and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-26": "Birthday of the Sultan of Terengganu", + "2025-04-27": "Birthday of the Sultan of Terengganu (observed)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-05": "Arafat Day (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (Second Day) (estimated)", + "2025-06-08": "Eid al-Adha (Second Day) (observed, estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-16": "Isra' and Mi'raj (estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-03-22": "Eid al-Fitr (Second Day) (observed, estimated)", + "2026-04-26": "Birthday of the Sultan of Terengganu", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-26": "Arafat Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (Second Day) (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-11-08": "Deepavali (observed)", + "2026-12-25": "Christmas Day", + "2027-01-05": "Isra' and Mi'raj (estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-04-26": "Birthday of the Sultan of Terengganu", + "2027-05-01": "Labor Day", + "2027-05-02": "Labor Day (observed)", + "2027-05-15": "Arafat Day (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (Second Day) (estimated)", + "2027-05-18": "Arafat Day (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-15": "Prophet Muhammad's Birthday (observed, estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day; Isra' and Mi'raj (estimated)", + "2027-12-26": "Christmas Day (observed); Isra' and Mi'raj (observed, estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (observed, estimated)", + "2028-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2028-03-05": "Anniversary of the Installation of the Sultan of Terengganu (observed)", + "2028-04-26": "Birthday of the Sultan of Terengganu", + "2028-05-01": "Labor Day", + "2028-05-04": "Arafat Day (estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (Second Day) (estimated)", + "2028-05-07": "Eid al-Adha (Second Day) (observed, estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-09-17": "Malaysia Day (observed)", + "2028-11-14": "Deepavali", + "2028-12-14": "Isra' and Mi'raj (estimated)", + "2028-12-25": "Christmas Day", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2029-04-23": "Arafat Day (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (Second Day) (estimated)", + "2029-04-26": "Birthday of the Sultan of Terengganu", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-11-04": "Deepavali", + "2029-12-03": "Isra' and Mi'raj (estimated)", + "2029-12-25": "Christmas Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2030-04-12": "Arafat Day (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (Second Day) (estimated)", + "2030-04-15": "Eid al-Adha (observed, estimated)", + "2030-04-26": "Birthday of the Sultan of Terengganu", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-07-14": "Prophet Muhammad's Birthday (observed, estimated)", + "2030-08-31": "National Day", + "2030-09-01": "National Day (observed)", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-11-23": "Isra' and Mi'raj (estimated)", + "2030-11-24": "Isra' and Mi'raj (observed, estimated)", + "2030-12-25": "Christmas Day", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-12": "Nuzul Al-Quran Day (observed, estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-01-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "2031-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2031-04-01": "Arafat Day (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (Second Day) (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-04-26": "Birthday of the Sultan of Terengganu", + "2031-04-27": "Birthday of the Sultan of Terengganu (observed)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-16": "Malaysia Day", + "2031-11-12": "Isra' and Mi'raj (estimated)", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2032-03-21": "Arafat Day (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (Second Day) (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-04-26": "Birthday of the Sultan of Terengganu", + "2032-05-01": "Labor Day", + "2032-05-02": "Labor Day (observed)", + "2032-05-23": "Vesak Day (estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali; Isra' and Mi'raj (estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2032-12-26": "Christmas Day (observed)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2033-03-10": "Arafat Day (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (Second Day) (estimated)", + "2033-03-13": "Eid al-Adha (Second Day) (observed, estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-04-26": "Birthday of the Sultan of Terengganu", + "2033-05-01": "Labor Day", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali; Isra' and Mi'raj (estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Eid al-Fitr (Second Day) (observed, estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-28": "Arafat Day (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (Second Day) (estimated)", + "2034-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2034-03-05": "Anniversary of the Installation of the Sultan of Terengganu (observed)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-04-26": "Birthday of the Sultan of Terengganu", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-09-17": "Malaysia Day (observed)", + "2034-10-10": "Isra' and Mi'raj (estimated)", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-17": "Arafat Day (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (Second Day) (estimated)", + "2035-02-20": "Arafat Day (observed, estimated)", + "2035-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2035-03-11": "Islamic New Year (estimated)", + "2035-04-26": "Birthday of the Sultan of Terengganu", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-29": "Isra' and Mi'raj (estimated)", + "2035-09-30": "Isra' and Mi'raj (observed, estimated)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-11-18": "Nuzul Al-Quran Day (observed, estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-06": "Arafat Day (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (Second Day) (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2036-04-26": "Birthday of the Sultan of Terengganu", + "2036-04-27": "Birthday of the Sultan of Terengganu (observed)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-11": "Vesak Day (observed, estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-16": "Malaysia Day", + "2036-09-18": "Isra' and Mi'raj (estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-25": "Arafat Day (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (Second Day) (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2037-04-26": "Birthday of the Sultan of Terengganu", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-07": "Isra' and Mi'raj (estimated)", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-12-25": "Christmas Day", + "2038-01-15": "Arafat Day (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (Second Day) (estimated)", + "2038-01-18": "Eid al-Adha (observed, estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-04-18": "Prophet Muhammad's Birthday (observed, estimated)", + "2038-04-26": "Birthday of the Sultan of Terengganu", + "2038-05-01": "Labor Day", + "2038-05-02": "Labor Day (observed)", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-28": "Isra' and Mi'raj (estimated)", + "2038-08-29": "Isra' and Mi'raj (observed, estimated)", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-17": "Nuzul Al-Quran Day (observed, estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-10-31": "Eid al-Fitr (Second Day) (observed, estimated)", + "2038-12-25": "Christmas Day", + "2038-12-26": "Christmas Day (observed)", + "2039-01-04": "Arafat Day (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (Second Day) (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-04-26": "Birthday of the Sultan of Terengganu", + "2039-05-01": "Labor Day", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-08": "Vesak Day (observed, estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-17": "Isra' and Mi'raj (estimated)", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Arafat Day (estimated); Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (Second Day) (estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-04-26": "Birthday of the Sultan of Terengganu", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-05": "Isra' and Mi'raj (estimated)", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-11-03": "Deepavali", + "2040-11-04": "Deepavali (observed)", + "2040-12-13": "Arafat Day (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (Second Day) (estimated)", + "2040-12-16": "Eid al-Adha (Second Day) (observed, estimated)", + "2040-12-25": "Christmas Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-03": "Chinese New Year (Second Day) (observed, estimated)", + "2041-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-04-26": "Birthday of the Sultan of Terengganu", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-07-25": "Isra' and Mi'raj (estimated)", + "2041-08-31": "National Day", + "2041-09-01": "National Day (observed)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-03": "Arafat Day (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (Second Day) (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Prophet Muhammad's Birthday (estimated)", + "2042-04-26": "Birthday of the Sultan of Terengganu", + "2042-04-27": "Birthday of the Sultan of Terengganu (observed)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-07-15": "Isra' and Mi'raj (estimated)", + "2042-08-31": "National Day", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-22": "Arafat Day (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (Second Day) (estimated)", + "2042-11-25": "Arafat Day (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2043-04-26": "Birthday of the Sultan of Terengganu", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-05-24": "Vesak Day (observed, estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-07-04": "Isra' and Mi'raj (estimated)", + "2043-07-05": "Isra' and Mi'raj (observed, estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-23": "Nuzul Al-Quran Day (observed, estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-01": "Deepavali (observed)", + "2043-11-11": "Arafat Day (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (Second Day) (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2044-04-26": "Birthday of the Sultan of Terengganu", + "2044-05-01": "Labor Day", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-06-23": "Isra' and Mi'raj (estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-30": "Arafat Day (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (Second Day) (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-02-19": "Chinese New Year (Second Day) (observed, estimated)", + "2045-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2045-03-05": "Anniversary of the Installation of the Sultan of Terengganu (observed)", + "2045-04-26": "Birthday of the Sultan of Terengganu", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-06-13": "Isra' and Mi'raj (estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-09-17": "Malaysia Day (observed)", + "2045-10-20": "Arafat Day (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (Second Day) (estimated)", + "2045-10-23": "Eid al-Adha (observed, estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2046-04-26": "Birthday of the Sultan of Terengganu", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-06-02": "Isra' and Mi'raj (estimated)", + "2046-06-03": "Isra' and Mi'raj (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-07-22": "Nuzul Al-Quran Day (observed, estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-05": "Eid al-Fitr (Second Day) (observed, estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-10-09": "Arafat Day (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (Second Day) (estimated)", + "2046-10-27": "Deepavali", + "2046-10-28": "Deepavali (observed)", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (observed, estimated)", + "2047-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2047-04-26": "Birthday of the Sultan of Terengganu", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Isra' and Mi'raj (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-01": "National Day (observed)", + "2047-09-16": "Malaysia Day", + "2047-09-29": "Arafat Day (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (Second Day) (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "2048-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2048-04-26": "Birthday of the Sultan of Terengganu", + "2048-05-01": "Labor Day", + "2048-05-10": "Isra' and Mi'raj (estimated)", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-18": "Arafat Day (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (Second Day) (estimated)", + "2048-09-21": "Eid al-Adha (observed, estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2049-04-26": "Birthday of the Sultan of Terengganu", + "2049-04-29": "Isra' and Mi'raj (estimated)", + "2049-05-01": "Labor Day", + "2049-05-02": "Labor Day (observed)", + "2049-05-16": "Vesak Day (estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-07": "Arafat Day (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (Second Day) (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2049-12-26": "Christmas Day (observed)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-03-04": "Anniversary of the Installation of the Sultan of Terengganu", + "2050-04-19": "Isra' and Mi'raj (estimated)", + "2050-04-26": "Birthday of the Sultan of Terengganu", + "2050-05-01": "Labor Day", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-27": "Arafat Day (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (Second Day) (estimated)", + "2050-08-30": "Arafat Day (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-13": "Deepavali (observed)", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-11-27": "Prophet Muhammad's Birthday (observed, estimated)", + "2050-12-25": "Christmas Day" +} diff --git a/snapshots/countries/MY_12.json b/snapshots/countries/MY_12.json new file mode 100644 index 000000000..dbc3964ed --- /dev/null +++ b/snapshots/countries/MY_12.json @@ -0,0 +1,1959 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-04-11": "Good Friday", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-30": "Pesta Kaamatan", + "1952-05-31": "Pesta Kaamatan", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-10-04": "Birthday of the Governor of Sabah", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-04-03": "Good Friday", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Pesta Kaamatan", + "1953-05-31": "Pesta Kaamatan", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-10-03": "Birthday of the Governor of Sabah", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-04-16": "Good Friday", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-30": "Pesta Kaamatan", + "1954-05-31": "Pesta Kaamatan", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-02": "Birthday of the Governor of Sabah", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-04-08": "Good Friday", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-05-30": "Pesta Kaamatan", + "1955-05-31": "Pesta Kaamatan", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-01": "Birthday of the Governor of Sabah", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-03-30": "Good Friday", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-05-30": "Pesta Kaamatan", + "1956-05-31": "Pesta Kaamatan", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-06": "Birthday of the Governor of Sabah", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-04-19": "Good Friday", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-05-30": "Pesta Kaamatan", + "1957-05-31": "Pesta Kaamatan", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-05": "Birthday of the Governor of Sabah", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-04": "Good Friday", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-05-30": "Pesta Kaamatan", + "1958-05-31": "Pesta Kaamatan", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-10-04": "Birthday of the Governor of Sabah", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-03-27": "Good Friday", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-05-30": "Pesta Kaamatan", + "1959-05-31": "Pesta Kaamatan", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-03": "Birthday of the Governor of Sabah", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-04-15": "Good Friday", + "1960-05-10": "Vesak Day (estimated)", + "1960-05-30": "Pesta Kaamatan", + "1960-05-31": "Pesta Kaamatan", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-10-01": "Birthday of the Governor of Sabah", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-03-31": "Good Friday", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-05-30": "Pesta Kaamatan", + "1961-05-31": "Pesta Kaamatan", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-10-07": "Birthday of the Governor of Sabah", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-04-20": "Good Friday", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-05-30": "Pesta Kaamatan", + "1962-05-31": "Pesta Kaamatan", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-06": "Birthday of the Governor of Sabah", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-04-12": "Good Friday", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-30": "Pesta Kaamatan", + "1963-05-31": "Pesta Kaamatan", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-10-05": "Birthday of the Governor of Sabah", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-03-27": "Good Friday", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-05-30": "Pesta Kaamatan", + "1964-05-31": "Pesta Kaamatan", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-10-03": "Birthday of the Governor of Sabah", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-04-16": "Good Friday", + "1965-05-15": "Vesak Day (estimated)", + "1965-05-30": "Pesta Kaamatan", + "1965-05-31": "Pesta Kaamatan", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-02": "Birthday of the Governor of Sabah", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-08": "Good Friday", + "1966-05-05": "Vesak Day (estimated)", + "1966-05-30": "Pesta Kaamatan", + "1966-05-31": "Pesta Kaamatan", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-10-01": "Birthday of the Governor of Sabah", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-24": "Good Friday", + "1967-05-23": "Vesak Day (estimated)", + "1967-05-30": "Pesta Kaamatan", + "1967-05-31": "Pesta Kaamatan", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-07": "Birthday of the Governor of Sabah", + "1967-10-31": "Deepavali", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-04-12": "Good Friday", + "1968-05-11": "Vesak Day (estimated)", + "1968-05-30": "Pesta Kaamatan", + "1968-05-31": "Pesta Kaamatan", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-10-05": "Birthday of the Governor of Sabah", + "1968-11-18": "Deepavali", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-04-04": "Good Friday", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-05-30": "Pesta Kaamatan", + "1969-05-31": "Pesta Kaamatan", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-10-04": "Birthday of the Governor of Sabah", + "1969-11-08": "Deepavali", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-03-27": "Good Friday", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-05-30": "Pesta Kaamatan", + "1970-05-31": "Pesta Kaamatan", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-03": "Birthday of the Governor of Sabah", + "1970-10-28": "Deepavali", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-04-09": "Good Friday", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-05-30": "Pesta Kaamatan", + "1971-05-31": "Pesta Kaamatan", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-10-02": "Birthday of the Governor of Sabah", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-03-31": "Good Friday", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-05-30": "Pesta Kaamatan", + "1972-05-31": "Pesta Kaamatan", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-07": "Birthday of the Governor of Sabah", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-04-20": "Good Friday", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-05-30": "Pesta Kaamatan", + "1973-05-31": "Pesta Kaamatan", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-10-06": "Birthday of the Governor of Sabah", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-04-12": "Good Friday", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-05-30": "Pesta Kaamatan", + "1974-05-31": "Pesta Kaamatan", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-10-05": "Birthday of the Governor of Sabah", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-03-28": "Good Friday", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-05-30": "Pesta Kaamatan", + "1975-05-31": "Pesta Kaamatan", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-10-04": "Birthday of the Governor of Sabah", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-04-16": "Good Friday", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-05-30": "Pesta Kaamatan", + "1976-05-31": "Pesta Kaamatan", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-10-02": "Birthday of the Governor of Sabah", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-04-08": "Good Friday", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-05-30": "Pesta Kaamatan", + "1977-05-31": "Pesta Kaamatan", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-10-01": "Birthday of the Governor of Sabah", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-03-24": "Good Friday", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-05-30": "Pesta Kaamatan", + "1978-05-31": "Pesta Kaamatan", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-07": "Birthday of the Governor of Sabah", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-04-13": "Good Friday", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-05-30": "Pesta Kaamatan", + "1979-05-31": "Pesta Kaamatan", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-06": "Birthday of the Governor of Sabah", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-04-04": "Good Friday", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-05-30": "Pesta Kaamatan", + "1980-05-31": "Pesta Kaamatan", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-04": "Birthday of the Governor of Sabah", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-04-17": "Good Friday", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-30": "Pesta Kaamatan", + "1981-05-31": "Pesta Kaamatan", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-03": "Birthday of the Governor of Sabah", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-04-09": "Good Friday", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-30": "Pesta Kaamatan", + "1982-05-31": "Pesta Kaamatan", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-10-02": "Birthday of the Governor of Sabah", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-04-01": "Good Friday", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-05-30": "Pesta Kaamatan", + "1983-05-31": "Pesta Kaamatan", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-10-01": "Birthday of the Governor of Sabah", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-04-20": "Good Friday", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-30": "Pesta Kaamatan", + "1984-05-31": "Pesta Kaamatan", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-06": "Birthday of the Governor of Sabah", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-04-05": "Good Friday", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-30": "Pesta Kaamatan", + "1985-05-31": "Pesta Kaamatan", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-10-05": "Birthday of the Governor of Sabah", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-03-28": "Good Friday", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-30": "Pesta Kaamatan", + "1986-05-31": "Pesta Kaamatan", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-04": "Birthday of the Governor of Sabah", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-04-17": "Good Friday", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-05-30": "Pesta Kaamatan", + "1987-05-31": "Pesta Kaamatan", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-10-03": "Birthday of the Governor of Sabah", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-04-01": "Good Friday", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Pesta Kaamatan; Vesak Day (estimated)", + "1988-05-31": "Pesta Kaamatan", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-01": "Birthday of the Governor of Sabah", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-03-24": "Good Friday", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-05-30": "Pesta Kaamatan", + "1989-05-31": "Pesta Kaamatan", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-07": "Birthday of the Governor of Sabah", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-04-13": "Good Friday", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-05-30": "Pesta Kaamatan", + "1990-05-31": "Pesta Kaamatan", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-10-06": "Birthday of the Governor of Sabah", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-29": "Good Friday", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-05-30": "Pesta Kaamatan", + "1991-05-31": "Pesta Kaamatan", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-10-05": "Birthday of the Governor of Sabah", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-04-17": "Good Friday", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-05-30": "Pesta Kaamatan", + "1992-05-31": "Pesta Kaamatan", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-03": "Birthday of the Governor of Sabah", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-04-09": "Good Friday", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-30": "Pesta Kaamatan", + "1993-05-31": "Eid al-Adha (estimated); Pesta Kaamatan", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-10-02": "Birthday of the Governor of Sabah", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-04-01": "Good Friday", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-05-30": "Pesta Kaamatan", + "1994-05-31": "Pesta Kaamatan", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-10-01": "Birthday of the Governor of Sabah", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-04-14": "Good Friday", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated); Pesta Kaamatan", + "1995-05-31": "Pesta Kaamatan", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-10-07": "Birthday of the Governor of Sabah", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-05": "Good Friday", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-05-30": "Pesta Kaamatan", + "1996-05-31": "Pesta Kaamatan", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-10-05": "Birthday of the Governor of Sabah", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-03-28": "Good Friday", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-05-30": "Pesta Kaamatan", + "1997-05-31": "Pesta Kaamatan", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-04": "Birthday of the Governor of Sabah", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-10": "Good Friday", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-05-30": "Pesta Kaamatan", + "1998-05-31": "Pesta Kaamatan", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-10-03": "Birthday of the Governor of Sabah", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-02": "Good Friday", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-05-30": "Pesta Kaamatan", + "1999-05-31": "Pesta Kaamatan", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-10-02": "Birthday of the Governor of Sabah", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-04-21": "Good Friday", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-05-30": "Pesta Kaamatan", + "2000-05-31": "Pesta Kaamatan", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-07": "Birthday of the Governor of Sabah", + "2000-10-25": "Deepavali", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-04-13": "Good Friday", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-05-30": "Pesta Kaamatan", + "2001-05-31": "Pesta Kaamatan", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-10-06": "Birthday of the Governor of Sabah", + "2001-11-14": "Deepavali", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-03-15": "Islamic New Year", + "2002-03-29": "Good Friday", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-05-30": "Pesta Kaamatan", + "2002-05-31": "Pesta Kaamatan", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-10-05": "Birthday of the Governor of Sabah", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-03-05": "Islamic New Year", + "2003-04-18": "Good Friday", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-05-30": "Pesta Kaamatan", + "2003-05-31": "Pesta Kaamatan", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-04": "Birthday of the Governor of Sabah", + "2003-10-23": "Deepavali", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-04-09": "Good Friday", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-05-30": "Pesta Kaamatan", + "2004-05-31": "Pesta Kaamatan", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-10-02": "Birthday of the Governor of Sabah", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-03-25": "Good Friday", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-05-30": "Pesta Kaamatan", + "2005-05-31": "Pesta Kaamatan", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-01": "Birthday of the Governor of Sabah", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-04-14": "Good Friday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-05-30": "Pesta Kaamatan", + "2006-05-31": "Pesta Kaamatan", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-07": "Birthday of the Governor of Sabah", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-04-06": "Good Friday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-05-30": "Pesta Kaamatan", + "2007-05-31": "Pesta Kaamatan", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-10-06": "Birthday of the Governor of Sabah", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-03-21": "Good Friday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-05-30": "Pesta Kaamatan", + "2008-05-31": "Pesta Kaamatan", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-04": "Birthday of the Governor of Sabah", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-04-10": "Good Friday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-05-30": "Pesta Kaamatan", + "2009-05-31": "Pesta Kaamatan", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-03": "Birthday of the Governor of Sabah", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-04-02": "Good Friday", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-05-30": "Pesta Kaamatan", + "2010-05-31": "Pesta Kaamatan", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-10-02": "Birthday of the Governor of Sabah", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-04-22": "Good Friday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-05-30": "Pesta Kaamatan", + "2011-05-31": "Pesta Kaamatan", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-01": "Birthday of the Governor of Sabah", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-04-06": "Good Friday", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-05-30": "Pesta Kaamatan", + "2012-05-31": "Pesta Kaamatan", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-06": "Birthday of the Governor of Sabah", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-03-29": "Good Friday", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-05-30": "Pesta Kaamatan", + "2013-05-31": "Pesta Kaamatan", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-05": "Birthday of the Governor of Sabah", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-04-18": "Good Friday", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-05-30": "Pesta Kaamatan", + "2014-05-31": "Pesta Kaamatan", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-04": "Birthday of the Governor of Sabah", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-04-03": "Good Friday", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-05-30": "Pesta Kaamatan", + "2015-05-31": "Pesta Kaamatan", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-03": "Birthday of the Governor of Sabah", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-03-25": "Good Friday", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-05-30": "Pesta Kaamatan", + "2016-05-31": "Pesta Kaamatan", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-01": "Birthday of the Governor of Sabah", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-14": "Good Friday", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-05-30": "Pesta Kaamatan", + "2017-05-31": "Pesta Kaamatan", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-07": "Birthday of the Governor of Sabah", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-03-30": "Good Friday", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-05-30": "Pesta Kaamatan", + "2018-05-31": "Pesta Kaamatan", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-10-06": "Birthday of the Governor of Sabah", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-04-19": "Good Friday", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-30": "Pesta Kaamatan", + "2019-05-31": "Pesta Kaamatan", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-05": "Birthday of the Governor of Sabah", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-24": "Christmas Eve", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-04-10": "Good Friday", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-05-30": "Pesta Kaamatan", + "2020-05-31": "Pesta Kaamatan", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-03": "Birthday of the Governor of Sabah", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-24": "Christmas Eve", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-02": "Good Friday", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-05-30": "Pesta Kaamatan", + "2021-05-31": "Pesta Kaamatan", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-02": "Birthday of the Governor of Sabah", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-24": "Christmas Eve", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-15": "Good Friday", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-05-30": "Pesta Kaamatan", + "2022-05-31": "Pesta Kaamatan", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-01": "Birthday of the Governor of Sabah", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-24": "Christmas Eve", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-04-07": "Good Friday", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-05-30": "Pesta Kaamatan", + "2023-05-31": "Pesta Kaamatan", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-10-07": "Birthday of the Governor of Sabah", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-24": "Christmas Eve", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-29": "Good Friday", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-05-30": "Pesta Kaamatan", + "2024-05-31": "Pesta Kaamatan", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-05": "Birthday of the Governor of Sabah", + "2024-10-31": "Deepavali", + "2024-12-24": "Christmas Eve", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-04-18": "Good Friday", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-05-30": "Pesta Kaamatan", + "2025-05-31": "Pesta Kaamatan", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-10-04": "Birthday of the Governor of Sabah", + "2025-11-18": "Deepavali", + "2025-12-24": "Christmas Eve", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-04-03": "Good Friday", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-30": "Pesta Kaamatan", + "2026-05-31": "Pesta Kaamatan", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-10-03": "Birthday of the Governor of Sabah", + "2026-11-07": "Deepavali", + "2026-12-24": "Christmas Eve", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-03-26": "Good Friday", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-05-30": "Pesta Kaamatan", + "2027-05-31": "Pesta Kaamatan", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-02": "Birthday of the Governor of Sabah", + "2027-10-27": "Deepavali", + "2027-12-24": "Christmas Eve", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-04-14": "Good Friday", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-05-30": "Pesta Kaamatan", + "2028-05-31": "Pesta Kaamatan", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-10-07": "Birthday of the Governor of Sabah", + "2028-11-14": "Deepavali", + "2028-12-24": "Christmas Eve", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-03-30": "Good Friday", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-05-30": "Pesta Kaamatan", + "2029-05-31": "Pesta Kaamatan", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-10-06": "Birthday of the Governor of Sabah", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-24": "Christmas Eve", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-19": "Good Friday", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-05-30": "Pesta Kaamatan", + "2030-05-31": "Pesta Kaamatan", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-05": "Birthday of the Governor of Sabah", + "2030-10-25": "Deepavali", + "2030-12-24": "Christmas Eve", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-11": "Good Friday", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-05-30": "Pesta Kaamatan", + "2031-05-31": "Pesta Kaamatan", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-10-04": "Birthday of the Governor of Sabah", + "2031-11-13": "Deepavali", + "2031-12-24": "Christmas Eve", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-26": "Good Friday", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-05-30": "Pesta Kaamatan", + "2032-05-31": "Pesta Kaamatan", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-10-02": "Birthday of the Governor of Sabah", + "2032-11-01": "Deepavali", + "2032-12-24": "Christmas Eve", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-04-15": "Good Friday", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-30": "Pesta Kaamatan", + "2033-05-31": "Pesta Kaamatan", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-01": "Birthday of the Governor of Sabah", + "2033-10-21": "Deepavali", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Christmas Eve; Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-04-07": "Good Friday", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Pesta Kaamatan; Prophet Muhammad's Birthday (estimated)", + "2034-05-31": "Pesta Kaamatan", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-10-07": "Birthday of the Governor of Sabah", + "2034-11-09": "Deepavali", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-24": "Christmas Eve", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-03-23": "Good Friday", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-05-30": "Pesta Kaamatan", + "2035-05-31": "Pesta Kaamatan", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-06": "Birthday of the Governor of Sabah", + "2035-10-29": "Deepavali", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-24": "Christmas Eve", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-04-11": "Good Friday", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-30": "Pesta Kaamatan", + "2036-05-31": "Pesta Kaamatan", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-10-04": "Birthday of the Governor of Sabah", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-24": "Christmas Eve", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-04-03": "Good Friday", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-05-30": "Pesta Kaamatan", + "2037-05-31": "Pesta Kaamatan", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-03": "Birthday of the Governor of Sabah", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-24": "Christmas Eve", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-04-23": "Good Friday", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-05-30": "Pesta Kaamatan", + "2038-05-31": "Pesta Kaamatan", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-02": "Birthday of the Governor of Sabah", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-24": "Christmas Eve", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-04-08": "Good Friday", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-30": "Pesta Kaamatan", + "2039-05-31": "Pesta Kaamatan", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-01": "Birthday of the Governor of Sabah", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-24": "Christmas Eve", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-03-30": "Good Friday", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-05-30": "Pesta Kaamatan", + "2040-05-31": "Pesta Kaamatan", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-10-06": "Birthday of the Governor of Sabah", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-24": "Christmas Eve", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-04-19": "Good Friday", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-05-30": "Pesta Kaamatan", + "2041-05-31": "Pesta Kaamatan", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-31": "National Day", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-05": "Birthday of the Governor of Sabah", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Christmas Eve; Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-04-04": "Good Friday", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-05-30": "Pesta Kaamatan", + "2042-05-31": "Pesta Kaamatan", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-10-04": "Birthday of the Governor of Sabah", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-24": "Christmas Eve", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-03-27": "Good Friday", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-05-30": "Pesta Kaamatan", + "2043-05-31": "Pesta Kaamatan", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-03": "Birthday of the Governor of Sabah", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-24": "Christmas Eve", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-04-15": "Good Friday", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-05-30": "Pesta Kaamatan", + "2044-05-31": "Pesta Kaamatan", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-01": "Birthday of the Governor of Sabah", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-24": "Christmas Eve", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-04-07": "Good Friday", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-05-30": "Pesta Kaamatan", + "2045-05-31": "Pesta Kaamatan", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-07": "Birthday of the Governor of Sabah", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-24": "Christmas Eve", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-03-23": "Good Friday", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-05-30": "Pesta Kaamatan", + "2046-05-31": "Pesta Kaamatan", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-06": "Birthday of the Governor of Sabah", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-24": "Christmas Eve", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-04-12": "Good Friday", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-30": "Pesta Kaamatan", + "2047-05-31": "Pesta Kaamatan", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-05": "Birthday of the Governor of Sabah", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-24": "Christmas Eve", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-04-03": "Good Friday", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-05-30": "Pesta Kaamatan", + "2048-05-31": "Pesta Kaamatan", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-03": "Birthday of the Governor of Sabah", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-24": "Christmas Eve", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-04-16": "Good Friday", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-05-30": "Pesta Kaamatan", + "2049-05-31": "Pesta Kaamatan", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-02": "Birthday of the Governor of Sabah", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-24": "Christmas Eve", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-04-08": "Good Friday", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-30": "Pesta Kaamatan", + "2050-05-31": "Pesta Kaamatan", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-10-01": "Birthday of the Governor of Sabah", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-24": "Christmas Eve", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_13.json b/snapshots/countries/MY_13.json new file mode 100644 index 000000000..adfe0afe2 --- /dev/null +++ b/snapshots/countries/MY_13.json @@ -0,0 +1,1842 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-04-11": "Good Friday", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-10-11": "Birthday of the Governor of Sarawak", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-04-03": "Good Friday", + "1953-05-27": "Vesak Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-10-10": "Birthday of the Governor of Sarawak", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-04-16": "Good Friday", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-09": "Birthday of the Governor of Sarawak", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-04-08": "Good Friday", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-08": "Birthday of the Governor of Sarawak", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-03-30": "Good Friday", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-13": "Birthday of the Governor of Sarawak", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-04-19": "Good Friday", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-10-12": "Birthday of the Governor of Sarawak", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-04": "Good Friday", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-10-11": "Birthday of the Governor of Sarawak", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-03-27": "Good Friday", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-10": "Birthday of the Governor of Sarawak", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-04-15": "Good Friday", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-10-08": "Birthday of the Governor of Sarawak", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-03-31": "Good Friday", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-10-14": "Birthday of the Governor of Sarawak", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-04-20": "Good Friday", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-13": "Birthday of the Governor of Sarawak", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-04-12": "Good Friday", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-10-12": "Birthday of the Governor of Sarawak", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-03-27": "Good Friday", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-10-10": "Birthday of the Governor of Sarawak", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-04-16": "Good Friday", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-01": "Dayak Festival Day", + "1965-06-02": "Dayak Festival Day", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-09": "Birthday of the Governor of Sarawak", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-08": "Good Friday", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-01": "Dayak Festival Day", + "1966-06-02": "Dayak Festival Day", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-10-08": "Birthday of the Governor of Sarawak", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-24": "Good Friday", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-01": "Dayak Festival Day", + "1967-06-02": "Dayak Festival Day", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-14": "Birthday of the Governor of Sarawak", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-04-12": "Good Friday", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1968-06-02": "Dayak Festival Day", + "1968-06-03": "Dayak Festival Day (observed)", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-10-12": "Birthday of the Governor of Sarawak", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-04-04": "Good Friday", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-01": "Dayak Festival Day", + "1969-06-02": "Dayak Festival Day", + "1969-06-03": "Dayak Festival Day (observed)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-10-11": "Birthday of the Governor of Sarawak", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-03-27": "Good Friday", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-01": "Dayak Festival Day", + "1970-06-02": "Dayak Festival Day", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-10": "Birthday of the Governor of Sarawak", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-04-09": "Good Friday", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-01": "Dayak Festival Day", + "1971-06-02": "Dayak Festival Day", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-10-09": "Birthday of the Governor of Sarawak", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-03-31": "Good Friday", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-01": "Dayak Festival Day", + "1972-06-02": "Dayak Festival Day", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-14": "Birthday of the Governor of Sarawak", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-04-20": "Good Friday", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-01": "Dayak Festival Day", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1973-08-31": "National Day", + "1973-10-13": "Birthday of the Governor of Sarawak", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-04-12": "Good Friday", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1974-06-02": "Dayak Festival Day", + "1974-06-03": "Dayak Festival Day (observed)", + "1974-08-31": "National Day", + "1974-10-12": "Birthday of the Governor of Sarawak", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-03-28": "Good Friday", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-01": "Dayak Festival Day", + "1975-06-02": "Dayak Festival Day", + "1975-06-03": "Dayak Festival Day (observed)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-10-11": "Birthday of the Governor of Sarawak", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-04-16": "Good Friday", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-01": "Dayak Festival Day", + "1976-06-02": "Dayak Festival Day", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-10-09": "Birthday of the Governor of Sarawak", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-04-08": "Good Friday", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-01": "Dayak Festival Day", + "1977-06-02": "Dayak Festival Day", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-10-08": "Birthday of the Governor of Sarawak", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-03-24": "Good Friday", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-01": "Dayak Festival Day", + "1978-06-02": "Dayak Festival Day", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-14": "Birthday of the Governor of Sarawak", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-04-13": "Good Friday", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-01": "Dayak Festival Day", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-13": "Birthday of the Governor of Sarawak", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-04-04": "Good Friday", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-01": "Dayak Festival Day", + "1980-06-02": "Dayak Festival Day", + "1980-06-03": "Dayak Festival Day (observed)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-11": "Birthday of the Governor of Sarawak", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-04-17": "Good Friday", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-01": "Dayak Festival Day", + "1981-06-02": "Dayak Festival Day", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-10": "Birthday of the Governor of Sarawak", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-04-09": "Good Friday", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-01": "Dayak Festival Day", + "1982-06-02": "Dayak Festival Day", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-10-09": "Birthday of the Governor of Sarawak", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-04-01": "Good Friday", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-01": "Dayak Festival Day", + "1983-06-02": "Dayak Festival Day", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-10-08": "Birthday of the Governor of Sarawak", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-04-20": "Good Friday", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-01": "Dayak Festival Day", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-13": "Birthday of the Governor of Sarawak", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-04-05": "Good Friday", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1985-06-02": "Dayak Festival Day", + "1985-06-03": "Dayak Festival Day (observed)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-10-12": "Birthday of the Governor of Sarawak", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-03-28": "Good Friday", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-06-01": "Dayak Festival Day", + "1986-06-02": "Dayak Festival Day", + "1986-06-03": "Dayak Festival Day (observed)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-11": "Birthday of the Governor of Sarawak", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-04-17": "Good Friday", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-01": "Dayak Festival Day", + "1987-06-02": "Dayak Festival Day", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-10-10": "Birthday of the Governor of Sarawak", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-04-01": "Good Friday", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-01": "Dayak Festival Day", + "1988-06-02": "Dayak Festival Day", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-08": "Birthday of the Governor of Sarawak", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-03-24": "Good Friday", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-01": "Dayak Festival Day", + "1989-06-02": "Dayak Festival Day", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-14": "Birthday of the Governor of Sarawak", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-04-13": "Good Friday", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-01": "Dayak Festival Day", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-10-13": "Birthday of the Governor of Sarawak", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-29": "Good Friday", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1991-06-02": "Dayak Festival Day", + "1991-06-03": "Dayak Festival Day (observed)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-10-12": "Birthday of the Governor of Sarawak", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-04-17": "Good Friday", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-01": "Dayak Festival Day", + "1992-06-02": "Dayak Festival Day", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-10": "Birthday of the Governor of Sarawak", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-04-09": "Good Friday", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Dayak Festival Day", + "1993-06-02": "Dayak Festival Day", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-10-09": "Birthday of the Governor of Sarawak", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-04-01": "Good Friday", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-01": "Dayak Festival Day", + "1994-06-02": "Dayak Festival Day", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-10-08": "Birthday of the Governor of Sarawak", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-04-14": "Good Friday", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-01": "Dayak Festival Day", + "1995-06-02": "Dayak Festival Day", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-10-14": "Birthday of the Governor of Sarawak", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-05": "Good Friday", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "1996-06-02": "Dayak Festival Day", + "1996-06-03": "Dayak Festival Day (observed)", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-10-12": "Birthday of the Governor of Sarawak", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-03-28": "Good Friday", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-01": "Dayak Festival Day", + "1997-06-02": "Dayak Festival Day", + "1997-06-03": "Dayak Festival Day (observed)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-11": "Birthday of the Governor of Sarawak", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-10": "Good Friday", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-01": "Dayak Festival Day", + "1998-06-02": "Dayak Festival Day", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-10-10": "Birthday of the Governor of Sarawak", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-02": "Good Friday", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-01": "Dayak Festival Day", + "1999-06-02": "Dayak Festival Day", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-10-09": "Birthday of the Governor of Sarawak", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-04-21": "Good Friday", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-01": "Dayak Festival Day", + "2000-06-02": "Dayak Festival Day", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-14": "Birthday of the Governor of Sarawak", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-04-13": "Good Friday", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-01": "Dayak Festival Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-10-13": "Birthday of the Governor of Sarawak", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-03-15": "Islamic New Year", + "2002-03-29": "Good Friday", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2002-06-02": "Dayak Festival Day", + "2002-06-03": "Dayak Festival Day (observed)", + "2002-08-31": "National Day", + "2002-10-12": "Birthday of the Governor of Sarawak", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-03-05": "Islamic New Year", + "2003-04-18": "Good Friday", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-01": "Dayak Festival Day", + "2003-06-02": "Dayak Festival Day", + "2003-06-03": "Dayak Festival Day (observed)", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-11": "Birthday of the Governor of Sarawak", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-04-09": "Good Friday", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-01": "Dayak Festival Day", + "2004-06-02": "Dayak Festival Day", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-10-09": "Birthday of the Governor of Sarawak", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-03-25": "Good Friday", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-01": "Dayak Festival Day", + "2005-06-02": "Dayak Festival Day", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-08": "Birthday of the Governor of Sarawak", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-04-14": "Good Friday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-01": "Dayak Festival Day", + "2006-06-02": "Dayak Festival Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-14": "Birthday of the Governor of Sarawak", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-04-06": "Good Friday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-01": "Dayak Festival Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2007-08-31": "National Day", + "2007-10-13": "Birthday of the Governor of Sarawak; Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-03-21": "Good Friday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-01": "Dayak Festival Day", + "2008-06-02": "Dayak Festival Day", + "2008-06-03": "Dayak Festival Day (observed)", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-11": "Birthday of the Governor of Sarawak", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-04-10": "Good Friday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-01": "Dayak Festival Day", + "2009-06-02": "Dayak Festival Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-10": "Birthday of the Governor of Sarawak", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-04-02": "Good Friday", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-01": "Dayak Festival Day", + "2010-06-02": "Dayak Festival Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-10-09": "Birthday of the Governor of Sarawak", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-04-22": "Good Friday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-01": "Dayak Festival Day", + "2011-06-02": "Dayak Festival Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-08": "Birthday of the Governor of Sarawak", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-04-06": "Good Friday", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-01": "Dayak Festival Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-13": "Birthday of the Governor of Sarawak", + "2012-10-26": "Eid al-Adha", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-03-29": "Good Friday", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2013-06-02": "Dayak Festival Day", + "2013-06-03": "Dayak Festival Day (observed)", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-12": "Birthday of the Governor of Sarawak", + "2013-10-15": "Eid al-Adha", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-04-18": "Good Friday", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-01": "Dayak Festival Day", + "2014-06-02": "Dayak Festival Day", + "2014-06-03": "Dayak Festival Day (observed)", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-11": "Birthday of the Governor of Sarawak", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-04-03": "Good Friday", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-06-01": "Dayak Festival Day", + "2015-06-02": "Dayak Festival Day", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-10": "Birthday of the Governor of Sarawak", + "2015-10-14": "Islamic New Year", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-03-25": "Good Friday", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-06-01": "Dayak Festival Day", + "2016-06-02": "Dayak Festival Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-08": "Birthday of the Governor of Sarawak", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-14": "Good Friday", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-01": "Dayak Festival Day", + "2017-06-02": "Dayak Festival Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-07-22": "Sarawak Independence Day", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-14": "Birthday of the Governor of Sarawak", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-03-30": "Good Friday", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-17": "Cuti Peristiwa", + "2018-05-18": "Cuti Peristiwa", + "2018-05-29": "Vesak Day", + "2018-06-01": "Dayak Festival Day", + "2018-06-02": "Dayak Festival Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-07-22": "Sarawak Independence Day", + "2018-07-23": "Sarawak Independence Day (observed)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-10-13": "Birthday of the Governor of Sarawak", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-04-19": "Good Friday", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-06-01": "Dayak Festival Day", + "2019-06-02": "Dayak Festival Day", + "2019-06-03": "Dayak Festival Day (observed)", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-22": "Sarawak Independence Day", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-12": "Birthday of the Governor of Sarawak", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-04-10": "Good Friday", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-01": "Dayak Festival Day", + "2020-06-02": "Dayak Festival Day", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-22": "Sarawak Independence Day", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-10": "Birthday of the Governor of Sarawak", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-02": "Good Friday", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-01": "Dayak Festival Day", + "2021-06-02": "Dayak Festival Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-07-22": "Sarawak Independence Day", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-09": "Birthday of the Governor of Sarawak", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-15": "Good Friday", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-01": "Dayak Festival Day", + "2022-06-02": "Dayak Festival Day", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-22": "Sarawak Independence Day", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-08": "Birthday of the Governor of Sarawak", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-04-07": "Good Friday", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-01": "Dayak Festival Day", + "2023-06-02": "Dayak Festival Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-07-22": "Sarawak Independence Day", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-10-14": "Birthday of the Governor of Sarawak", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-29": "Good Friday", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-01": "Dayak Festival Day", + "2024-06-02": "Dayak Festival Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-04": "Dayak Festival Day (observed)", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-07-22": "Sarawak Independence Day", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-12": "Birthday of the Governor of Sarawak", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-04-18": "Good Friday", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-01": "Dayak Festival Day", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2025-06-03": "Dayak Festival Day (observed)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-07-22": "Sarawak Independence Day", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-10-11": "Birthday of the Governor of Sarawak", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-04-03": "Good Friday", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2026-06-02": "Dayak Festival Day", + "2026-06-16": "Islamic New Year (estimated)", + "2026-07-22": "Sarawak Independence Day", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-10-10": "Birthday of the Governor of Sarawak", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-03-26": "Good Friday", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-01": "Dayak Festival Day", + "2027-06-02": "Dayak Festival Day", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-07-22": "Sarawak Independence Day", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-09": "Birthday of the Governor of Sarawak", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-04-14": "Good Friday", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-01": "Dayak Festival Day", + "2028-06-02": "Dayak Festival Day", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-07-22": "Sarawak Independence Day", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-10-14": "Birthday of the Governor of Sarawak", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-03-30": "Good Friday", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-01": "Dayak Festival Day", + "2029-06-02": "Dayak Festival Day", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-22": "Sarawak Independence Day", + "2029-07-23": "Sarawak Independence Day (observed)", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-10-13": "Birthday of the Governor of Sarawak", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-19": "Good Friday", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-01": "Dayak Festival Day", + "2030-06-02": "Dayak Festival Day", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-06-04": "Dayak Festival Day (observed)", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-07-22": "Sarawak Independence Day", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-12": "Birthday of the Governor of Sarawak", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-11": "Good Friday", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-01": "Dayak Festival Day", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2031-06-03": "Dayak Festival Day (observed)", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-07-22": "Sarawak Independence Day", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-10-11": "Birthday of the Governor of Sarawak", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-26": "Good Friday", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-01": "Dayak Festival Day", + "2032-06-02": "Dayak Festival Day", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-07-22": "Sarawak Independence Day", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-10-09": "Birthday of the Governor of Sarawak", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-04-15": "Good Friday", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-01": "Dayak Festival Day", + "2033-06-02": "Dayak Festival Day", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-07-22": "Sarawak Independence Day", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-08": "Birthday of the Governor of Sarawak", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-04-07": "Good Friday", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-01": "Dayak Festival Day", + "2034-06-02": "Dayak Festival Day", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-07-22": "Sarawak Independence Day", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-10-14": "Birthday of the Governor of Sarawak", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-03-23": "Good Friday", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-01": "Dayak Festival Day", + "2035-06-02": "Dayak Festival Day", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-07-22": "Sarawak Independence Day", + "2035-07-23": "Sarawak Independence Day (observed)", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-13": "Birthday of the Governor of Sarawak", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-04-11": "Good Friday", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-01": "Dayak Festival Day", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2036-06-03": "Dayak Festival Day (observed)", + "2036-07-22": "Sarawak Independence Day", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-10-11": "Birthday of the Governor of Sarawak", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-04-03": "Good Friday", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2037-06-02": "Dayak Festival Day", + "2037-07-22": "Sarawak Independence Day", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-10": "Birthday of the Governor of Sarawak", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-04-23": "Good Friday", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-01": "Dayak Festival Day", + "2038-06-02": "Dayak Festival Day", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-07-22": "Sarawak Independence Day", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-09": "Birthday of the Governor of Sarawak", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-04-08": "Good Friday", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-01": "Dayak Festival Day", + "2039-06-02": "Dayak Festival Day", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-07-22": "Sarawak Independence Day", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-08": "Birthday of the Governor of Sarawak", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-03-30": "Good Friday", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-01": "Dayak Festival Day", + "2040-06-02": "Dayak Festival Day", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-07-22": "Sarawak Independence Day", + "2040-07-23": "Sarawak Independence Day (observed)", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-10-13": "Birthday of the Governor of Sarawak", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-04-19": "Good Friday", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-01": "Dayak Festival Day", + "2041-06-02": "Dayak Festival Day", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-06-04": "Dayak Festival Day (observed)", + "2041-07-22": "Sarawak Independence Day", + "2041-08-31": "National Day", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-12": "Birthday of the Governor of Sarawak", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-04-04": "Good Friday", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-01": "Dayak Festival Day", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2042-06-03": "Dayak Festival Day (observed)", + "2042-07-22": "Sarawak Independence Day", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-10-11": "Birthday of the Governor of Sarawak", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-03-27": "Good Friday", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2043-06-02": "Dayak Festival Day", + "2043-07-22": "Sarawak Independence Day", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-10": "Birthday of the Governor of Sarawak", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-04-15": "Good Friday", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-01": "Dayak Festival Day", + "2044-06-02": "Dayak Festival Day", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-07-22": "Sarawak Independence Day", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-08": "Birthday of the Governor of Sarawak", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-04-07": "Good Friday", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-01": "Dayak Festival Day", + "2045-06-02": "Dayak Festival Day", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-22": "Sarawak Independence Day", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-14": "Birthday of the Governor of Sarawak", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-03-23": "Good Friday", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-01": "Dayak Festival Day", + "2046-06-02": "Dayak Festival Day", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-22": "Sarawak Independence Day", + "2046-07-23": "Sarawak Independence Day (observed)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-13": "Birthday of the Governor of Sarawak", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-04-12": "Good Friday", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-01": "Dayak Festival Day", + "2047-06-02": "Dayak Festival Day", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-06-04": "Dayak Festival Day (observed)", + "2047-07-22": "Sarawak Independence Day", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-12": "Birthday of the Governor of Sarawak", + "2047-10-20": "Islamic New Year (estimated)", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-04-03": "Good Friday", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong; Dayak Festival Day", + "2048-06-02": "Dayak Festival Day", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-07-22": "Sarawak Independence Day", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-10-10": "Birthday of the Governor of Sarawak", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-04-16": "Good Friday", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-01": "Dayak Festival Day", + "2049-06-02": "Dayak Festival Day", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-07-22": "Sarawak Independence Day", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-09": "Birthday of the Governor of Sarawak", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-04-08": "Good Friday", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-01": "Dayak Festival Day", + "2050-06-02": "Dayak Festival Day", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-07-22": "Sarawak Independence Day", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-10-08": "Birthday of the Governor of Sarawak", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_14.json b/snapshots/countries/MY_14.json new file mode 100644 index 000000000..4bc8c61c6 --- /dev/null +++ b/snapshots/countries/MY_14.json @@ -0,0 +1,1844 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-02-28": "Thaipusam", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-02-18": "Thaipusam", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-09": "Thaipusam", + "1955-01-10": "Thaipusam (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-02-26": "Thaipusam", + "1956-02-27": "Thaipusam (observed)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-15": "Thaipusam", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-05": "Thaipusam", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-02-22": "Thaipusam", + "1959-02-23": "Thaipusam (observed)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-13": "Thaipusam", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-02": "Thaipusam", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-19": "Thaipusam", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-28": "Thaipusam", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-02-16": "Thaipusam", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Thaipusam", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-24": "Thaipusam", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-02-13": "Thaipusam", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-03": "Thaipusam", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-11-08": "Deepavali", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-21": "Thaipusam", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-02-29": "Thaipusam", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-02-18": "Thaipusam", + "1973-02-19": "Thaipusam (observed)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-02-01": "Federal Territory Day", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-01": "Federal Territory Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-02-26": "Thaipusam", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated); Federal Territory Day (observed)", + "1976-02-15": "Thaipusam", + "1976-02-16": "Thaipusam (observed)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-01": "Federal Territory Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-03-05": "Thaipusam", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-01": "Federal Territory Day", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-02-22": "Thaipusam", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-01": "Federal Territory Day", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-01": "Federal Territory Day", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-03-02": "Thaipusam", + "1980-03-03": "Thaipusam (observed)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-01": "Federal Territory Day", + "1981-02-02": "Federal Territory Day (observed)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-19": "Thaipusam", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-10": "Thaipusam", + "1982-01-11": "Thaipusam (observed)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-02-01": "Federal Territory Day", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-01": "Federal Territory Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-02-28": "Thaipusam", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-01": "Federal Territory Day", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-17": "Thaipusam", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-01": "Federal Territory Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-03-06": "Thaipusam", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-01": "Federal Territory Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-02-23": "Thaipusam", + "1986-02-24": "Thaipusam (observed)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-02-01": "Federal Territory Day", + "1987-02-02": "Federal Territory Day (observed)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-01": "Federal Territory Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-03": "Thaipusam", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-01": "Federal Territory Day", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-02-21": "Thaipusam", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-12": "Thaipusam", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-02-01": "Federal Territory Day", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-01": "Federal Territory Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-01": "Thaipusam", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-01": "Federal Territory Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-02-18": "Thaipusam", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-08": "Thaipusam", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-02-01": "Federal Territory Day", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-01": "Federal Territory Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-25": "Thaipusam", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "1995-02-14": "Thaipusam", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-01": "Federal Territory Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-03-04": "Thaipusam", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-01": "Federal Territory Day", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-02-22": "Thaipusam", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-13": "Thaipusam", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-02-01": "Federal Territory Day", + "1998-02-02": "Federal Territory Day (observed)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-01": "Federal Territory Day", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-03": "Thaipusam", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-01": "Federal Territory Day", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-02-20": "Thaipusam", + "2000-02-21": "Thaipusam (observed)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-02-01": "Federal Territory Day", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-01": "Federal Territory Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-27": "Thaipusam", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year; Federal Territory Day", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-16": "Thaipusam", + "2003-02-17": "Thaipusam (observed)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-01": "Federal Territory Day", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Federal Territory Day (observed)", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-01": "Federal Territory Day", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-02-23": "Thaipusam", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Federal Territory Day", + "2006-02-02": "Chinese New Year (observed)", + "2006-02-13": "Thaipusam", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-01": "Federal Territory Day", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-04": "Thaipusam", + "2007-03-05": "Thaipusam (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-01": "Federal Territory Day", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-22": "Thaipusam", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-11": "Thaipusam", + "2009-01-12": "Thaipusam (observed)", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-02-01": "Federal Territory Day", + "2009-02-02": "Federal Territory Day (observed)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-01": "Federal Territory Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-01": "Thaipusam", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-01": "Federal Territory Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-02-18": "Thaipusam", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-08": "Thaipusam", + "2012-01-09": "Thaipusam (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-01": "Federal Territory Day", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-01": "Federal Territory Day", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-02-25": "Thaipusam", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day); Federal Territory Day", + "2014-02-14": "Thaipusam", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-01": "Federal Territory Day", + "2015-02-02": "Federal Territory Day (observed)", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-03-05": "Thaipusam", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-01": "Federal Territory Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-02-23": "Thaipusam", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-13": "Thaipusam", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-02-01": "Federal Territory Day", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-31": "Thaipusam", + "2018-02-01": "Federal Territory Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Thaipusam", + "2019-02-01": "Federal Territory Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-02-01": "Federal Territory Day", + "2020-02-08": "Thaipusam", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-28": "Thaipusam", + "2021-02-01": "Federal Territory Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-03": "Malaysia Cup Holiday", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year; Federal Territory Day", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-01": "Federal Territory Day", + "2023-02-05": "Thaipusam", + "2023-02-06": "Thaipusam (observed)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-25": "Thaipusam", + "2024-02-01": "Federal Territory Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-01": "Federal Territory Day", + "2025-02-11": "Thaipusam", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-01": "Federal Territory Day; Thaipusam", + "2026-02-02": "Federal Territory Day (observed); Thaipusam (observed)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-22": "Thaipusam", + "2027-02-01": "Federal Territory Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-11": "Thaipusam", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-01": "Federal Territory Day", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-01": "Federal Territory Day", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-02-17": "Thaipusam", + "2030-02-18": "Thaipusam (observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-08": "Thaipusam", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-02-01": "Federal Territory Day", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-01": "Federal Territory Day", + "2032-02-02": "Federal Territory Day (observed)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-01": "Federal Territory Day", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-06": "Thaipusam (observed)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-01": "Federal Territory Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-02-23": "Thaipusam", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-13": "Thaipusam", + "2036-01-14": "Thaipusam (observed)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-01": "Federal Territory Day", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-01": "Federal Territory Day", + "2037-02-02": "Federal Territory Day (observed)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-03-02": "Thaipusam", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-01": "Federal Territory Day", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-19": "Thaipusam", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-10": "Thaipusam (observed)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-02-01": "Federal Territory Day", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-01": "Federal Territory Day", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-02-27": "Thaipusam", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-15": "Thaipusam", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Thaipusam", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-02-01": "Federal Territory Day", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-01": "Federal Territory Day", + "2043-02-02": "Federal Territory Day (observed)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-02-24": "Thaipusam", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Federal Territory Day", + "2044-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-02-15": "Thaipusam (observed)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-01": "Federal Territory Day", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-03-04": "Thaipusam", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-01": "Federal Territory Day", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-02-01": "Federal Territory Day", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-01": "Federal Territory Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-28": "Thaipusam", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-01": "Federal Territory Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-08": "Thaipusam", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-02-01": "Federal Territory Day", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_15.json b/snapshots/countries/MY_15.json new file mode 100644 index 000000000..8b4281f40 --- /dev/null +++ b/snapshots/countries/MY_15.json @@ -0,0 +1,1854 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-30": "Pesta Kaamatan", + "1952-05-31": "Pesta Kaamatan", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated); Pesta Kaamatan", + "1953-05-31": "Pesta Kaamatan", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-05-30": "Pesta Kaamatan", + "1954-05-31": "Pesta Kaamatan", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-05-30": "Pesta Kaamatan", + "1955-05-31": "Pesta Kaamatan", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-05-30": "Pesta Kaamatan", + "1956-05-31": "Pesta Kaamatan", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-05-30": "Pesta Kaamatan", + "1957-05-31": "Pesta Kaamatan", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-05-30": "Pesta Kaamatan", + "1958-05-31": "Pesta Kaamatan", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-05-30": "Pesta Kaamatan", + "1959-05-31": "Pesta Kaamatan", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-05-30": "Pesta Kaamatan", + "1960-05-31": "Pesta Kaamatan", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-05-30": "Pesta Kaamatan", + "1961-05-31": "Pesta Kaamatan", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-05-30": "Pesta Kaamatan", + "1962-05-31": "Pesta Kaamatan", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-30": "Pesta Kaamatan", + "1963-05-31": "Pesta Kaamatan", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-05-30": "Pesta Kaamatan", + "1964-05-31": "Pesta Kaamatan", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-05-30": "Pesta Kaamatan", + "1965-05-31": "Pesta Kaamatan", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-05-30": "Pesta Kaamatan", + "1966-05-31": "Pesta Kaamatan", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-05-30": "Pesta Kaamatan", + "1967-05-31": "Pesta Kaamatan", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-05-30": "Pesta Kaamatan", + "1968-05-31": "Pesta Kaamatan", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-05-30": "Pesta Kaamatan", + "1969-05-31": "Pesta Kaamatan", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-05-30": "Pesta Kaamatan", + "1970-05-31": "Pesta Kaamatan", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-05-30": "Pesta Kaamatan", + "1971-05-31": "Pesta Kaamatan", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-05-30": "Pesta Kaamatan", + "1972-05-31": "Pesta Kaamatan", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-05-30": "Pesta Kaamatan", + "1973-05-31": "Pesta Kaamatan", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-02-01": "Federal Territory Day", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-05-30": "Pesta Kaamatan", + "1974-05-31": "Pesta Kaamatan", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-01": "Federal Territory Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-05-30": "Pesta Kaamatan", + "1975-05-31": "Pesta Kaamatan", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated); Federal Territory Day (observed)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-05-30": "Pesta Kaamatan", + "1976-05-31": "Pesta Kaamatan", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-01": "Federal Territory Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-05-30": "Pesta Kaamatan", + "1977-05-31": "Pesta Kaamatan", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-01": "Federal Territory Day", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-05-30": "Pesta Kaamatan", + "1978-05-31": "Pesta Kaamatan", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-01": "Federal Territory Day", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-05-30": "Pesta Kaamatan", + "1979-05-31": "Pesta Kaamatan", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-01": "Federal Territory Day", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-05-30": "Pesta Kaamatan", + "1980-05-31": "Pesta Kaamatan", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-01": "Federal Territory Day", + "1981-02-02": "Federal Territory Day (observed)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-30": "Pesta Kaamatan", + "1981-05-31": "Pesta Kaamatan", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-02-01": "Federal Territory Day", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-30": "Pesta Kaamatan", + "1982-05-31": "Pesta Kaamatan", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-01": "Federal Territory Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-05-30": "Pesta Kaamatan", + "1983-05-31": "Pesta Kaamatan", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-01": "Federal Territory Day", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-30": "Pesta Kaamatan", + "1984-05-31": "Pesta Kaamatan", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-01": "Federal Territory Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-30": "Pesta Kaamatan", + "1985-05-31": "Pesta Kaamatan", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-01": "Federal Territory Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-05-30": "Pesta Kaamatan", + "1986-05-31": "Pesta Kaamatan", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-02-01": "Federal Territory Day", + "1987-02-02": "Federal Territory Day (observed)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-05-30": "Pesta Kaamatan", + "1987-05-31": "Pesta Kaamatan", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-01": "Federal Territory Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Pesta Kaamatan; Vesak Day (estimated)", + "1988-05-31": "Pesta Kaamatan", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-01": "Federal Territory Day", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-05-30": "Pesta Kaamatan", + "1989-05-31": "Pesta Kaamatan", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-02-01": "Federal Territory Day", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-05-30": "Pesta Kaamatan", + "1990-05-31": "Pesta Kaamatan", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-01": "Federal Territory Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-05-30": "Pesta Kaamatan", + "1991-05-31": "Pesta Kaamatan", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-01": "Federal Territory Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-05-30": "Pesta Kaamatan", + "1992-05-31": "Pesta Kaamatan", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-02-01": "Federal Territory Day", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-30": "Pesta Kaamatan", + "1993-05-31": "Eid al-Adha (estimated); Pesta Kaamatan", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-01": "Federal Territory Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-05-30": "Pesta Kaamatan", + "1994-05-31": "Pesta Kaamatan", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated); Pesta Kaamatan", + "1995-05-31": "Pesta Kaamatan", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-01": "Federal Territory Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-05-30": "Pesta Kaamatan", + "1996-05-31": "Pesta Kaamatan", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-01": "Federal Territory Day", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-05-30": "Pesta Kaamatan", + "1997-05-31": "Pesta Kaamatan", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-02-01": "Federal Territory Day", + "1998-02-02": "Federal Territory Day (observed)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-05-30": "Pesta Kaamatan", + "1998-05-31": "Pesta Kaamatan", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-01": "Federal Territory Day", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-05-30": "Pesta Kaamatan", + "1999-05-31": "Pesta Kaamatan", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-01": "Federal Territory Day", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-05-30": "Pesta Kaamatan", + "2000-05-31": "Pesta Kaamatan", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-02-01": "Federal Territory Day", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-05-30": "Pesta Kaamatan", + "2001-05-31": "Pesta Kaamatan", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-01": "Federal Territory Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-05-30": "Pesta Kaamatan", + "2002-05-31": "Pesta Kaamatan", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year; Federal Territory Day", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-05-30": "Pesta Kaamatan", + "2003-05-31": "Pesta Kaamatan", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-01": "Federal Territory Day", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Federal Territory Day (observed)", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-05-30": "Pesta Kaamatan", + "2004-05-31": "Pesta Kaamatan", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-01": "Federal Territory Day", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-05-30": "Pesta Kaamatan", + "2005-05-31": "Pesta Kaamatan", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Federal Territory Day", + "2006-02-02": "Chinese New Year (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-05-30": "Pesta Kaamatan", + "2006-05-31": "Pesta Kaamatan", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-01": "Federal Territory Day", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-05-30": "Pesta Kaamatan", + "2007-05-31": "Pesta Kaamatan", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-01": "Federal Territory Day", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-05-30": "Pesta Kaamatan", + "2008-05-31": "Pesta Kaamatan", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-02-01": "Federal Territory Day", + "2009-02-02": "Federal Territory Day (observed)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-05-30": "Pesta Kaamatan", + "2009-05-31": "Pesta Kaamatan", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-01": "Federal Territory Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-05-30": "Pesta Kaamatan", + "2010-05-31": "Pesta Kaamatan", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-01": "Federal Territory Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-05-30": "Pesta Kaamatan", + "2011-05-31": "Pesta Kaamatan", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-01": "Federal Territory Day", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-05-30": "Pesta Kaamatan", + "2012-05-31": "Pesta Kaamatan", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-01": "Federal Territory Day", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-05-30": "Pesta Kaamatan", + "2013-05-31": "Pesta Kaamatan", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day); Federal Territory Day", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-05-30": "Pesta Kaamatan", + "2014-05-31": "Pesta Kaamatan", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-01": "Federal Territory Day", + "2015-02-02": "Federal Territory Day (observed)", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-05-30": "Pesta Kaamatan", + "2015-05-31": "Pesta Kaamatan", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-01": "Federal Territory Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-05-30": "Pesta Kaamatan", + "2016-05-31": "Pesta Kaamatan", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-02-01": "Federal Territory Day", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-05-30": "Pesta Kaamatan", + "2017-05-31": "Pesta Kaamatan", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-01": "Federal Territory Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-05-30": "Pesta Kaamatan", + "2018-05-31": "Pesta Kaamatan", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-01": "Federal Territory Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-05-30": "Pesta Kaamatan", + "2019-05-31": "Pesta Kaamatan", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-02-01": "Federal Territory Day", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-05-30": "Pesta Kaamatan", + "2020-05-31": "Pesta Kaamatan", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-01": "Federal Territory Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-05-30": "Pesta Kaamatan", + "2021-05-31": "Pesta Kaamatan", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-03": "Malaysia Cup Holiday", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "Chinese New Year; Federal Territory Day", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-05-30": "Pesta Kaamatan", + "2022-05-31": "Pesta Kaamatan", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-01": "Federal Territory Day", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-05-30": "Pesta Kaamatan", + "2023-05-31": "Pesta Kaamatan", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-01": "Federal Territory Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-05-30": "Pesta Kaamatan", + "2024-05-31": "Pesta Kaamatan", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-01": "Federal Territory Day", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-05-30": "Pesta Kaamatan", + "2025-05-31": "Pesta Kaamatan", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-01": "Federal Territory Day", + "2026-02-02": "Federal Territory Day (observed)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-30": "Pesta Kaamatan", + "2026-05-31": "Pesta Kaamatan", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-01": "Federal Territory Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-05-30": "Pesta Kaamatan", + "2027-05-31": "Pesta Kaamatan", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-01": "Federal Territory Day", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-05-30": "Pesta Kaamatan", + "2028-05-31": "Pesta Kaamatan", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-05-30": "Pesta Kaamatan", + "2029-05-31": "Pesta Kaamatan", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-01": "Federal Territory Day", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-05-30": "Pesta Kaamatan", + "2030-05-31": "Pesta Kaamatan", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-02-01": "Federal Territory Day", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-05-30": "Pesta Kaamatan", + "2031-05-31": "Pesta Kaamatan", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-01": "Federal Territory Day", + "2032-02-02": "Federal Territory Day (observed)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-05-30": "Pesta Kaamatan", + "2032-05-31": "Pesta Kaamatan", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-30": "Pesta Kaamatan", + "2033-05-31": "Pesta Kaamatan", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-01": "Federal Territory Day", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Pesta Kaamatan; Prophet Muhammad's Birthday (estimated)", + "2034-05-31": "Pesta Kaamatan", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-01": "Federal Territory Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-05-30": "Pesta Kaamatan", + "2035-05-31": "Pesta Kaamatan", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-01": "Federal Territory Day", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-30": "Pesta Kaamatan", + "2036-05-31": "Pesta Kaamatan", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-01": "Federal Territory Day", + "2037-02-02": "Federal Territory Day (observed)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-05-30": "Pesta Kaamatan", + "2037-05-31": "Pesta Kaamatan", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-01": "Federal Territory Day", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-05-30": "Pesta Kaamatan", + "2038-05-31": "Pesta Kaamatan", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-02-01": "Federal Territory Day", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-30": "Pesta Kaamatan", + "2039-05-31": "Pesta Kaamatan", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-01": "Federal Territory Day", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-05-30": "Pesta Kaamatan", + "2040-05-31": "Pesta Kaamatan", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-05-30": "Pesta Kaamatan", + "2041-05-31": "Pesta Kaamatan", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-02-01": "Federal Territory Day", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-05-30": "Pesta Kaamatan", + "2042-05-31": "Pesta Kaamatan", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-01": "Federal Territory Day", + "2043-02-02": "Federal Territory Day (observed)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-05-30": "Pesta Kaamatan", + "2043-05-31": "Pesta Kaamatan", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Federal Territory Day", + "2044-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-05-30": "Pesta Kaamatan", + "2044-05-31": "Pesta Kaamatan", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-01": "Federal Territory Day", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-05-30": "Pesta Kaamatan", + "2045-05-31": "Pesta Kaamatan", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-01": "Federal Territory Day", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-05-30": "Pesta Kaamatan", + "2046-05-31": "Pesta Kaamatan", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-02-01": "Federal Territory Day", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-30": "Pesta Kaamatan", + "2047-05-31": "Pesta Kaamatan", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-01": "Federal Territory Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-05-30": "Pesta Kaamatan", + "2048-05-31": "Pesta Kaamatan", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-01": "Federal Territory Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-05-30": "Pesta Kaamatan", + "2049-05-31": "Pesta Kaamatan", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-02-01": "Federal Territory Day", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-30": "Pesta Kaamatan", + "2050-05-31": "Pesta Kaamatan", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_16.json b/snapshots/countries/MY_16.json new file mode 100644 index 000000000..4bc8c61c6 --- /dev/null +++ b/snapshots/countries/MY_16.json @@ -0,0 +1,1844 @@ +{ + "1952-01-01": "New Year's Day", + "1952-01-12": "Thaipusam", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-15": "Deepavali", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", + "1952-12-25": "Christmas Day", + "1953-01-01": "New Year's Day", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", + "1953-02-28": "Thaipusam", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-31": "National Day", + "1953-11-05": "Deepavali", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-12-25": "Christmas Day", + "1954-01-01": "New Year's Day", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", + "1954-02-18": "Thaipusam", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-31": "National Day", + "1954-10-25": "Deepavali", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-12-25": "Christmas Day", + "1955-01-01": "New Year's Day", + "1955-01-09": "Thaipusam", + "1955-01-10": "Thaipusam (observed)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-31": "National Day", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-11-12": "Deepavali", + "1955-12-25": "Christmas Day", + "1955-12-26": "Christmas Day (observed)", + "1956-01-01": "New Year's Day", + "1956-01-02": "New Year's Day (observed)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-02-26": "Thaipusam", + "1956-02-27": "Thaipusam (observed)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-31": "National Day", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-11-01": "Deepavali", + "1956-12-25": "Christmas Day", + "1957-01-01": "New Year's Day", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-02-15": "Thaipusam", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-08-31": "National Day", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", + "1957-11-20": "Deepavali", + "1957-12-25": "Christmas Day", + "1958-01-01": "New Year's Day", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-03-05": "Thaipusam", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (observed, estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", + "1958-05-03": "Vesak Day (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-08-31": "National Day", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-11-09": "Deepavali", + "1958-11-10": "Deepavali (observed)", + "1958-12-25": "Christmas Day", + "1959-01-01": "New Year's Day", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-02-22": "Thaipusam", + "1959-02-23": "Thaipusam (observed)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-08-31": "National Day", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-10-30": "Deepavali", + "1959-12-25": "Christmas Day", + "1960-01-01": "New Year's Day", + "1960-01-13": "Thaipusam", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", + "1960-08-31": "National Day", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-11-17": "Deepavali", + "1960-12-25": "Christmas Day", + "1960-12-26": "Christmas Day (observed)", + "1961-01-01": "New Year's Day", + "1961-01-02": "New Year's Day (observed)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-02": "Thaipusam", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-29": "Vesak Day (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-31": "National Day", + "1961-11-06": "Deepavali", + "1961-12-25": "Christmas Day", + "1962-01-01": "New Year's Day", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-02-19": "Thaipusam", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", + "1962-08-31": "National Day", + "1962-10-26": "Deepavali", + "1962-12-25": "Christmas Day", + "1963-01-01": "New Year's Day", + "1963-01-10": "Thaipusam", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-31": "National Day", + "1963-11-14": "Deepavali", + "1963-12-25": "Christmas Day", + "1964-01-01": "New Year's Day", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-02-28": "Thaipusam", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-05-26": "Vesak Day (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-08-31": "National Day", + "1964-11-02": "Deepavali", + "1964-12-25": "Christmas Day", + "1965-01-01": "New Year's Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-02-16": "Thaipusam", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", + "1965-05-15": "Vesak Day (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-08-31": "National Day", + "1965-10-22": "Deepavali", + "1965-12-25": "Christmas Day", + "1966-01-01": "New Year's Day", + "1966-01-06": "Thaipusam", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-05-05": "Vesak Day (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-08-31": "National Day", + "1966-11-10": "Deepavali", + "1966-12-25": "Christmas Day", + "1966-12-26": "Christmas Day (observed)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-01": "New Year's Day", + "1967-01-02": "New Year's Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-02-24": "Thaipusam", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-05-23": "Vesak Day (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-08-31": "National Day", + "1967-10-31": "Deepavali", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", + "1967-12-25": "Christmas Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-02-13": "Thaipusam", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-05-11": "Vesak Day (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-08-31": "National Day", + "1968-11-18": "Deepavali", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", + "1968-12-25": "Christmas Day", + "1969-01-01": "New Year's Day", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-03": "Thaipusam", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1969-08-31": "National Day", + "1969-09-01": "National Day (observed)", + "1969-11-08": "Deepavali", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", + "1969-12-25": "Christmas Day", + "1970-01-01": "New Year's Day", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-21": "Thaipusam", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Vesak Day (estimated)", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1970-08-31": "National Day", + "1970-10-28": "Deepavali", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", + "1970-12-25": "Christmas Day", + "1971-01-01": "New Year's Day", + "1971-01-12": "Thaipusam", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1971-08-31": "National Day", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", + "1971-11-16": "Deepavali", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", + "1971-12-25": "Christmas Day", + "1972-01-01": "New Year's Day", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-02-29": "Thaipusam", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-05-27": "Vesak Day (estimated)", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1972-08-31": "National Day", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", + "1972-11-04": "Deepavali", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", + "1972-12-25": "Christmas Day", + "1973-01-01": "New Year's Day", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-02-18": "Thaipusam", + "1973-02-19": "Thaipusam (observed)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", + "1973-05-17": "Vesak Day (estimated)", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1973-08-31": "National Day", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-24": "Deepavali", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", + "1973-12-25": "Christmas Day", + "1974-01-01": "New Year's Day", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-08": "Thaipusam", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-02-01": "Federal Territory Day", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", + "1974-05-06": "Vesak Day (estimated)", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1974-08-31": "National Day", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-11-12": "Deepavali", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day", + "1975-01-01": "New Year's Day", + "1975-02-01": "Federal Territory Day", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-02-26": "Thaipusam", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1975-08-31": "National Day", + "1975-09-01": "National Day (observed)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-11-01": "Deepavali", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-25": "Christmas Day", + "1976-01-01": "New Year's Day", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated); Federal Territory Day (observed)", + "1976-02-15": "Thaipusam", + "1976-02-16": "Thaipusam (observed)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", + "1976-05-13": "Vesak Day (estimated)", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1976-08-31": "National Day", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-11-19": "Deepavali", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-25": "Christmas Day", + "1977-01-01": "New Year's Day", + "1977-02-01": "Federal Territory Day", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-03-05": "Thaipusam", + "1977-05-01": "Labor Day", + "1977-05-02": "Vesak Day (estimated)", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-09": "Deepavali", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-25": "Christmas Day", + "1977-12-26": "Christmas Day (observed)", + "1978-01-01": "New Year's Day", + "1978-01-02": "New Year's Day (observed)", + "1978-02-01": "Federal Territory Day", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-02-22": "Thaipusam", + "1978-05-01": "Labor Day", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", + "1978-08-31": "National Day", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-10-30": "Deepavali", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-25": "Christmas Day", + "1979-01-01": "New Year's Day", + "1979-01-13": "Thaipusam", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-01": "Federal Territory Day", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", + "1979-05-10": "Vesak Day (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", + "1979-08-31": "National Day", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-18": "Deepavali", + "1979-11-19": "Deepavali (observed)", + "1979-12-25": "Christmas Day", + "1980-01-01": "New Year's Day", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-02-01": "Federal Territory Day", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-03-02": "Thaipusam", + "1980-03-03": "Thaipusam (observed)", + "1980-05-01": "Labor Day", + "1980-05-28": "Vesak Day (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", + "1980-08-31": "National Day", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", + "1980-11-06": "Deepavali", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", + "1981-02-01": "Federal Territory Day", + "1981-02-02": "Federal Territory Day (observed)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-02-19": "Thaipusam", + "1981-05-01": "Labor Day", + "1981-05-18": "Vesak Day (estimated)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "1981-08-31": "National Day", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-26": "Deepavali", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", + "1982-01-10": "Thaipusam", + "1982-01-11": "Thaipusam (observed)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-02-01": "Federal Territory Day", + "1982-05-01": "Labor Day", + "1982-05-08": "Vesak Day (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", + "1982-08-31": "National Day", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-11-13": "Deepavali", + "1982-12-25": "Christmas Day", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1983-01-01": "New Year's Day", + "1983-02-01": "Federal Territory Day", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-02-28": "Thaipusam", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", + "1983-05-27": "Vesak Day (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", + "1983-08-31": "National Day", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-11-03": "Deepavali", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-25": "Christmas Day", + "1983-12-26": "Christmas Day (observed)", + "1984-01-01": "New Year's Day", + "1984-01-02": "New Year's Day (observed)", + "1984-02-01": "Federal Territory Day", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-02-17": "Thaipusam", + "1984-05-01": "Labor Day", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", + "1984-08-31": "National Day", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-10-22": "Deepavali", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-02-01": "Federal Territory Day", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-03-06": "Thaipusam", + "1985-05-01": "Labor Day", + "1985-05-04": "Vesak Day (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-31": "National Day", + "1985-11-10": "Deepavali", + "1985-11-11": "Deepavali (observed)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-02-01": "Federal Territory Day", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-02-23": "Thaipusam", + "1986-02-24": "Thaipusam (observed)", + "1986-05-01": "Labor Day", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-31": "National Day", + "1986-09-01": "National Day (observed)", + "1986-10-31": "Deepavali", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-01-14": "Thaipusam", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-02-01": "Federal Territory Day", + "1987-02-02": "Federal Territory Day (observed)", + "1987-05-01": "Labor Day", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-31": "National Day", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-19": "Deepavali", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-01": "Federal Territory Day", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-03-03": "Thaipusam", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-31": "National Day", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-11-07": "Deepavali", + "1988-12-25": "Christmas Day", + "1988-12-26": "Christmas Day (observed)", + "1989-01-01": "New Year's Day", + "1989-01-02": "New Year's Day (observed)", + "1989-02-01": "Federal Territory Day", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-02-21": "Thaipusam", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-31": "National Day", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-27": "Deepavali", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-01-12": "Thaipusam", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-02-01": "Federal Territory Day", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", + "1990-05-09": "Vesak Day (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-08-31": "National Day", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-11-15": "Deepavali", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-01": "Federal Territory Day", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-03-01": "Thaipusam", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-08-31": "National Day", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-11-04": "Deepavali", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-01": "Federal Territory Day", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-02-18": "Thaipusam", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-08-31": "National Day", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-10-24": "Deepavali", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-01-08": "Thaipusam", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-02-01": "Federal Territory Day", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", + "1993-08-31": "National Day", + "1993-11-12": "Deepavali", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-01": "Federal Territory Day", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-02-25": "Thaipusam", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (observed, estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Vesak Day (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-31": "National Day", + "1994-11-01": "Deepavali", + "1994-12-25": "Christmas Day", + "1994-12-26": "Christmas Day (observed)", + "1995-01-01": "New Year's Day", + "1995-01-02": "New Year's Day (observed)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "1995-02-14": "Thaipusam", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-31": "National Day", + "1995-11-20": "Deepavali", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-01": "Federal Territory Day", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-03-04": "Thaipusam", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-08-31": "National Day", + "1996-11-09": "Deepavali", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (observed, estimated)", + "1997-02-01": "Federal Territory Day", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-02-22": "Thaipusam", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-21": "Vesak Day (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-08-31": "National Day", + "1997-09-01": "National Day (observed)", + "1997-10-29": "Deepavali", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-01-13": "Thaipusam", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-02-01": "Federal Territory Day", + "1998-02-02": "Federal Territory Day (observed)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-08-31": "National Day", + "1998-11-17": "Deepavali", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", + "1999-02-01": "Federal Territory Day", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-03": "Thaipusam", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", + "1999-05-29": "Vesak Day (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-08-31": "National Day", + "1999-11-06": "Deepavali", + "1999-11-29": "General election additional holiday", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "2000-02-01": "Federal Territory Day", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-02-20": "Thaipusam", + "2000-02-21": "Thaipusam (observed)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", + "2000-05-18": "Vesak Day (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-08-31": "National Day", + "2000-10-25": "Deepavali", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", + "2000-12-25": "Christmas Day", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", + "2001-01-01": "New Year's Day", + "2001-01-09": "Thaipusam", + "2001-01-24": "Chinese New Year", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-02-01": "Federal Territory Day", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", + "2001-05-07": "Vesak Day", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", + "2001-08-31": "National Day", + "2001-11-14": "Deepavali", + "2001-12-03": "Nuzul Al-Quran Day", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-01": "Federal Territory Day", + "2002-02-12": "Chinese New Year", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-02-27": "Thaipusam", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", + "2002-05-27": "Vesak Day", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2002-08-31": "National Day", + "2002-11-03": "Deepavali", + "2002-11-04": "Deepavali (observed)", + "2002-11-22": "Nuzul Al-Quran Day", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-01": "Chinese New Year; Federal Territory Day", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-02-16": "Thaipusam", + "2003-02-17": "Thaipusam (observed)", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", + "2003-05-15": "Vesak Day", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2003-08-31": "National Day", + "2003-09-01": "National Day (observed)", + "2003-10-23": "Deepavali", + "2003-11-12": "Nuzul Al-Quran Day", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-01-07": "Thaipusam", + "2004-01-22": "Chinese New Year", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-01": "Federal Territory Day", + "2004-02-02": "Eid al-Adha", + "2004-02-03": "Federal Territory Day (observed)", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", + "2004-05-03": "Vesak Day", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2004-08-31": "National Day", + "2004-11-01": "Nuzul Al-Quran Day", + "2004-11-11": "Deepavali", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha", + "2005-02-01": "Federal Territory Day", + "2005-02-09": "Chinese New Year", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-02-23": "Thaipusam", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", + "2005-05-22": "Vesak Day", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2005-08-31": "National Day", + "2005-10-21": "Nuzul Al-Quran Day", + "2005-11-01": "Deepavali", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", + "2005-12-25": "Christmas Day", + "2005-12-26": "Christmas Day (observed)", + "2006-01-01": "New Year's Day", + "2006-01-02": "New Year's Day (observed)", + "2006-01-10": "Eid al-Adha", + "2006-01-29": "Chinese New Year", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Federal Territory Day", + "2006-02-02": "Chinese New Year (observed)", + "2006-02-13": "Thaipusam", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", + "2006-05-12": "Vesak Day", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2006-08-31": "National Day", + "2006-10-10": "Nuzul Al-Quran Day", + "2006-10-21": "Deepavali", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", + "2006-12-25": "Christmas Day", + "2006-12-31": "Eid al-Adha", + "2007-01-01": "New Year's Day", + "2007-01-02": "Eid al-Adha (observed)", + "2007-01-20": "Islamic New Year", + "2007-02-01": "Federal Territory Day", + "2007-02-18": "Chinese New Year", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-04": "Thaipusam", + "2007-03-05": "Thaipusam (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2007-08-31": "National Day", + "2007-09-29": "Nuzul Al-Quran Day", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-11-08": "Deepavali", + "2007-12-20": "Eid al-Adha", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-01-10": "Islamic New Year", + "2008-02-01": "Federal Territory Day", + "2008-02-07": "Chinese New Year", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-02-22": "Thaipusam", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", + "2008-05-19": "Vesak Day", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2008-08-31": "National Day", + "2008-09-01": "National Day (observed)", + "2008-09-18": "Nuzul Al-Quran Day", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-10-27": "Deepavali", + "2008-12-09": "Eid al-Adha", + "2008-12-25": "Christmas Day", + "2008-12-29": "Islamic New Year", + "2009-01-01": "New Year's Day", + "2009-01-11": "Thaipusam", + "2009-01-12": "Thaipusam (observed)", + "2009-01-26": "Chinese New Year", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-02-01": "Federal Territory Day", + "2009-02-02": "Federal Territory Day (observed)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", + "2009-05-09": "Vesak Day", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2009-08-31": "National Day", + "2009-09-07": "Nuzul Al-Quran Day", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-10-17": "Deepavali", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-01": "Federal Territory Day", + "2010-02-14": "Chinese New Year", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-03-01": "Thaipusam", + "2010-05-01": "Labor Day", + "2010-05-28": "Vesak Day", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2010-08-27": "Nuzul Al-Quran Day", + "2010-08-31": "National Day", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", + "2010-09-16": "Malaysia Day", + "2010-11-05": "Deepavali", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-01": "Federal Territory Day", + "2011-02-03": "Chinese New Year", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-02-18": "Thaipusam", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", + "2011-05-17": "Vesak Day", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-17": "Nuzul Al-Quran Day", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", + "2011-09-16": "Malaysia Day", + "2011-10-26": "Deepavali", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", + "2011-12-25": "Christmas Day", + "2011-12-26": "Christmas Day (observed)", + "2012-01-01": "New Year's Day", + "2012-01-02": "New Year's Day (observed)", + "2012-01-08": "Thaipusam", + "2012-01-09": "Thaipusam (observed)", + "2012-01-23": "Chinese New Year", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-01": "Federal Territory Day", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", + "2012-05-05": "Vesak Day", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-05": "Nuzul Al-Quran Day", + "2012-08-06": "Nuzul Al-Quran Day (observed)", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", + "2012-08-31": "National Day", + "2012-09-16": "Malaysia Day", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-13": "Deepavali", + "2012-11-15": "Islamic New Year", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-01-24": "Prophet Muhammad's Birthday", + "2013-02-01": "Federal Territory Day", + "2013-02-10": "Chinese New Year", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-02-25": "Thaipusam", + "2013-05-01": "Labor Day", + "2013-05-24": "Vesak Day", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-07-25": "Nuzul Al-Quran Day", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", + "2013-08-31": "National Day", + "2013-09-16": "Malaysia Day", + "2013-10-15": "Eid al-Adha", + "2013-11-02": "Deepavali", + "2013-11-05": "Islamic New Year", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-01-14": "Prophet Muhammad's Birthday", + "2014-01-31": "Chinese New Year", + "2014-02-01": "Chinese New Year (Second Day); Federal Territory Day", + "2014-02-14": "Thaipusam", + "2014-05-01": "Labor Day", + "2014-05-13": "Vesak Day", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-15": "Nuzul Al-Quran Day", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", + "2014-08-31": "National Day", + "2014-09-01": "National Day (observed)", + "2014-09-16": "Malaysia Day", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-22": "Deepavali", + "2014-10-25": "Islamic New Year", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-01-03": "Prophet Muhammad's Birthday", + "2015-02-01": "Federal Territory Day", + "2015-02-02": "Federal Territory Day (observed)", + "2015-02-19": "Chinese New Year", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-03-05": "Thaipusam", + "2015-05-01": "Labor Day", + "2015-05-03": "Vesak Day", + "2015-05-04": "Vesak Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-04": "Nuzul Al-Quran Day", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", + "2015-08-31": "National Day", + "2015-09-16": "Malaysia Day", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-11-10": "Deepavali", + "2015-12-24": "Prophet Muhammad's Birthday", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-01": "Federal Territory Day", + "2016-02-08": "Chinese New Year", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-02-23": "Thaipusam", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", + "2016-05-21": "Vesak Day", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-06-22": "Nuzul Al-Quran Day", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", + "2016-08-31": "National Day", + "2016-09-12": "Eid al-Adha", + "2016-09-16": "Malaysia Day", + "2016-10-02": "Islamic New Year", + "2016-10-29": "Deepavali", + "2016-12-12": "Prophet Muhammad's Birthday", + "2016-12-25": "Christmas Day", + "2016-12-26": "Christmas Day (observed)", + "2017-01-01": "New Year's Day", + "2017-01-02": "New Year's Day (observed)", + "2017-01-13": "Thaipusam", + "2017-01-28": "Chinese New Year", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-02-01": "Federal Territory Day", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", + "2017-05-10": "Vesak Day", + "2017-06-12": "Nuzul Al-Quran Day", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", + "2017-08-31": "National Day", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2017-09-16": "Malaysia Day", + "2017-09-22": "Islamic New Year", + "2017-10-18": "Deepavali", + "2017-12-01": "Prophet Muhammad's Birthday", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-01-31": "Thaipusam", + "2018-02-01": "Federal Territory Day", + "2018-02-16": "Chinese New Year", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", + "2018-05-29": "Vesak Day", + "2018-06-02": "Nuzul Al-Quran Day", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", + "2018-08-31": "National Day", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", + "2018-09-16": "Malaysia Day", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-06": "Deepavali", + "2018-11-20": "Prophet Muhammad's Birthday", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-01-21": "Thaipusam", + "2019-02-01": "Federal Territory Day", + "2019-02-05": "Chinese New Year", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", + "2019-05-19": "Vesak Day", + "2019-05-20": "Vesak Day (observed)", + "2019-05-22": "Nuzul Al-Quran Day", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", + "2019-08-31": "National Day", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2019-09-16": "Malaysia Day", + "2019-10-27": "Deepavali", + "2019-10-28": "Deepavali (observed)", + "2019-11-09": "Prophet Muhammad's Birthday", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-01-25": "Chinese New Year", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-02-01": "Federal Territory Day", + "2020-02-08": "Thaipusam", + "2020-05-01": "Labor Day", + "2020-05-07": "Vesak Day", + "2020-05-10": "Nuzul Al-Quran Day", + "2020-05-11": "Nuzul Al-Quran Day (observed)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", + "2020-08-31": "National Day", + "2020-09-16": "Malaysia Day", + "2020-10-29": "Prophet Muhammad's Birthday", + "2020-11-14": "Deepavali", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-01-28": "Thaipusam", + "2021-02-01": "Federal Territory Day", + "2021-02-12": "Chinese New Year", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-04-29": "Nuzul Al-Quran Day", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", + "2021-05-26": "Vesak Day", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", + "2021-08-31": "National Day", + "2021-09-16": "Malaysia Day", + "2021-10-19": "Prophet Muhammad's Birthday", + "2021-11-04": "Deepavali", + "2021-12-03": "Malaysia Cup Holiday", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-01-18": "Thaipusam", + "2022-02-01": "Chinese New Year; Federal Territory Day", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-04-19": "Nuzul Al-Quran Day", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", + "2022-05-15": "Vesak Day", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", + "2022-08-31": "National Day", + "2022-09-16": "Malaysia Day", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-10-24": "Deepavali", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", + "2022-12-25": "Christmas Day", + "2022-12-26": "Christmas Day (observed)", + "2023-01-01": "New Year's Day", + "2023-01-02": "New Year's Day (observed)", + "2023-01-22": "Chinese New Year", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-02-01": "Federal Territory Day", + "2023-02-05": "Thaipusam", + "2023-02-06": "Thaipusam (observed)", + "2023-04-08": "Nuzul Al-Quran Day", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", + "2023-05-04": "Vesak Day", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", + "2023-08-31": "National Day", + "2023-09-16": "Malaysia Day", + "2023-09-28": "Prophet Muhammad's Birthday", + "2023-11-12": "Deepavali", + "2023-11-13": "Deepavali (observed)", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-01-25": "Thaipusam", + "2024-02-01": "Federal Territory Day", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", + "2024-05-22": "Vesak Day", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", + "2024-08-31": "National Day", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", + "2024-10-31": "Deepavali", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-02-01": "Federal Territory Day", + "2025-02-11": "Thaipusam", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-08-31": "National Day", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-16": "Malaysia Day", + "2025-11-18": "Deepavali", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-01": "Federal Territory Day; Thaipusam", + "2026-02-02": "Federal Territory Day (observed); Thaipusam (observed)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-31": "National Day", + "2026-09-16": "Malaysia Day", + "2026-11-07": "Deepavali", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-01-22": "Thaipusam", + "2027-02-01": "Federal Territory Day", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-31": "National Day", + "2027-09-16": "Malaysia Day", + "2027-10-27": "Deepavali", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-01-11": "Thaipusam", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-01": "Federal Territory Day", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (observed, estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-31": "National Day", + "2028-09-16": "Malaysia Day", + "2028-11-14": "Deepavali", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-02-28": "Thaipusam", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-08-31": "National Day", + "2029-09-16": "Malaysia Day", + "2029-09-17": "Malaysia Day (observed)", + "2029-11-04": "Deepavali", + "2029-11-05": "Deepavali (observed)", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-01": "Federal Territory Day", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-02-17": "Thaipusam", + "2030-02-18": "Thaipusam (observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Vesak Day (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-08-31": "National Day", + "2030-09-16": "Malaysia Day", + "2030-10-25": "Deepavali", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-01-08": "Thaipusam", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-02-01": "Federal Territory Day", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", + "2031-05-06": "Vesak Day (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-08-31": "National Day", + "2031-09-01": "National Day (observed)", + "2031-09-16": "Malaysia Day", + "2031-11-13": "Deepavali", + "2031-12-25": "Christmas Day", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", + "2032-02-01": "Federal Territory Day", + "2032-02-02": "Federal Territory Day (observed)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-02-26": "Thaipusam", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2032-08-31": "National Day", + "2032-09-16": "Malaysia Day", + "2032-11-01": "Deepavali", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (Second Day) (estimated); Federal Territory Day", + "2033-02-14": "Thaipusam", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", + "2033-05-13": "Vesak Day (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-08-31": "National Day", + "2033-09-16": "Malaysia Day", + "2033-10-21": "Deepavali", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", + "2033-12-25": "Christmas Day", + "2033-12-26": "Christmas Day (observed)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (observed)", + "2034-02-01": "Federal Territory Day", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-05": "Thaipusam", + "2034-03-06": "Thaipusam (observed)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2034-08-31": "National Day", + "2034-09-16": "Malaysia Day", + "2034-11-09": "Deepavali", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-01": "Federal Territory Day", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-02-23": "Thaipusam", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", + "2035-05-22": "Vesak Day (estimated)", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2035-08-31": "National Day", + "2035-09-16": "Malaysia Day", + "2035-09-17": "Malaysia Day (observed)", + "2035-10-29": "Deepavali", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-01-13": "Thaipusam", + "2036-01-14": "Thaipusam (observed)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-01": "Federal Territory Day", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2036-08-31": "National Day", + "2036-09-01": "National Day (observed)", + "2036-09-16": "Malaysia Day", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", + "2036-11-16": "Deepavali", + "2036-11-17": "Deepavali (observed)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-01": "Federal Territory Day", + "2037-02-02": "Federal Territory Day (observed)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-03-02": "Thaipusam", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", + "2037-05-29": "Vesak Day (estimated)", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2037-08-31": "National Day", + "2037-09-16": "Malaysia Day", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", + "2037-11-05": "Deepavali", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-01": "Federal Territory Day", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-02-19": "Thaipusam", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", + "2038-05-18": "Vesak Day (estimated)", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2038-08-31": "National Day", + "2038-09-16": "Malaysia Day", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-26": "Deepavali", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-09": "Thaipusam", + "2039-01-10": "Thaipusam (observed)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-02-01": "Federal Territory Day", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", + "2039-05-07": "Vesak Day (estimated)", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2039-08-31": "National Day", + "2039-09-16": "Malaysia Day", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", + "2039-11-14": "Deepavali", + "2039-12-25": "Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-01": "Federal Territory Day", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-02-27": "Thaipusam", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", + "2040-05-25": "Vesak Day (estimated)", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2040-08-31": "National Day", + "2040-09-16": "Malaysia Day", + "2040-09-17": "Malaysia Day (observed)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (observed, estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-11-03": "Deepavali", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-02-15": "Thaipusam", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", + "2041-05-14": "Vesak Day (estimated)", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2041-08-31": "National Day", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", + "2041-09-16": "Malaysia Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-10-23": "Deepavali", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-01-07": "Thaipusam", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-02-01": "Federal Territory Day", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2042-08-31": "National Day", + "2042-09-01": "National Day (observed)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-11": "Deepavali", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-01": "Federal Territory Day", + "2043-02-02": "Federal Territory Day (observed)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-02-24": "Thaipusam", + "2043-05-01": "Labor Day", + "2043-05-23": "Vesak Day (estimated)", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-31": "National Day", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", + "2043-09-16": "Malaysia Day", + "2043-10-31": "Deepavali", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Federal Territory Day", + "2044-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-14": "Thaipusam", + "2044-02-15": "Thaipusam (observed)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", + "2044-05-12": "Vesak Day (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", + "2044-08-31": "National Day", + "2044-09-16": "Malaysia Day", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-17": "Deepavali", + "2044-11-21": "Islamic New Year (estimated)", + "2044-12-25": "Christmas Day", + "2044-12-26": "Christmas Day (observed)", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-02-01": "Federal Territory Day", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-03-04": "Thaipusam", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", + "2045-08-31": "National Day", + "2045-09-16": "Malaysia Day", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-07": "Deepavali", + "2045-11-10": "Islamic New Year (estimated)", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", + "2046-02-01": "Federal Territory Day", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-02-21": "Thaipusam", + "2046-05-01": "Labor Day", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", + "2046-08-31": "National Day", + "2046-09-16": "Malaysia Day", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-27": "Deepavali", + "2046-10-31": "Islamic New Year (estimated)", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-11": "Thaipusam", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-02-01": "Federal Territory Day", + "2047-05-01": "Labor Day", + "2047-05-09": "Vesak Day (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", + "2047-08-31": "National Day", + "2047-09-16": "Malaysia Day", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-11-15": "Deepavali", + "2047-12-25": "Christmas Day", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", + "2048-01-01": "New Year's Day", + "2048-02-01": "Federal Territory Day", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-02-28": "Thaipusam", + "2048-05-01": "Labor Day", + "2048-05-27": "Vesak Day (estimated)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (observed, estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", + "2048-08-31": "National Day", + "2048-09-16": "Malaysia Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-11-04": "Deepavali", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-01": "Federal Territory Day", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-02-17": "Thaipusam", + "2049-05-01": "Labor Day", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", + "2049-08-31": "National Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Malaysia Day", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-25": "Deepavali", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-01-08": "Thaipusam", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-02-01": "Federal Territory Day", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", + "2050-05-05": "Vesak Day (estimated)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", + "2050-08-31": "National Day", + "2050-09-16": "Malaysia Day", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-12": "Deepavali", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-12-25": "Christmas Day", + "2050-12-26": "Christmas Day (observed)" +} diff --git a/snapshots/countries/MY_COMMON.json b/snapshots/countries/MY_COMMON.json index c58fb1c1e..d2b5c61a9 100644 --- a/snapshots/countries/MY_COMMON.json +++ b/snapshots/countries/MY_COMMON.json @@ -1,1510 +1,1317 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", + "1952-01-28": "Chinese New Year (Second Day) (estimated)", + "1952-01-29": "Chinese New Year (observed, estimated)", "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "1952-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (Second Day) (estimated)", + "1952-08-31": "Eid al-Adha (estimated); National Day", + "1952-09-01": "Eid al-Adha (observed, estimated); National Day (observed)", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (observed, estimated)", "1952-12-25": "Christmas Day", "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-05-01": "Labour Day", + "1953-02-15": "Chinese New Year (Second Day) (estimated)", + "1953-02-16": "Chinese New Year (Second Day) (observed, estimated)", "1953-05-27": "Vesak Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", + "1953-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (Second Day) (estimated)", + "1953-06-15": "Eid al-Fitr (Second Day) (observed, estimated)", + "1953-08-20": "Eid al-Adha (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", "1953-12-25": "Christmas Day", "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-05-01": "Labour Day", + "1954-02-04": "Chinese New Year (Second Day) (estimated)", "1954-05-17": "Vesak Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (Second Day) (estimated)", + "1954-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1954-08-09": "Eid al-Adha (estimated)", "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", "1954-12-25": "Christmas Day", "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", + "1955-01-25": "Chinese New Year (Second Day) (estimated)", "1955-05-06": "Vesak Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (Second Day) (estimated)", + "1955-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1955-07-30": "Eid al-Adha (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", + "1955-12-26": "Christmas Day (observed)", "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-02-13": "Chinese New Year (Second Day) (estimated)", + "1956-02-14": "Chinese New Year (observed, estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (Second Day) (estimated)", "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", + "1956-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1956-07-19": "Eid al-Adha (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", "1956-12-25": "Christmas Day", "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-02-01": "Chinese New Year (Second Day) (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr (Second Day) (estimated)", "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", + "1957-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1957-07-08": "Eid al-Adha (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (observed, estimated)", "1957-12-25": "Christmas Day", "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", + "1958-02-19": "Chinese New Year (Second Day) (estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (Second Day) (estimated)", + "1958-04-22": "Eid al-Fitr (observed, estimated)", "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", + "1958-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1958-06-27": "Eid al-Adha (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", + "1958-09-01": "National Day (observed)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", "1958-12-25": "Christmas Day", "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", + "1959-02-09": "Chinese New Year (Second Day) (estimated)", + "1959-02-10": "Chinese New Year (observed, estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (Second Day) (estimated)", "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "1959-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1959-06-17": "Eid al-Adha (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", "1959-12-25": "Christmas Day", "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", + "1960-01-29": "Chinese New Year (Second Day) (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (Second Day) (estimated)", "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", + "1960-06-04": "Birthday of HM Yang di-Pertuan Agong; Eid al-Adha (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", + "1960-12-26": "Christmas Day (observed)", "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", + "1961-02-16": "Chinese New Year (Second Day) (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (Second Day) (estimated)", + "1961-03-20": "Eid al-Fitr (Second Day) (observed, estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1961-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", "1961-08-31": "National Day", - "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", + "1962-02-06": "Chinese New Year (Second Day) (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (Second Day) (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "1962-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (observed, estimated)", "1962-08-31": "National Day", - "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", + "1963-01-26": "Chinese New Year (Second Day) (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (Second Day) (estimated)", + "1963-02-26": "Eid al-Fitr (observed, estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1963-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", "1963-08-31": "National Day", - "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (Second Day) (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1964-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", "1964-08-31": "National Day", - "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-02-02": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1965-02-03": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (observed, estimated)", "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1965-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", "1965-08-31": "National Day", - "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", + "1966-01-22": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (Second Day) (estimated)", + "1966-01-24": "Eid al-Fitr (Second Day) (observed, estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1966-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", "1966-08-31": "National Day", - "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1966-12-26": "Christmas Day (observed)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (Second Day) (estimated)", "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", + "1967-02-10": "Chinese New Year (Second Day) (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1967-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", "1967-08-31": "National Day", - "1967-10-31": "Deepavali", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated)", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-01": "Eid al-Fitr (estimated)", + "1968-01-02": "Eid al-Fitr (Second Day) (estimated)", "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", + "1968-01-31": "Chinese New Year (Second Day) (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1968-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (Second Day) (estimated)", + "1968-12-23": "Eid al-Fitr (Second Day) (observed, estimated)", "1968-12-25": "Christmas Day", "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1969-02-18": "Chinese New Year (Second Day) (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-05-01": "Vesak Day (estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-06-07": "Birthday of HM Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", + "1969-09-01": "National Day (observed)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (Second Day) (estimated)", "1969-12-25": "Christmas Day", "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-02-07": "Chinese New Year (Second Day) (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "1970-06-06": "Birthday of HM Yang di-Pertuan Agong", "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (Second Day) (estimated)", "1970-12-25": "Christmas Day", "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-01-28": "Chinese New Year (Second Day) (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1971-05-10": "Vesak Day (observed, estimated)", + "1971-06-05": "Birthday of HM Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (Second Day) (estimated)", "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji (estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", + "1972-02-16": "Chinese New Year (Second Day) (estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1972-06-03": "Birthday of HM Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (Second Day) (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (observed, estimated)", "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", + "1973-02-04": "Chinese New Year (Second Day) (estimated)", + "1973-02-05": "Chinese New Year (Second Day) (observed, estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (observed, estimated)", + "1973-05-01": "Labor Day", "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", + "1973-06-02": "Birthday of HM Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (Second Day) (estimated)", + "1973-10-29": "Eid al-Fitr (Second Day) (observed, estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", + "1974-01-24": "Chinese New Year (Second Day) (estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-05-01": "Labor Day", "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", + "1974-06-01": "Birthday of HM Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (Second Day) (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", + "1975-02-12": "Chinese New Year (Second Day) (estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-05-01": "Labor Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "1975-05-26": "Vesak Day (observed, estimated)", + "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", + "1975-09-01": "National Day (observed)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (Second Day) (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", + "1976-02-01": "Chinese New Year (Second Day) (estimated)", + "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-05-01": "Labor Day", "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (Second Day) (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", + "1977-02-19": "Chinese New Year (Second Day) (estimated)", + "1977-03-02": "Prophet Muhammad's Birthday (estimated)", + "1977-05-01": "Labor Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "1977-05-03": "Labor Day (observed)", + "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (Second Day) (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", + "1977-12-26": "Christmas Day (observed)", "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-05-01": "Labour Day", + "1978-02-08": "Chinese New Year (Second Day) (estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", + "1978-05-01": "Labor Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "1978-05-22": "Vesak Day (observed, estimated)", + "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (Second Day) (estimated)", + "1978-09-05": "Eid al-Fitr (observed, estimated)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-12-25": "Christmas Day", "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", + "1979-01-29": "Chinese New Year (Second Day) (estimated)", + "1979-01-30": "Chinese New Year (observed, estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-05-01": "Labor Day", "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", + "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (Second Day) (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-05-01": "Labour Day", + "1980-02-17": "Chinese New Year (Second Day) (estimated)", + "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", + "1980-05-01": "Labor Day", "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", + "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (Second Day) (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", + "1980-09-01": "National Day (observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (observed, estimated)", "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Prophet Muhammad's Birthday (observed, estimated)", "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-05-01": "Labour Day", + "1981-02-06": "Chinese New Year (Second Day) (estimated)", + "1981-05-01": "Labor Day", "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", + "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (Second Day) (estimated)", + "1981-08-03": "Eid al-Fitr (Second Day) (observed, estimated)", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", + "1982-01-26": "Chinese New Year (Second Day) (estimated)", + "1982-05-01": "Labor Day", "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", + "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (Second Day) (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", + "1982-09-27": "Eid al-Adha (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", + "1983-02-14": "Chinese New Year (Second Day) (estimated)", + "1983-02-15": "Chinese New Year (observed, estimated)", + "1983-05-01": "Labor Day", + "1983-05-02": "Labor Day (observed)", "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", + "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (Second Day) (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", + "1983-12-26": "Christmas Day (observed)", "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-05-01": "Labour Day", + "1984-02-03": "Chinese New Year (Second Day) (estimated)", + "1984-05-01": "Labor Day", "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", + "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (Second Day) (estimated)", + "1984-07-02": "Eid al-Fitr (Second Day) (observed, estimated)", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", "1984-12-25": "Christmas Day", "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-05-01": "Labour Day", + "1985-02-21": "Chinese New Year (Second Day) (estimated)", + "1985-05-01": "Labor Day", "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", + "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (Second Day) (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (observed, estimated)", "1985-12-25": "Christmas Day", "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-05-01": "Labour Day", + "1986-02-10": "Chinese New Year (Second Day) (estimated)", + "1986-02-11": "Chinese New Year (observed, estimated)", + "1986-05-01": "Labor Day", "1986-05-23": "Vesak Day (estimated)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", + "1986-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (Second Day) (estimated)", + "1986-06-10": "Eid al-Fitr (observed, estimated)", + "1986-08-15": "Eid al-Adha (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1986-09-01": "National Day (observed)", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", "1986-12-25": "Christmas Day", "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-05-01": "Labour Day", + "1987-01-30": "Chinese New Year (Second Day) (estimated)", + "1987-05-01": "Labor Day", "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (Second Day) (estimated)", + "1987-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1987-08-04": "Eid al-Adha (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", "1987-12-25": "Christmas Day", "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-02-18": "Chinese New Year (Second Day) (estimated)", + "1988-05-01": "Labor Day", + "1988-05-02": "Labor Day (observed)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", + "1988-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1988-07-23": "Eid al-Adha (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", + "1988-12-26": "Christmas Day (observed)", "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", + "1989-02-07": "Chinese New Year (Second Day) (estimated)", + "1989-05-01": "Labor Day", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated)", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated)", "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", + "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1989-07-13": "Eid al-Adha (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", "1989-12-25": "Christmas Day", "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", + "1990-01-28": "Chinese New Year (Second Day) (estimated)", + "1990-01-29": "Chinese New Year (Second Day) (observed, estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", + "1990-05-01": "Labor Day", "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", + "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", + "1990-07-02": "Eid al-Adha (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", "1990-12-25": "Christmas Day", "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", + "1991-02-16": "Chinese New Year (Second Day) (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", + "1991-05-01": "Labor Day", "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", + "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1991-06-22": "Eid al-Adha (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", "1991-12-25": "Christmas Day", "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", + "1992-02-05": "Chinese New Year (Second Day) (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", + "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", + "1992-05-01": "Labor Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", + "1992-05-18": "Vesak Day (observed, estimated)", + "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1992-06-11": "Eid al-Adha (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", "1992-12-25": "Christmas Day", "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", + "1993-01-24": "Chinese New Year (Second Day) (estimated)", + "1993-01-25": "Chinese New Year (Second Day) (observed, estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", + "1993-05-01": "Labor Day", "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (observed, estimated)", "1993-08-31": "National Day", - "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", + "1994-02-11": "Chinese New Year (Second Day) (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (Second Day) (estimated)", + "1994-03-15": "Eid al-Fitr (observed, estimated)", + "1994-05-01": "Labor Day", + "1994-05-02": "Labor Day (observed)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", "1994-08-31": "National Day", - "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", + "1994-12-26": "Christmas Day (observed)", "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", + "1995-02-01": "Chinese New Year (Second Day) (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", + "1995-05-01": "Labor Day", + "1995-05-09": "Eid al-Adha (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1995-05-15": "Vesak Day (observed, estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-03": "Birthday of HM Yang di-Pertuan Agong", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", "1995-08-31": "National Day", - "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", + "1996-02-19": "Chinese New Year (estimated); Eid al-Fitr (estimated)", + "1996-02-20": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (Second Day) (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-01": "Labor Day", "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", "1996-08-31": "National Day", - "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-02-08": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (Second Day) (estimated)", + "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-01": "Labor Day", + "1997-05-07": "Islamic New Year (estimated)", "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", + "1997-09-01": "National Day (observed)", "1997-12-25": "Christmas Day", "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", + "1998-01-29": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (Second Day) (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-01": "Labor Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1998-05-11": "Vesak Day (observed, estimated)", + "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", "1998-08-31": "National Day", - "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (Second Day) (estimated)", "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", + "1999-02-17": "Chinese New Year (Second Day) (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-05-01": "Labor Day", "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", + "1999-11-29": "General election additional holiday", "1999-12-25": "Christmas Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (Second Day) (estimated)", + "2000-01-10": "Eid al-Fitr (Second Day) (observed, estimated)", "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", + "2000-02-06": "Chinese New Year (Second Day) (estimated)", + "2000-02-07": "Chinese New Year (Second Day) (observed, estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-05-01": "Labor Day", "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", "2000-08-31": "National Day", - "2000-10-25": "Deepavali", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (Second Day) (estimated)", "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", + "2001-01-25": "Chinese New Year (Second Day)", + "2001-03-06": "Eid al-Adha", + "2001-03-26": "Islamic New Year", + "2001-05-01": "Labor Day", "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2001-06-04": "Prophet Muhammad's Birthday", "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", + "2001-12-17": "Eid al-Fitr", + "2001-12-18": "Eid al-Fitr (Second Day)", "2001-12-25": "Christmas Day", "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2002-02-13": "Chinese New Year (Second Day)", + "2002-02-23": "Eid al-Adha", + "2002-03-15": "Islamic New Year", + "2002-05-01": "Labor Day", + "2002-05-24": "Prophet Muhammad's Birthday", "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", + "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", + "2002-12-06": "Eid al-Fitr", + "2002-12-07": "Eid al-Fitr (Second Day)", "2002-12-25": "Christmas Day", "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2003-02-02": "Chinese New Year (Second Day)", + "2003-02-03": "Chinese New Year (Second Day) (observed)", + "2003-02-12": "Eid al-Adha", + "2003-03-05": "Islamic New Year", + "2003-05-01": "Labor Day", + "2003-05-14": "Prophet Muhammad's Birthday", "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", + "2003-09-01": "National Day (observed)", + "2003-11-26": "Eid al-Fitr", + "2003-11-27": "Eid al-Fitr (Second Day)", "2003-12-25": "Christmas Day", "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2004-01-23": "Chinese New Year (Second Day)", + "2004-02-02": "Eid al-Adha", + "2004-02-22": "Islamic New Year", + "2004-05-01": "Labor Day", + "2004-05-02": "Prophet Muhammad's Birthday", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2004-05-04": "Prophet Muhammad's Birthday (observed)", + "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", "2004-08-31": "National Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", + "2004-11-14": "Eid al-Fitr", + "2004-11-15": "Eid al-Fitr (Second Day)", + "2004-11-16": "Eid al-Fitr (observed)", "2004-12-25": "Christmas Day", - "2005-01-21": "Hari Raya Haji", + "2005-01-21": "Eid al-Adha", "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", + "2005-02-10": "Chinese New Year (Second Day); Islamic New Year", + "2005-04-21": "Prophet Muhammad's Birthday", + "2005-05-01": "Labor Day", + "2005-05-02": "Labor Day (observed)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2005-05-23": "Vesak Day (observed)", + "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", "2005-08-31": "National Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", + "2005-11-03": "Eid al-Fitr", + "2005-11-04": "Eid al-Fitr (Second Day)", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-10": "Hari Raya Haji", + "2005-12-26": "Christmas Day (observed)", + "2006-01-10": "Eid al-Adha", "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", + "2006-01-30": "Chinese New Year (Second Day)", + "2006-01-31": "Islamic New Year", + "2006-02-01": "Chinese New Year (observed)", + "2006-04-11": "Prophet Muhammad's Birthday", + "2006-05-01": "Labor Day", "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", "2006-08-31": "National Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", + "2006-10-24": "Eid al-Fitr", + "2006-10-25": "Eid al-Fitr (Second Day)", "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", + "2006-12-31": "Eid al-Adha", + "2007-01-20": "Islamic New Year", "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", + "2007-02-19": "Chinese New Year (Second Day)", + "2007-02-20": "Chinese New Year (observed)", + "2007-03-31": "Prophet Muhammad's Birthday", + "2007-05-01": "Labor Day; Vesak Day", + "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", "2007-08-31": "National Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", + "2007-10-13": "Eid al-Fitr", + "2007-10-14": "Eid al-Fitr (Second Day)", + "2007-10-15": "Eid al-Fitr (Second Day) (observed)", + "2007-12-20": "Eid al-Adha", "2007-12-25": "Christmas Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", + "2008-01-10": "Islamic New Year", "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", + "2008-02-08": "Chinese New Year (Second Day)", + "2008-03-20": "Prophet Muhammad's Birthday", + "2008-05-01": "Labor Day", "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", + "2008-09-01": "National Day (observed)", + "2008-10-01": "Eid al-Fitr", + "2008-10-02": "Eid al-Fitr (Second Day)", + "2008-12-09": "Eid al-Adha", "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", + "2008-12-29": "Islamic New Year", "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", + "2009-01-27": "Chinese New Year (Second Day)", + "2009-03-09": "Prophet Muhammad's Birthday", + "2009-05-01": "Labor Day", "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", "2009-08-31": "National Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", + "2009-09-20": "Eid al-Fitr", + "2009-09-21": "Eid al-Fitr (Second Day)", + "2009-09-22": "Eid al-Fitr (observed)", + "2009-11-28": "Eid al-Adha", + "2009-12-18": "Islamic New Year", "2009-12-25": "Christmas Day", "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-05-01": "Labour Day", + "2010-02-15": "Chinese New Year (Second Day)", + "2010-02-16": "Chinese New Year (observed)", + "2010-02-26": "Prophet Muhammad's Birthday", + "2010-05-01": "Labor Day", "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", + "2010-09-10": "Eid al-Fitr", + "2010-09-11": "Eid al-Fitr (Second Day)", "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", + "2010-11-17": "Eid al-Adha", + "2010-12-08": "Islamic New Year", "2010-12-25": "Christmas Day", "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", + "2011-02-04": "Chinese New Year (Second Day)", + "2011-02-16": "Prophet Muhammad's Birthday", + "2011-05-01": "Labor Day", + "2011-05-02": "Labor Day (observed)", "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", + "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2011-08-31": "Eid al-Fitr; National Day", + "2011-09-01": "Eid al-Fitr (Second Day)", "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", + "2011-11-07": "Eid al-Adha", + "2011-11-27": "Islamic New Year", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", + "2011-12-26": "Christmas Day (observed)", "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", + "2012-01-24": "Chinese New Year (Second Day)", + "2012-02-05": "Prophet Muhammad's Birthday", + "2012-02-06": "Prophet Muhammad's Birthday (observed)", + "2012-05-01": "Labor Day", "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", + "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2012-08-19": "Eid al-Fitr", + "2012-08-20": "Eid al-Fitr (Second Day)", + "2012-08-21": "Eid al-Fitr (observed)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", + "2012-09-17": "Malaysia Day (observed)", + "2012-10-26": "Eid al-Adha", + "2012-11-15": "Islamic New Year", "2012-12-25": "Christmas Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2013-01-24": "Prophet Muhammad's Birthday", "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-05-01": "Labour Day", + "2013-02-11": "Chinese New Year (Second Day)", + "2013-02-12": "Chinese New Year (observed)", + "2013-05-01": "Labor Day", "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", + "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2013-08-08": "Eid al-Fitr", + "2013-08-09": "Eid al-Fitr (Second Day)", "2013-08-31": "National Day", "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", + "2013-10-15": "Eid al-Adha", + "2013-11-05": "Islamic New Year", "2013-12-25": "Christmas Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2014-01-14": "Prophet Muhammad's Birthday", "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-05-01": "Labour Day", + "2014-02-01": "Chinese New Year (Second Day)", + "2014-05-01": "Labor Day", "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", + "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2014-07-28": "Eid al-Fitr", + "2014-07-29": "Eid al-Fitr (Second Day)", "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", + "2014-09-01": "National Day (observed)", "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", + "2014-10-05": "Eid al-Adha", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-25": "Islamic New Year", "2014-12-25": "Christmas Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2015-01-03": "Prophet Muhammad's Birthday", "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-05-01": "Labour Day", + "2015-02-20": "Chinese New Year (Second Day)", + "2015-05-01": "Labor Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", + "2015-05-04": "Vesak Day (observed)", + "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2015-07-17": "Eid al-Fitr", + "2015-07-18": "Eid al-Fitr (Second Day)", "2015-08-31": "National Day", "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2015-09-24": "Eid al-Adha", + "2015-10-14": "Islamic New Year", + "2015-12-24": "Prophet Muhammad's Birthday", "2015-12-25": "Christmas Day", "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", + "2016-02-09": "Chinese New Year (Second Day)", + "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (observed)", "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", + "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2016-07-06": "Eid al-Fitr", + "2016-07-07": "Eid al-Fitr (Second Day)", "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", + "2016-09-12": "Eid al-Adha", "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2016-10-02": "Islamic New Year", + "2016-12-12": "Prophet Muhammad's Birthday", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", + "2016-12-26": "Christmas Day (observed)", "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-05-01": "Labour Day", + "2017-01-29": "Chinese New Year (Second Day)", + "2017-01-30": "Chinese New Year (Second Day) (observed)", + "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", + "2017-05-01": "Labor Day", "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", + "2017-06-25": "Eid al-Fitr", + "2017-06-26": "Eid al-Fitr (Second Day)", + "2017-06-27": "Eid al-Fitr (observed)", "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", + "2017-09-01": "Eid al-Adha", + "2017-09-04": "Additional holiday in commemoration of the 2017 SEA Games", + "2017-09-09": "Birthday of HM Yang di-Pertuan Agong", "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2017-09-22": "Islamic New Year", + "2017-12-01": "Prophet Muhammad's Birthday", "2017-12-25": "Christmas Day", "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", + "2018-02-17": "Chinese New Year (Second Day)", + "2018-05-01": "Labor Day", + "2018-05-09": "General election additional holiday", "2018-05-29": "Vesak Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", + "2018-06-15": "Eid al-Fitr", + "2018-06-16": "Eid al-Fitr (Second Day)", + "2018-08-22": "Eid al-Adha", "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", + "2018-09-09": "Birthday of HM Yang di-Pertuan Agong", + "2018-09-10": "Birthday of HM Yang di-Pertuan Agong (observed)", + "2018-09-11": "Islamic New Year", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2018-09-17": "Malaysia Day (observed)", + "2018-11-20": "Prophet Muhammad's Birthday", "2018-12-25": "Christmas Day", "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", + "2019-02-06": "Chinese New Year (Second Day)", + "2019-05-01": "Labor Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", + "2019-05-20": "Vesak Day (observed)", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Eid al-Fitr (Second Day)", + "2019-07-30": "Day of Installation of the 16th Yang di-Pertuan Agong", + "2019-08-11": "Eid al-Adha", + "2019-08-12": "Eid al-Adha (observed)", "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", + "2019-09-01": "Islamic New Year", + "2019-09-09": "Birthday of HM Yang di-Pertuan Agong", "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2019-11-09": "Prophet Muhammad's Birthday", "2019-12-25": "Christmas Day", "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-05-01": "Labour Day", + "2020-01-26": "Chinese New Year (Second Day)", + "2020-01-27": "Chinese New Year (Second Day) (observed)", + "2020-05-01": "Labor Day", "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", + "2020-05-24": "Eid al-Fitr", + "2020-05-25": "Eid al-Fitr (Second Day)", + "2020-05-26": "Eid al-Fitr (observed)", + "2020-06-08": "Birthday of HM Yang di-Pertuan Agong", + "2020-07-31": "Eid al-Adha", + "2020-08-20": "Islamic New Year", "2020-08-31": "National Day", "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", + "2020-10-29": "Prophet Muhammad's Birthday", "2020-12-25": "Christmas Day", "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", + "2021-02-13": "Chinese New Year (Second Day)", + "2021-05-01": "Labor Day", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Eid al-Fitr (Second Day)", "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", + "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2021-07-20": "Eid al-Adha", + "2021-08-10": "Islamic New Year", "2021-08-31": "National Day", "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", + "2021-10-19": "Prophet Muhammad's Birthday", "2021-12-25": "Christmas Day", "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", + "2022-02-02": "Chinese New Year (Second Day)", + "2022-05-01": "Labor Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Eid al-Fitr (Second Day)", + "2022-05-04": "Labor Day (observed)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", + "2022-05-16": "Vesak Day (observed)", + "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2022-07-10": "Eid al-Adha", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-30": "Islamic New Year", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", + "2022-10-10": "Prophet Muhammad's Birthday", + "2022-11-18": "General election additional holiday", + "2022-11-19": "General election additional holiday", + "2022-11-28": "Cuti Peristiwa", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", + "2022-12-26": "Christmas Day (observed)", "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", + "2023-01-23": "Chinese New Year (Second Day)", + "2023-01-24": "Chinese New Year (observed)", + "2023-04-21": "Eid al-Fitr (additional holiday)", + "2023-04-22": "Eid al-Fitr", + "2023-04-23": "Eid al-Fitr (Second Day)", + "2023-04-24": "Eid al-Fitr (Second Day) (observed)", + "2023-05-01": "Labor Day", "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", + "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2023-06-29": "Eid al-Adha", + "2023-07-19": "Islamic New Year", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", + "2023-09-28": "Prophet Muhammad's Birthday", "2023-12-25": "Christmas Day", "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", + "2024-02-11": "Chinese New Year (Second Day)", + "2024-02-12": "Chinese New Year (Second Day) (observed)", + "2024-04-10": "Eid al-Fitr", + "2024-04-11": "Eid al-Fitr (Second Day)", + "2024-05-01": "Labor Day", "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", + "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2024-06-17": "Eid al-Adha", + "2024-07-07": "Islamic New Year", "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", + "2024-09-16": "Malaysia Day; Prophet Muhammad's Birthday", "2024-12-25": "Christmas Day", "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", + "2025-01-30": "Chinese New Year (Second Day) (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (Second Day) (estimated)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", + "2025-05-01": "Labor Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", + "2025-05-12": "Vesak Day (observed, estimated)", + "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2025-09-01": "National Day (observed)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2026-02-18": "Chinese New Year (Second Day) (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", + "2026-05-01": "Labor Day; Vesak Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2026-06-16": "Islamic New Year (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", + "2027-02-07": "Chinese New Year (Second Day) (estimated)", + "2027-02-08": "Chinese New Year (Second Day) (observed, estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (Second Day) (estimated)", + "2027-05-01": "Labor Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (observed, estimated)", "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", + "2028-01-27": "Chinese New Year (Second Day) (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (Second Day) (estimated)", + "2028-02-28": "Eid al-Fitr (Second Day) (observed, estimated)", + "2028-05-01": "Labor Day", + "2028-05-05": "Eid al-Adha (estimated)", "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-02-14": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (Second Day) (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-01": "Labor Day", + "2029-05-14": "Islamic New Year (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2029-05-28": "Vesak Day (observed, estimated)", + "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", + "2029-09-17": "Malaysia Day (observed)", "2029-12-25": "Christmas Day", "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-02-04": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (Second Day) (estimated)", + "2030-02-06": "Chinese New Year (observed, estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-01": "Labor Day", + "2030-05-03": "Islamic New Year (estimated)", "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", + "2031-01-24": "Chinese New Year (Second Day) (estimated); Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (Second Day) (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Labor Day", "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", + "2031-09-01": "National Day (observed)", "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (Second Day) (estimated)", "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", + "2032-02-12": "Chinese New Year (Second Day) (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-05-01": "Labor Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "2032-05-24": "Vesak Day (observed, estimated)", + "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (observed, estimated)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (Second Day) (estimated)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", + "2033-02-01": "Chinese New Year (Second Day) (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-05-01": "Labor Day", + "2033-05-02": "Labor Day (observed)", "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (Second Day) (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", + "2033-12-26": "Christmas Day (observed)", "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", + "2034-02-20": "Chinese New Year (Second Day) (estimated)", + "2034-02-21": "Chinese New Year (observed, estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-01": "Labor Day", "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (Second Day) (estimated)", "2034-12-25": "Christmas Day", "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "2035-02-09": "Chinese New Year (Second Day) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (observed, estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-05-01": "Labor Day", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", + "2035-09-17": "Malaysia Day (observed)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (Second Day) (estimated)", + "2035-12-03": "Eid al-Fitr (Second Day) (observed, estimated)", "2035-12-25": "Christmas Day", "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-01-29": "Chinese New Year (Second Day) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-01": "Labor Day", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", + "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", + "2036-09-01": "National Day (observed)", "2036-09-16": "Malaysia Day", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (Second Day) (estimated)", "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", + "2037-02-16": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2037-02-17": "Chinese New Year (observed, estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-05-01": "Labor Day", "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", + "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (Second Day) (estimated)", + "2037-11-10": "Eid al-Fitr (observed, estimated)", "2037-12-25": "Christmas Day", - "2038-01-16": "Hari Raya Haji (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", + "2038-02-05": "Chinese New Year (Second Day) (estimated); Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-05-01": "Labor Day", "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", + "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (Second Day) (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", + "2039-01-25": "Chinese New Year (Second Day) (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-05-01": "Labor Day", + "2039-05-02": "Labor Day (observed)", "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", + "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (Second Day) (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Christmas Day (observed)", + "2040-01-15": "Islamic New Year (estimated)", "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", + "2040-02-13": "Chinese New Year (Second Day) (estimated)", + "2040-02-14": "Chinese New Year (observed, estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", + "2040-05-01": "Labor Day", "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", + "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", + "2040-09-17": "Malaysia Day (observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (Second Day) (estimated)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-01-04": "Islamic New Year (estimated)", "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", + "2041-02-02": "Chinese New Year (Second Day) (estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-05-01": "Labor Day", "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", + "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (Second Day) (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2041-12-25": "Christmas Day", "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", + "2042-01-23": "Chinese New Year (Second Day) (estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-05-01": "Labor Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", + "2042-05-05": "Vesak Day (observed, estimated)", + "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", + "2042-09-01": "National Day (observed)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (Second Day) (estimated); Malaysia Day", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (observed, estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2042-12-25": "Christmas Day", "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-05-01": "Labour Day", + "2043-02-11": "Chinese New Year (Second Day) (estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", + "2043-05-01": "Labor Day", "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", + "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (Second Day) (estimated)", "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2043-12-25": "Christmas Day", "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", + "2044-01-31": "Chinese New Year (Second Day) (estimated)", + "2044-02-01": "Chinese New Year (Second Day) (observed, estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-05-01": "Labor Day", + "2044-05-02": "Labor Day (observed)", "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", + "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (Second Day) (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2044-12-26": "Christmas Day (observed)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", + "2045-02-18": "Chinese New Year (Second Day) (estimated)", + "2045-05-01": "Labor Day; Vesak Day (estimated)", + "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (Second Day) (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-05-01": "Labour Day", + "2046-02-07": "Chinese New Year (Second Day) (estimated)", + "2046-05-01": "Labor Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", + "2046-05-21": "Vesak Day (observed, estimated)", + "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (Second Day) (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", + "2046-09-17": "Malaysia Day (observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-05-01": "Labour Day", + "2047-01-27": "Chinese New Year (Second Day) (estimated)", + "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", + "2047-05-01": "Labor Day", "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", + "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (Second Day) (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (observed, estimated)", "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-05-01": "Labour Day", + "2048-02-15": "Chinese New Year (Second Day) (estimated)", + "2048-05-01": "Labor Day", "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", + "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (Second Day) (estimated)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", "2048-12-25": "Christmas Day", "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-05-01": "Labour Day", + "2049-02-03": "Chinese New Year (Second Day) (estimated)", + "2049-05-01": "Labor Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", + "2049-05-17": "Vesak Day (observed, estimated)", + "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (Second Day) (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2049-09-28": "Islamic New Year (estimated)", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", "2049-12-25": "Christmas Day", "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", + "2050-01-24": "Chinese New Year (Second Day) (estimated)", + "2050-01-25": "Chinese New Year (observed, estimated)", + "2050-05-01": "Labor Day", + "2050-05-02": "Labor Day (observed)", "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", + "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (Second Day) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (observed, estimated)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/MY_JHR.json b/snapshots/countries/MY_JHR.json deleted file mode 100644 index 254b8ba67..000000000 --- a/snapshots/countries/MY_JHR.json +++ /dev/null @@ -1,1809 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year (estimated) (in lieu)", - "1950-03-03": "Thaipusam", - "1950-03-05": "Thaipusam (in lieu)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-17": "Beginning of Ramadan (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-02-21": "Thaipusam", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-06": "Beginning of Ramadan (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Hari Raya Puasa (estimated) (in lieu)", - "1951-08-31": "National Day", - "1951-09-02": "National Day (in lieu)", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-05-25": "Beginning of Ramadan (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-28": "Thaipusam", - "1953-05-01": "Labour Day", - "1953-05-03": "Labour Day (in lieu)", - "1953-05-14": "Beginning of Ramadan (estimated)", - "1953-05-27": "Vesak Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1953-12-27": "Christmas Day (in lieu)", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-02-18": "Thaipusam", - "1954-05-01": "Labour Day", - "1954-05-04": "Beginning of Ramadan (estimated)", - "1954-05-17": "Vesak Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-09": "Thaipusam", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-04-24": "Beginning of Ramadan (estimated)", - "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-08": "Vesak Day (estimated) (in lieu)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-26": "Thaipusam", - "1956-04-12": "Beginning of Ramadan (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Hari Raya Puasa (estimated) (in lieu)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-09-02": "National Day (in lieu)", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-03": "Chinese New Year Holiday (estimated) (in lieu)", - "1957-02-15": "Thaipusam", - "1957-02-17": "Thaipusam (in lieu)", - "1957-04-01": "Beginning of Ramadan (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-05": "Thaipusam", - "1958-03-21": "Beginning of Ramadan (estimated)", - "1958-03-23": "Beginning of Ramadan (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1958-11-09": "Deepavali", - "1958-12-25": "Christmas Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-22": "Thaipusam", - "1959-03-11": "Beginning of Ramadan (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Hari Raya Puasa (estimated) (in lieu)", - "1959-05-01": "Labour Day", - "1959-05-03": "Labour Day (in lieu)", - "1959-05-22": "Vesak Day (estimated)", - "1959-05-24": "Vesak Day (estimated) (in lieu)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-11-01": "Deepavali (in lieu)", - "1959-12-25": "Christmas Day", - "1959-12-27": "Christmas Day (in lieu)", - "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-01-31": "Chinese New Year Holiday (estimated) (in lieu)", - "1960-02-28": "Beginning of Ramadan (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1961-03-02": "Thaipusam", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-19": "Thaipusam", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-05-20": "Vesak Day (estimated) (in lieu)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-31": "National Day", - "1962-09-02": "National Day (in lieu)", - "1962-10-26": "Deepavali", - "1962-10-28": "Deepavali (in lieu)", - "1962-12-25": "Christmas Day", - "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year (estimated) (in lieu)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-15": "Beginning of Ramadan (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "1964-02-28": "Thaipusam", - "1964-03-01": "Thaipusam (in lieu)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-03": "Labour Day (in lieu)", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1964-12-27": "Christmas Day (in lieu)", - "1965-01-03": "Beginning of Ramadan (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-10-24": "Deepavali (in lieu)", - "1965-12-23": "Beginning of Ramadan (estimated)", - "1965-12-25": "Christmas Day", - "1966-01-06": "Thaipusam", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-13": "Beginning of Ramadan (estimated)", - "1966-12-25": "Christmas Day", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-01-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "1967-02-24": "Thaipusam", - "1967-02-26": "Thaipusam (in lieu)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-02": "Beginning of Ramadan (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated)", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-11-21": "Beginning of Ramadan (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-11-08": "Deepavali", - "1969-11-10": "Beginning of Ramadan (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year (estimated) (in lieu)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-03": "Labour Day (in lieu)", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-01": "Beginning of Ramadan (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1970-12-27": "Christmas Day (in lieu)", - "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-10-20": "Beginning of Ramadan (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Hari Raya Puasa (estimated) (in lieu)", - "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-08": "Beginning of Ramadan (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-18": "Thaipusam", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-09-02": "National Day (in lieu)", - "1973-09-27": "Beginning of Ramadan (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-09-17": "Beginning of Ramadan (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-06": "Beginning of Ramadan (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-15": "Thaipusam", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-26": "Beginning of Ramadan (estimated)", - "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Hari Raya Puasa (estimated) (in lieu)", - "1976-11-19": "Deepavali", - "1976-11-21": "Deepavali (in lieu)", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year (estimated) (in lieu)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-03-05": "Thaipusam", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-15": "Beginning of Ramadan (estimated)", - "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-22": "Thaipusam", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-05": "Beginning of Ramadan (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-07-25": "Beginning of Ramadan (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1979-08-31": "National Day", - "1979-09-02": "National Day (in lieu)", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-03-02": "Thaipusam", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-13": "Beginning of Ramadan (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "1981-02-19": "Thaipusam", - "1981-05-01": "Labour Day", - "1981-05-03": "Labour Day (in lieu)", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-02": "Beginning of Ramadan (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1981-12-27": "Christmas Day (in lieu)", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-10": "Thaipusam", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-22": "Beginning of Ramadan (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-28": "Thaipusam", - "1983-05-01": "Labour Day", - "1983-05-27": "Vesak Day (estimated)", - "1983-05-29": "Vesak Day (estimated) (in lieu)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-12": "Beginning of Ramadan (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1984-02-17": "Thaipusam", - "1984-02-19": "Thaipusam (in lieu)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-05-31": "Beginning of Ramadan (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-08-31": "National Day", - "1984-09-02": "National Day (in lieu)", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-03-06": "Thaipusam", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-20": "Beginning of Ramadan (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-23": "Thaipusam", - "1986-05-01": "Labour Day", - "1986-05-09": "Beginning of Ramadan (estimated)", - "1986-05-11": "Beginning of Ramadan (estimated) (in lieu)", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Vesak Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", - "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-02": "Deepavali (in lieu)", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1986-12-25": "Christmas Day", - "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "1987-04-29": "Beginning of Ramadan (estimated)", - "1987-05-01": "Labour Day", - "1987-05-03": "Labour Day (in lieu)", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-05-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1987-12-27": "Christmas Day (in lieu)", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-03": "Thaipusam", - "1988-04-17": "Beginning of Ramadan (estimated)", - "1988-05-01": "Labour Day", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-02-21": "Thaipusam", - "1989-04-07": "Beginning of Ramadan (estimated)", - "1989-04-09": "Beginning of Ramadan (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-19": "Vesak Day (estimated)", - "1989-05-21": "Vesak Day (estimated) (in lieu)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-10-29": "Deepavali (in lieu)", - "1989-12-25": "Christmas Day", - "1990-01-12": "Thaipusam", - "1990-01-14": "Thaipusam (in lieu)", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-03-27": "Beginning of Ramadan (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-04-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-09-02": "National Day (in lieu)", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year (estimated) (in lieu)", - "1991-03-01": "Thaipusam", - "1991-03-03": "Thaipusam (in lieu)", - "1991-03-17": "Beginning of Ramadan (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-02-18": "Thaipusam", - "1992-03-05": "Beginning of Ramadan (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-05-01": "Labour Day", - "1992-05-03": "Labour Day (in lieu)", - "1992-05-17": "Vesak Day (estimated)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1992-12-27": "Christmas Day (in lieu)", - "1993-01-08": "Thaipusam", - "1993-01-10": "Thaipusam (in lieu)", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-02-22": "Beginning of Ramadan (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-11-14": "Deepavali (in lieu)", - "1993-12-25": "Christmas Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1994-02-13": "Beginning of Ramadan (estimated) (in lieu); Chinese New Year Holiday (estimated) (in lieu)", - "1994-02-25": "Thaipusam", - "1994-02-27": "Thaipusam (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-14": "Thaipusam", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-03-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-21": "Beginning of Ramadan (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-10": "Beginning of Ramadan (estimated)", - "1997-01-12": "Beginning of Ramadan (estimated) (in lieu)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year (estimated) (in lieu)", - "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1997-12-30": "Beginning of Ramadan (estimated)", - "1998-01-13": "Thaipusam", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-02-01": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-03": "Labour Day (in lieu)", - "1998-05-10": "Vesak Day (estimated)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-19": "Beginning of Ramadan (estimated)", - "1998-12-25": "Christmas Day", - "1998-12-27": "Christmas Day (in lieu)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-09": "Beginning of Ramadan (estimated)", - "1999-12-25": "Christmas Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-20": "Thaipusam", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-11-27": "Beginning of Ramadan (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-09": "Thaipusam", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-09-02": "National Day (in lieu)", - "2001-11-14": "Deepavali", - "2001-11-17": "Beginning of Ramadan", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-27": "Thaipusam", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-06": "Beginning of Ramadan", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Hari Raya Puasa (in lieu)", - "2002-12-25": "Christmas Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-12": "Hari Raya Haji", - "2003-02-16": "Thaipusam", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-10-23": "Deepavali", - "2003-10-27": "Beginning of Ramadan", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-07": "Thaipusam", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-01-25": "Chinese New Year Holiday (in lieu)", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-10-16": "Beginning of Ramadan", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-12-25": "Christmas Day", - "2005-01-21": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji (in lieu)", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-02-23": "Thaipusam", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-22": "Vesak Day", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-05": "Beginning of Ramadan", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-11-06": "Second day of Hari Raya Puasa (in lieu)", - "2005-12-25": "Christmas Day", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year)", - "2006-02-13": "Thaipusam", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-05-14": "Vesak Day (in lieu)", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-09-24": "Beginning of Ramadan", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-03-04": "Thaipusam", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-02": "National Day (in lieu)", - "2007-09-13": "Beginning of Ramadan", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-10": "Chinese New Year Holiday (in lieu)", - "2008-02-22": "Thaipusam", - "2008-02-24": "Thaipusam (in lieu)", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-02": "Beginning of Ramadan", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-11": "Thaipusam", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-03": "Labour Day (in lieu)", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-22": "Beginning of Ramadan", - "2009-08-31": "National Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2009-12-27": "Christmas Day (in lieu)", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-02-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2010-03-01": "Thaipusam", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-05-30": "Vesak Day (in lieu)", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-11": "Beginning of Ramadan", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Hari Raya Puasa (in lieu)", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-07": "Deepavali (in lieu)", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-12": "Hari Hol of Sultan Iskandar of Johor", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-06": "Chinese New Year Holiday (in lieu)", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-02-18": "Thaipusam", - "2011-02-20": "Thaipusam (in lieu)", - "2011-05-01": "Labour Day", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-01": "Beginning of Ramadan", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-09-18": "Malaysia Day (in lieu)", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2012-01-01": "Hari Hol of Sultan Iskandar of Johor", - "2012-01-08": "Thaipusam", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-07-20": "Beginning of Ramadan", - "2012-07-22": "Beginning of Ramadan (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-31": "National Day", - "2012-09-02": "National Day (in lieu)", - "2012-09-16": "Malaysia Day", - "2012-10-26": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji (in lieu)", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-20": "Hari Hol of Sultan Iskandar of Johor", - "2012-12-25": "Christmas Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-25": "Thaipusam", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-05-26": "Vesak Day (in lieu)", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-09": "Beginning of Ramadan", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-11": "Second day of Hari Raya Puasa (in lieu)", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-10": "Hari Hol of Sultan Iskandar of Johor", - "2013-12-25": "Christmas Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year (in lieu)", - "2014-02-14": "Thaipusam", - "2014-02-16": "Thaipusam (in lieu)", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-06-29": "Beginning of Ramadan", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-11-29": "Hari Hol of Sultan Iskandar of Johor", - "2014-12-25": "Christmas Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-02-22": "Chinese New Year Holiday (in lieu)", - "2015-03-05": "Thaipusam", - "2015-03-23": "Birthday of the Sultan of Johor", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Labour Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-06-18": "Beginning of Ramadan", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Hari Raya Puasa (in lieu)", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-11-19": "Hari Hol of Sultan Iskandar of Johor", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2015-12-27": "Christmas Day (in lieu)", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-02-23": "Thaipusam", - "2016-03-23": "Birthday of the Sultan of Johor", - "2016-05-01": "Labour Day", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-07": "Beginning of Ramadan", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-09-18": "Malaysia Day (in lieu)", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-11-07": "Hari Hol of Sultan Iskandar of Johor", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2017-01-13": "Thaipusam", - "2017-01-15": "Thaipusam (in lieu)", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-03-23": "Birthday of the Sultan of Johor", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-05-27": "Beginning of Ramadan", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji (in lieu)", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-10-27": "Hari Hol of Sultan Iskandar of Johor", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2017-12-25": "Christmas Day", - "2018-01-31": "Thaipusam", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year (in lieu)", - "2018-03-23": "Birthday of the Sultan of Johor", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-17": "Beginning of Ramadan", - "2018-05-29": "Vesak Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Hari Raya Puasa (in lieu)", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-02": "National Day (in lieu)", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-10-15": "Hari Hol of Sultan Iskandar of Johor", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-21": "Thaipusam", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-03-23": "Birthday of the Sultan of Johor", - "2019-05-01": "Labour Day", - "2019-05-06": "Beginning of Ramadan", - "2019-05-19": "Vesak Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-05": "Hari Hol of Sultan Iskandar of Johor", - "2019-10-27": "Deepavali", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-02-08": "Thaipusam", - "2020-03-23": "Birthday of the Sultan of Johor", - "2020-04-24": "Beginning of Ramadan", - "2020-04-26": "Beginning of Ramadan (in lieu)", - "2020-05-01": "Labour Day", - "2020-05-03": "Labour Day (in lieu)", - "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji (in lieu)", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-09-24": "Hari Hol of Sultan Iskandar of Johor", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2020-12-27": "Christmas Day (in lieu)", - "2021-01-28": "Thaipusam", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year (in lieu)", - "2021-03-23": "Birthday of the Sultan of Johor", - "2021-04-13": "Beginning of Ramadan", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-16": "Second day of Hari Raya Puasa (in lieu)", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-13": "Hari Hol of Sultan Iskandar of Johor", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-03-23": "Birthday of the Sultan of Johor", - "2022-04-03": "Beginning of Ramadan", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day Holiday", - "2022-05-15": "Vesak Day", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-03": "Hari Hol of Sultan Iskandar of Johor", - "2022-09-16": "Malaysia Day", - "2022-09-18": "Malaysia Day (in lieu)", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-02-05": "Thaipusam", - "2023-03-23": "Beginning of Ramadan; Birthday of the Sultan of Johor", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-22": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-12-25": "Christmas Day", - "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-03-12": "Beginning of Ramadan", - "2024-03-23": "Birthday of the Sultan of Johor", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-11": "Hari Hol of Sultan Iskandar of Johor", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-11": "Thaipusam", - "2025-03-01": "Beginning of Ramadan (estimated)", - "2025-03-23": "Birthday of the Sultan of Johor", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-07-31": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-02-01": "Thaipusam", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Hari Raya Puasa (estimated) (in lieu)", - "2026-03-23": "Birthday of the Sultan of Johor", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-03": "Labour Day (in lieu); Vesak Day (estimated) (in lieu)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-07-20": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2026-12-27": "Christmas Day (in lieu)", - "2027-01-22": "Thaipusam", - "2027-01-24": "Thaipusam (in lieu)", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Beginning of Ramadan (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-03-23": "Birthday of the Sultan of Johor", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-07-10": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day", - "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-01-28": "Beginning of Ramadan (estimated)", - "2028-01-30": "Beginning of Ramadan (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-03-23": "Birthday of the Sultan of Johor", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-06-29": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-16": "Beginning of Ramadan (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-02-28": "Thaipusam", - "2029-03-23": "Birthday of the Sultan of Johor", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-06-18": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-02": "National Day (in lieu)", - "2029-09-16": "Malaysia Day", - "2029-11-04": "Deepavali", - "2029-12-25": "Christmas Day", - "2030-01-05": "Beginning of Ramadan (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-17": "Thaipusam", - "2030-03-23": "Birthday of the Sultan of Johor", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-06-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-10-27": "Deepavali (in lieu)", - "2030-12-25": "Christmas Day", - "2030-12-26": "Beginning of Ramadan (estimated)", - "2031-01-08": "Thaipusam", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "2031-03-23": "Birthday of the Sultan of Johor", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-05-27": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-15": "Beginning of Ramadan (estimated)", - "2031-12-25": "Christmas Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-03-23": "Birthday of the Sultan of Johor", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-15": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2032-05-23": "Vesak Day (estimated)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-04": "Beginning of Ramadan (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", - "2033-03-23": "Birthday of the Sultan of Johor", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-05": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2033-05-13": "Vesak Day (estimated)", - "2033-05-15": "Vesak Day (estimated) (in lieu)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-09-18": "Malaysia Day (in lieu)", - "2033-10-21": "Deepavali", - "2033-10-23": "Deepavali (in lieu)", - "2033-11-23": "Beginning of Ramadan (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Hari Raya Puasa (estimated) (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-05": "Thaipusam", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-03-23": "Birthday of the Sultan of Johor", - "2034-04-25": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-12": "Beginning of Ramadan (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-11": "Chinese New Year Holiday (estimated) (in lieu)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-23": "Thaipusam", - "2035-02-25": "Thaipusam (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-03-23": "Birthday of the Sultan of Johor", - "2035-04-14": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-02": "National Day (in lieu)", - "2035-09-16": "Malaysia Day", - "2035-10-29": "Deepavali", - "2035-11-01": "Beginning of Ramadan (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-25": "Christmas Day", - "2036-01-13": "Thaipusam", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-03-23": "Birthday of the Sultan of Johor", - "2036-04-03": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-16": "Malaysia Day", - "2036-10-20": "Beginning of Ramadan (estimated)", - "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-03-02": "Thaipusam", - "2037-03-23": "Birthday of the Sultan of Johor; Hari Hol of Sultan Iskandar of Johor (estimated)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-03": "Labour Day (in lieu)", - "2037-05-29": "Vesak Day (estimated)", - "2037-05-31": "Vesak Day (estimated) (in lieu)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-10": "Beginning of Ramadan (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-12-25": "Christmas Day", - "2037-12-27": "Christmas Day (in lieu)", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2038-02-19": "Thaipusam", - "2038-02-21": "Thaipusam (in lieu)", - "2038-03-12": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2038-03-23": "Birthday of the Sultan of Johor", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-09-30": "Beginning of Ramadan (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Hari Raya Puasa (estimated) (in lieu)", - "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-09": "Thaipusam", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-03-01": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2039-03-23": "Birthday of the Sultan of Johor", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-09-18": "Malaysia Day (in lieu)", - "2039-09-19": "Beginning of Ramadan (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-19": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2040-02-27": "Thaipusam", - "2040-03-23": "Birthday of the Sultan of Johor", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-05-27": "Vesak Day (estimated) (in lieu)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-02": "National Day (in lieu)", - "2040-09-07": "Beginning of Ramadan (estimated)", - "2040-09-09": "Beginning of Ramadan (estimated) (in lieu)", - "2040-09-16": "Malaysia Day", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", - "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year (estimated) (in lieu)", - "2041-02-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2041-02-15": "Thaipusam", - "2041-02-17": "Thaipusam (in lieu)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2041-03-23": "Birthday of the Sultan of Johor", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-28": "Beginning of Ramadan (estimated)", - "2041-08-31": "National Day", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-09-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-01-28": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-03-23": "Birthday of the Sultan of Johor", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-17": "Beginning of Ramadan (estimated)", - "2042-08-31": "National Day", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-17": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-24": "Thaipusam", - "2043-03-23": "Birthday of the Sultan of Johor", - "2043-05-01": "Labour Day", - "2043-05-03": "Labour Day (in lieu)", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-06": "Beginning of Ramadan (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Hari Raya Puasa (estimated) (in lieu)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2043-12-27": "Christmas Day (in lieu)", - "2044-01-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-02-14": "Thaipusam", - "2044-03-23": "Birthday of the Sultan of Johor", - "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-07-26": "Beginning of Ramadan (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-09-18": "Malaysia Day (in lieu)", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year (estimated) (in lieu)", - "2045-03-04": "Thaipusam", - "2045-03-23": "Birthday of the Sultan of Johor", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-15": "Beginning of Ramadan (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-15": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-02-21": "Thaipusam", - "2046-03-23": "Birthday of the Sultan of Johor", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-05": "Beginning of Ramadan (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Hari Raya Puasa (estimated) (in lieu)", - "2046-08-31": "National Day", - "2046-09-02": "National Day (in lieu)", - "2046-09-16": "Malaysia Day", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-04": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-11": "Thaipusam", - "2047-01-13": "Thaipusam (in lieu)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-03-23": "Birthday of the Sultan of Johor", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-06-24": "Beginning of Ramadan (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-11-17": "Deepavali (in lieu)", - "2047-11-24": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year (estimated) (in lieu)", - "2048-02-28": "Thaipusam", - "2048-03-01": "Thaipusam (in lieu)", - "2048-03-23": "Birthday of the Sultan of Johor", - "2048-05-01": "Labour Day", - "2048-05-03": "Labour Day (in lieu)", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-12": "Beginning of Ramadan (estimated)", - "2048-06-14": "Beginning of Ramadan (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-11-12": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-12-25": "Christmas Day", - "2048-12-27": "Christmas Day (in lieu)", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-02-17": "Thaipusam", - "2049-03-23": "Birthday of the Sultan of Johor", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-06-02": "Beginning of Ramadan (estimated)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-04": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-11-02": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-03-23": "Birthday of the Sultan of Johor", - "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day (estimated)", - "2050-05-22": "Beginning of Ramadan (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-09-18": "Malaysia Day (in lieu)", - "2050-10-22": "Hari Hol of Sultan Iskandar of Johor (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day" -} diff --git a/snapshots/countries/MY_KDH.json b/snapshots/countries/MY_KDH.json deleted file mode 100644 index 19bc83b9a..000000000 --- a/snapshots/countries/MY_KDH.json +++ /dev/null @@ -1,1873 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year (estimated) (in lieu)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-05-14": "Isra and Mi'raj (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-17": "Beginning of Ramadan (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-09-24": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-04": "Isra and Mi'raj (estimated)", - "1951-05-06": "Isra and Mi'raj (estimated) (in lieu)", - "1951-05-20": "Vesak Day (estimated)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-06": "Beginning of Ramadan (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Hari Raya Puasa (estimated) (in lieu)", - "1951-08-31": "National Day", - "1951-09-02": "National Day (in lieu)", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-09-13": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-04-22": "Isra and Mi'raj (estimated)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-05-25": "Beginning of Ramadan (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-04-12": "Isra and Mi'raj (estimated)", - "1953-05-01": "Labour Day", - "1953-05-03": "Labour Day (in lieu)", - "1953-05-14": "Beginning of Ramadan (estimated)", - "1953-05-27": "Vesak Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-21": "Hari Raya Haji (estimated)", - "1953-08-23": "Hari Raya Haji (estimated) (in lieu)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1953-12-27": "Christmas Day (in lieu)", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-04-01": "Isra and Mi'raj (estimated)", - "1954-05-01": "Labour Day", - "1954-05-04": "Beginning of Ramadan (estimated)", - "1954-05-17": "Vesak Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-10": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-03-21": "Isra and Mi'raj (estimated)", - "1955-04-24": "Beginning of Ramadan (estimated)", - "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-08": "Vesak Day (estimated) (in lieu)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-07-31": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-03-10": "Isra and Mi'raj (estimated)", - "1956-04-12": "Beginning of Ramadan (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Hari Raya Puasa (estimated) (in lieu)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-07-20": "Hari Raya Haji (estimated)", - "1956-07-22": "Hari Raya Haji (estimated) (in lieu)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-09-02": "National Day (in lieu)", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-03": "Chinese New Year Holiday (estimated) (in lieu)", - "1957-02-27": "Isra and Mi'raj (estimated)", - "1957-04-01": "Beginning of Ramadan (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-09": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-02-16": "Isra and Mi'raj (estimated)", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-21": "Beginning of Ramadan (estimated)", - "1958-03-23": "Beginning of Ramadan (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-06-28": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1958-11-09": "Deepavali", - "1958-12-25": "Christmas Day", - "1959-02-06": "Isra and Mi'raj (estimated)", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Isra and Mi'raj (estimated) (in lieu)", - "1959-03-11": "Beginning of Ramadan (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Hari Raya Puasa (estimated) (in lieu)", - "1959-05-01": "Labour Day", - "1959-05-03": "Labour Day (in lieu)", - "1959-05-22": "Vesak Day (estimated)", - "1959-05-24": "Vesak Day (estimated) (in lieu)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-06-18": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-11-01": "Deepavali (in lieu)", - "1959-12-25": "Christmas Day", - "1959-12-27": "Christmas Day (in lieu)", - "1960-01-26": "Isra and Mi'raj (estimated)", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-01-31": "Chinese New Year Holiday (estimated) (in lieu)", - "1960-02-28": "Beginning of Ramadan (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-05": "Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1961-01-14": "Isra and Mi'raj (estimated)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-26": "Hari Raya Haji (estimated)", - "1961-05-28": "Hari Raya Haji (estimated) (in lieu)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-04": "Isra and Mi'raj (estimated)", - "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-15": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-05-20": "Vesak Day (estimated) (in lieu)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-31": "National Day", - "1962-09-02": "National Day (in lieu)", - "1962-10-26": "Deepavali", - "1962-10-28": "Deepavali (in lieu)", - "1962-12-24": "Isra and Mi'raj (estimated)", - "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year (estimated) (in lieu)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-04": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-13": "Isra and Mi'raj (estimated)", - "1963-12-15": "Isra and Mi'raj (estimated) (in lieu)", - "1963-12-25": "Christmas Day", - "1964-01-15": "Beginning of Ramadan (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-04-23": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-03": "Labour Day (in lieu)", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-01": "Isra and Mi'raj (estimated)", - "1964-12-25": "Christmas Day", - "1964-12-27": "Christmas Day (in lieu)", - "1965-01-03": "Beginning of Ramadan (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-10-24": "Deepavali (in lieu)", - "1965-11-20": "Isra and Mi'raj (estimated)", - "1965-12-23": "Beginning of Ramadan (estimated)", - "1965-12-25": "Christmas Day", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-02": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", - "1966-12-13": "Beginning of Ramadan (estimated)", - "1966-12-25": "Christmas Day", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-01-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-03-22": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-30": "Isra and Mi'raj (estimated)", - "1967-10-31": "Deepavali", - "1967-12-02": "Beginning of Ramadan (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated)", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-10": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-10-19": "Isra and Mi'raj (estimated)", - "1968-11-18": "Deepavali", - "1968-11-21": "Beginning of Ramadan (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-02-28": "Hari Raya Haji (estimated)", - "1969-03-02": "Hari Raya Haji (estimated) (in lieu)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-10-08": "Isra and Mi'raj (estimated)", - "1969-11-08": "Deepavali", - "1969-11-10": "Beginning of Ramadan (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year (estimated) (in lieu)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-17": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-03": "Labour Day (in lieu)", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-09-28": "Isra and Mi'raj (estimated)", - "1970-10-28": "Deepavali", - "1970-11-01": "Beginning of Ramadan (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1970-12-27": "Christmas Day (in lieu)", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-07": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-09-17": "Isra and Mi'raj (estimated)", - "1971-09-19": "Isra and Mi'raj (estimated) (in lieu)", - "1971-10-20": "Beginning of Ramadan (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Hari Raya Puasa (estimated) (in lieu)", - "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-01-27": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-09-05": "Isra and Mi'raj (estimated)", - "1972-10-08": "Beginning of Ramadan (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-25": "Isra and Mi'raj (estimated)", - "1973-08-31": "National Day", - "1973-09-02": "National Day (in lieu)", - "1973-09-27": "Beginning of Ramadan (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-04": "Hari Raya Haji (estimated)", - "1974-01-06": "Hari Raya Haji (estimated) (in lieu)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-15": "Isra and Mi'raj (estimated)", - "1974-08-31": "National Day", - "1974-09-17": "Beginning of Ramadan (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-05": "Isra and Mi'raj (estimated)", - "1975-08-31": "National Day", - "1975-09-06": "Beginning of Ramadan (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-14": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-07-24": "Isra and Mi'raj (estimated)", - "1976-08-26": "Beginning of Ramadan (estimated)", - "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Hari Raya Puasa (estimated) (in lieu)", - "1976-11-19": "Deepavali", - "1976-11-21": "Deepavali (in lieu)", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-02": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year (estimated) (in lieu)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-07-13": "Isra and Mi'raj (estimated)", - "1977-08-15": "Beginning of Ramadan (estimated)", - "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-11-22": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-07-02": "Isra and Mi'raj (estimated)", - "1978-08-05": "Beginning of Ramadan (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-11-11": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-22": "Isra and Mi'raj (estimated)", - "1979-06-24": "Isra and Mi'raj (estimated) (in lieu)", - "1979-07-25": "Beginning of Ramadan (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1979-08-31": "National Day", - "1979-09-02": "National Day (in lieu)", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-01": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-10": "Isra and Mi'raj (estimated)", - "1980-07-13": "Beginning of Ramadan (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "1981-05-01": "Labour Day", - "1981-05-03": "Labour Day (in lieu)", - "1981-05-18": "Vesak Day (estimated)", - "1981-05-31": "Isra and Mi'raj (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-02": "Beginning of Ramadan (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-09": "Hari Raya Haji (estimated)", - "1981-10-11": "Hari Raya Haji (estimated) (in lieu)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1981-12-27": "Christmas Day (in lieu)", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-05-20": "Isra and Mi'raj (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-22": "Beginning of Ramadan (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-09-28": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-05-01": "Labour Day", - "1983-05-10": "Isra and Mi'raj (estimated)", - "1983-05-27": "Vesak Day (estimated)", - "1983-05-29": "Vesak Day (estimated) (in lieu)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-12": "Beginning of Ramadan (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-09-18": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1984-04-28": "Isra and Mi'raj (estimated)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-05-31": "Beginning of Ramadan (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-08-31": "National Day", - "1984-09-02": "National Day (in lieu)", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-06": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-04-17": "Isra and Mi'raj (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-20": "Beginning of Ramadan (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-27": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-04-06": "Isra and Mi'raj (estimated)", - "1986-05-01": "Labour Day", - "1986-05-09": "Beginning of Ramadan (estimated)", - "1986-05-11": "Beginning of Ramadan (estimated) (in lieu)", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Vesak Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-16": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", - "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-02": "Deepavali (in lieu)", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "1987-03-27": "Isra and Mi'raj (estimated)", - "1987-03-29": "Isra and Mi'raj (estimated) (in lieu)", - "1987-04-29": "Beginning of Ramadan (estimated)", - "1987-05-01": "Labour Day", - "1987-05-03": "Labour Day (in lieu)", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-05-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-05": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1987-12-27": "Christmas Day (in lieu)", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-15": "Isra and Mi'raj (estimated)", - "1988-04-17": "Beginning of Ramadan (estimated)", - "1988-05-01": "Labour Day", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-07-24": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-03-05": "Isra and Mi'raj (estimated)", - "1989-04-07": "Beginning of Ramadan (estimated)", - "1989-04-09": "Beginning of Ramadan (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-19": "Vesak Day (estimated)", - "1989-05-21": "Vesak Day (estimated) (in lieu)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-07-14": "Hari Raya Haji (estimated)", - "1989-07-16": "Hari Raya Haji (estimated) (in lieu)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-10-29": "Deepavali (in lieu)", - "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-02-22": "Isra and Mi'raj (estimated)", - "1990-03-27": "Beginning of Ramadan (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-04-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-03": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-09-02": "National Day (in lieu)", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-02-11": "Isra and Mi'raj (estimated)", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year (estimated) (in lieu)", - "1991-03-17": "Beginning of Ramadan (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-06-23": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-31": "Isra and Mi'raj (estimated)", - "1992-02-02": "Isra and Mi'raj (estimated) (in lieu)", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-03-05": "Beginning of Ramadan (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-05-01": "Labour Day", - "1992-05-03": "Labour Day (in lieu)", - "1992-05-17": "Vesak Day (estimated)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-06-12": "Hari Raya Haji (estimated)", - "1992-06-14": "Hari Raya Haji (estimated) (in lieu)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1992-12-27": "Christmas Day (in lieu)", - "1993-01-20": "Isra and Mi'raj (estimated)", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-02-22": "Beginning of Ramadan (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-01": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-11-14": "Deepavali (in lieu)", - "1993-12-25": "Christmas Day", - "1994-01-09": "Isra and Mi'raj (estimated)", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1994-02-13": "Beginning of Ramadan (estimated) (in lieu); Chinese New Year Holiday (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-21": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-29": "Isra and Mi'raj (estimated)", - "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-03-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-10": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-19": "Isra and Mi'raj (estimated)", - "1995-12-25": "Christmas Day", - "1996-01-21": "Beginning of Ramadan (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-04-28": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-08": "Isra and Mi'raj (estimated)", - "1996-12-25": "Christmas Day", - "1997-01-10": "Beginning of Ramadan (estimated)", - "1997-01-12": "Beginning of Ramadan (estimated) (in lieu)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year (estimated) (in lieu)", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-04-18": "Hari Raya Haji (estimated)", - "1997-04-20": "Hari Raya Haji (estimated) (in lieu)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-10-29": "Deepavali", - "1997-11-27": "Isra and Mi'raj (estimated)", - "1997-12-25": "Christmas Day", - "1997-12-30": "Beginning of Ramadan (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-02-01": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-08": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-03": "Labour Day (in lieu)", - "1998-05-10": "Vesak Day (estimated)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-16": "Isra and Mi'raj (estimated)", - "1998-11-17": "Deepavali", - "1998-12-19": "Beginning of Ramadan (estimated)", - "1998-12-25": "Christmas Day", - "1998-12-27": "Christmas Day (in lieu)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-03-28": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-05": "Isra and Mi'raj (estimated)", - "1999-11-06": "Deepavali", - "1999-11-07": "Isra and Mi'raj (estimated) (in lieu)", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-09": "Beginning of Ramadan (estimated)", - "1999-12-25": "Christmas Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-03-17": "Hari Raya Haji (estimated)", - "2000-03-19": "Hari Raya Haji (estimated) (in lieu)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-24": "Isra and Mi'raj (estimated)", - "2000-10-25": "Deepavali", - "2000-11-27": "Beginning of Ramadan (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-07": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-09-02": "National Day (in lieu)", - "2001-10-15": "Isra and Mi'raj", - "2001-11-14": "Deepavali", - "2001-11-17": "Beginning of Ramadan", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-24": "Hari Raya Haji", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-10-04": "Isra and Mi'raj", - "2002-10-06": "Isra and Mi'raj (in lieu)", - "2002-11-03": "Deepavali", - "2002-11-06": "Beginning of Ramadan", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Hari Raya Puasa (in lieu)", - "2002-12-25": "Christmas Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-12": "Hari Raya Haji", - "2003-02-13": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-24": "Isra and Mi'raj", - "2003-10-23": "Deepavali", - "2003-10-27": "Beginning of Ramadan", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-01-25": "Chinese New Year Holiday (in lieu)", - "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-09-12": "Isra and Mi'raj", - "2004-10-16": "Beginning of Ramadan", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-12-25": "Christmas Day", - "2005-01-21": "Hari Raya Haji", - "2005-01-22": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji (in lieu)", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-22": "Vesak Day", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-09-01": "Isra and Mi'raj", - "2005-10-05": "Beginning of Ramadan", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-11-06": "Second day of Hari Raya Puasa (in lieu)", - "2005-12-25": "Christmas Day", - "2006-01-10": "Hari Raya Haji", - "2006-01-11": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-05-14": "Vesak Day (in lieu)", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-22": "Isra and Mi'raj", - "2006-08-31": "National Day", - "2006-09-24": "Beginning of Ramadan", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "Hari Raya Haji", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-11": "Isra and Mi'raj", - "2007-08-31": "National Day", - "2007-09-02": "National Day (in lieu)", - "2007-09-13": "Beginning of Ramadan", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-21": "Hari Raya Haji", - "2007-12-23": "Hari Raya Haji (in lieu)", - "2007-12-25": "Christmas Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-10": "Chinese New Year Holiday (in lieu)", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-07-31": "Isra and Mi'raj", - "2008-08-31": "National Day", - "2008-09-02": "Beginning of Ramadan", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-10": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-03": "Labour Day (in lieu)", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-07-20": "Isra and Mi'raj", - "2009-08-22": "Beginning of Ramadan", - "2009-08-31": "National Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-11-29": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2009-12-27": "Christmas Day (in lieu)", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-02-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-05-30": "Vesak Day (in lieu)", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-07-09": "Isra and Mi'raj", - "2010-07-11": "Isra and Mi'raj (in lieu)", - "2010-08-11": "Beginning of Ramadan", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Hari Raya Puasa (in lieu)", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-07": "Deepavali (in lieu)", - "2010-11-17": "Hari Raya Haji", - "2010-11-18": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-06": "Chinese New Year Holiday (in lieu)", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-05-01": "Labour Day", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-06-29": "Isra and Mi'raj", - "2011-08-01": "Beginning of Ramadan", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-09-18": "Malaysia Day (in lieu)", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-08": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-06-17": "Isra and Mi'raj", - "2012-07-20": "Beginning of Ramadan", - "2012-07-22": "Beginning of Ramadan (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-31": "National Day", - "2012-09-02": "National Day (in lieu)", - "2012-09-16": "Malaysia Day", - "2012-10-26": "Hari Raya Haji", - "2012-10-27": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji (in lieu)", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-05-26": "Vesak Day (in lieu)", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-06-06": "Isra and Mi'raj", - "2013-07-09": "Beginning of Ramadan", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-11": "Second day of Hari Raya Puasa (in lieu)", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-10-16": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year (in lieu)", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-05-27": "Isra and Mi'raj", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-06-29": "Beginning of Ramadan", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-02-22": "Chinese New Year Holiday (in lieu)", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Labour Day (in lieu)", - "2015-05-16": "Isra and Mi'raj", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-06-18": "Beginning of Ramadan", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Hari Raya Puasa (in lieu)", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-09-25": "Hari Raya Haji", - "2015-09-27": "Hari Raya Haji (in lieu)", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2015-12-27": "Christmas Day (in lieu)", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-05-01": "Labour Day", - "2016-05-05": "Isra and Mi'raj", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-07": "Beginning of Ramadan", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-13": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-09-18": "Malaysia Day (in lieu)", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-04-24": "Isra and Mi'raj", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-05-27": "Beginning of Ramadan", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-02": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji (in lieu)", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2017-12-25": "Christmas Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year (in lieu)", - "2018-04-14": "Isra and Mi'raj", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-17": "Beginning of Ramadan", - "2018-05-29": "Vesak Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Hari Raya Puasa (in lieu)", - "2018-08-22": "Hari Raya Haji", - "2018-08-23": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-02": "National Day (in lieu)", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-04-03": "Isra and Mi'raj", - "2019-05-01": "Labour Day", - "2019-05-06": "Beginning of Ramadan", - "2019-05-19": "Vesak Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-03-22": "Isra and Mi'raj", - "2020-04-24": "Beginning of Ramadan", - "2020-04-26": "Beginning of Ramadan (in lieu)", - "2020-05-01": "Labour Day", - "2020-05-03": "Labour Day (in lieu)", - "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-06-21": "Birthday of The Sultan of Kedah", - "2020-07-31": "Hari Raya Haji", - "2020-08-01": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji (in lieu)", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2020-12-27": "Christmas Day (in lieu)", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year (in lieu)", - "2021-03-11": "Isra and Mi'raj", - "2021-04-13": "Beginning of Ramadan", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-16": "Second day of Hari Raya Puasa (in lieu)", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-06-20": "Birthday of The Sultan of Kedah", - "2021-07-20": "Hari Raya Haji", - "2021-07-21": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-03-01": "Isra and Mi'raj", - "2022-04-03": "Beginning of Ramadan", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day Holiday", - "2022-05-15": "Vesak Day", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-06-19": "Birthday of The Sultan of Kedah", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-09-18": "Malaysia Day (in lieu)", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-02-18": "Isra and Mi'raj", - "2023-03-23": "Beginning of Ramadan", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-18": "Birthday of The Sultan of Kedah", - "2023-06-29": "Hari Raya Haji", - "2023-06-30": "Hari Raya Haji", - "2023-07-02": "Hari Raya Haji (in lieu)", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-03-12": "Beginning of Ramadan", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Birthday of The Sultan of Kedah", - "2024-06-17": "Hari Raya Haji", - "2024-06-18": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-27": "Isra and Mi'raj (estimated)", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-01": "Beginning of Ramadan (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-07": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", - "2025-06-15": "Birthday of The Sultan of Kedah", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-16": "Isra and Mi'raj (estimated)", - "2026-01-18": "Isra and Mi'raj (estimated) (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Hari Raya Puasa (estimated) (in lieu)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-03": "Labour Day (in lieu); Vesak Day (estimated) (in lieu)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-05-28": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-06-21": "Birthday of The Sultan of Kedah", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2026-12-27": "Christmas Day (in lieu)", - "2027-01-05": "Isra and Mi'raj (estimated)", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Beginning of Ramadan (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-06-20": "Birthday of The Sultan of Kedah", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-01-28": "Beginning of Ramadan (estimated)", - "2028-01-30": "Beginning of Ramadan (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-06": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-06-18": "Birthday of The Sultan of Kedah", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj (estimated)", - "2028-12-25": "Christmas Day", - "2029-01-16": "Beginning of Ramadan (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-04-25": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-06-17": "Birthday of The Sultan of Kedah", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-02": "National Day (in lieu)", - "2029-09-16": "Malaysia Day", - "2029-11-04": "Deepavali", - "2029-12-03": "Isra and Mi'raj (estimated)", - "2029-12-25": "Christmas Day", - "2030-01-05": "Beginning of Ramadan (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-04-14": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-06-16": "Birthday of The Sultan of Kedah", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-10-27": "Deepavali (in lieu)", - "2030-11-23": "Isra and Mi'raj (estimated)", - "2030-12-25": "Christmas Day", - "2030-12-26": "Beginning of Ramadan (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-03": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-06-15": "Birthday of The Sultan of Kedah", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj (estimated)", - "2031-11-13": "Deepavali", - "2031-12-15": "Beginning of Ramadan (estimated)", - "2031-12-25": "Christmas Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-03-23": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Birthday of The Sultan of Kedah; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", - "2032-12-04": "Beginning of Ramadan (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-03-12": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-13": "Vesak Day (estimated)", - "2033-05-15": "Vesak Day (estimated) (in lieu)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-06-19": "Birthday of The Sultan of Kedah", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-09-18": "Malaysia Day (in lieu)", - "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", - "2033-10-23": "Deepavali (in lieu); Isra and Mi'raj (estimated) (in lieu)", - "2033-11-23": "Beginning of Ramadan (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Hari Raya Puasa (estimated) (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-02": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-06-18": "Birthday of The Sultan of Kedah", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-10-10": "Isra and Mi'raj (estimated)", - "2034-11-09": "Deepavali", - "2034-11-12": "Beginning of Ramadan (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-11": "Chinese New Year Holiday (estimated) (in lieu)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-06-17": "Birthday of The Sultan of Kedah", - "2035-08-31": "National Day", - "2035-09-02": "National Day (in lieu)", - "2035-09-16": "Malaysia Day", - "2035-09-29": "Isra and Mi'raj (estimated)", - "2035-10-29": "Deepavali", - "2035-11-01": "Beginning of Ramadan (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-08": "Hari Raya Haji (estimated)", - "2036-02-10": "Hari Raya Haji (estimated) (in lieu)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-06-15": "Birthday of The Sultan of Kedah", - "2036-08-31": "National Day", - "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj (estimated)", - "2036-10-20": "Beginning of Ramadan (estimated)", - "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-01-27": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-03": "Labour Day (in lieu)", - "2037-05-29": "Vesak Day (estimated)", - "2037-05-31": "Vesak Day (estimated) (in lieu)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-06-21": "Birthday of The Sultan of Kedah", - "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj (estimated)", - "2037-09-16": "Malaysia Day", - "2037-10-10": "Beginning of Ramadan (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-12-25": "Christmas Day", - "2037-12-27": "Christmas Day (in lieu)", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-01-17": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-06-20": "Birthday of The Sultan of Kedah", - "2038-08-28": "Isra and Mi'raj (estimated)", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-09-30": "Beginning of Ramadan (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Hari Raya Puasa (estimated) (in lieu)", - "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-06": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-06-19": "Birthday of The Sultan of Kedah", - "2039-08-17": "Isra and Mi'raj (estimated)", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-09-18": "Malaysia Day (in lieu)", - "2039-09-19": "Beginning of Ramadan (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Hari Raya Haji (estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-05-27": "Vesak Day (estimated) (in lieu)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-06-17": "Birthday of The Sultan of Kedah", - "2040-08-05": "Isra and Mi'raj (estimated)", - "2040-08-31": "National Day", - "2040-09-02": "National Day (in lieu)", - "2040-09-07": "Beginning of Ramadan (estimated)", - "2040-09-09": "Beginning of Ramadan (estimated) (in lieu)", - "2040-09-16": "Malaysia Day", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-15": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", - "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year (estimated) (in lieu)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-06-16": "Birthday of The Sultan of Kedah", - "2041-07-25": "Isra and Mi'raj (estimated)", - "2041-08-28": "Beginning of Ramadan (estimated)", - "2041-08-31": "National Day", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-09-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-05": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-06-15": "Birthday of The Sultan of Kedah", - "2042-07-15": "Isra and Mi'raj (estimated)", - "2042-08-17": "Beginning of Ramadan (estimated)", - "2042-08-31": "National Day", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-05-01": "Labour Day", - "2043-05-03": "Labour Day (in lieu)", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-06-21": "Birthday of The Sultan of Kedah", - "2043-07-04": "Isra and Mi'raj (estimated)", - "2043-08-06": "Beginning of Ramadan (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Hari Raya Puasa (estimated) (in lieu)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-11-13": "Hari Raya Haji (estimated)", - "2043-11-15": "Hari Raya Haji (estimated) (in lieu)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2043-12-27": "Christmas Day (in lieu)", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-06-19": "Birthday of The Sultan of Kedah", - "2044-06-23": "Isra and Mi'raj (estimated)", - "2044-07-26": "Beginning of Ramadan (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-09-18": "Malaysia Day (in lieu)", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-01": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year (estimated) (in lieu)", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj (estimated)", - "2045-06-18": "Birthday of The Sultan of Kedah", - "2045-07-15": "Beginning of Ramadan (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-10-22": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-06-02": "Isra and Mi'raj (estimated)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-06-17": "Birthday of The Sultan of Kedah", - "2046-07-05": "Beginning of Ramadan (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Hari Raya Puasa (estimated) (in lieu)", - "2046-08-31": "National Day", - "2046-09-02": "National Day (in lieu)", - "2046-09-16": "Malaysia Day", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-11": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-05-22": "Isra and Mi'raj (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-06-16": "Birthday of The Sultan of Kedah", - "2047-06-24": "Beginning of Ramadan (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-01": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-11-17": "Deepavali (in lieu)", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year (estimated) (in lieu)", - "2048-05-01": "Labour Day", - "2048-05-03": "Labour Day (in lieu)", - "2048-05-10": "Isra and Mi'raj (estimated)", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-12": "Beginning of Ramadan (estimated)", - "2048-06-14": "Beginning of Ramadan (estimated) (in lieu)", - "2048-06-21": "Birthday of The Sultan of Kedah", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-09-20": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-12-25": "Christmas Day", - "2048-12-27": "Christmas Day (in lieu)", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-04-29": "Isra and Mi'raj (estimated)", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-06-02": "Beginning of Ramadan (estimated)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-20": "Birthday of The Sultan of Kedah", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-04": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-09": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-04-19": "Isra and Mi'raj (estimated)", - "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day (estimated)", - "2050-05-22": "Beginning of Ramadan (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-19": "Birthday of The Sultan of Kedah", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-09-18": "Malaysia Day (in lieu)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day" -} diff --git a/snapshots/countries/MY_KTN.json b/snapshots/countries/MY_KTN.json deleted file mode 100644 index 301663000..000000000 --- a/snapshots/countries/MY_KTN.json +++ /dev/null @@ -1,1894 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year Holiday (estimated) (in lieu)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-09-24": "Hari Raya Haji (estimated)", - "1950-09-25": "Hari Raya Haji (estimated) (in lieu)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-09-13": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-16": "Deepavali (in lieu)", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year (estimated) (in lieu)", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-05-31": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-21": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-05-01": "Labour Day", - "1954-05-02": "Labour Day (in lieu)", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-10": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1954-12-26": "Christmas Day (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-07-31": "Hari Raya Haji (estimated)", - "1955-08-01": "Hari Raya Haji (estimated) (in lieu)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1955-11-12": "Deepavali", - "1955-11-13": "Deepavali (in lieu)", - "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-04-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-07-20": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-09": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-09-01": "National Day (in lieu)", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-05-04": "Vesak Day (estimated) (in lieu)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-06-28": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-12-25": "Christmas Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-06-18": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-05": "Hari Raya Haji (estimated)", - "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu); Hari Raya Haji (estimated) (in lieu)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-05": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-26": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-15": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year Holiday (estimated) (in lieu)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-04": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-09-01": "National Day (in lieu)", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-04-23": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-02": "Labour Day (in lieu)", - "1965-05-15": "Vesak Day (estimated)", - "1965-05-16": "Vesak Day (estimated) (in lieu)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1965-12-26": "Christmas Day (in lieu)", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-09": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-02": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-03-22": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated)", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-10": "Hari Raya Haji (estimated)", - "1968-03-11": "Hari Raya Haji (estimated) (in lieu)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-05-12": "Vesak Day (estimated) (in lieu)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1968-08-31": "National Day", - "1968-09-01": "National Day (in lieu)", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-08": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-02-28": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1969-08-31": "National Day", - "1969-11-08": "Deepavali", - "1969-11-09": "Deepavali (in lieu)", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-17": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-07": "Hari Raya Haji (estimated)", - "1971-02-08": "Hari Raya Haji (estimated) (in lieu)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-02": "Labour Day (in lieu)", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1971-12-25": "Christmas Day", - "1971-12-26": "Christmas Day (in lieu)", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-01-27": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-05-28": "Vesak Day (estimated) (in lieu)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-05": "Deepavali (in lieu)", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-04": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1974-08-31": "National Day", - "1974-09-01": "National Day (in lieu)", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1975-08-31": "National Day", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-11-02": "Deepavali (in lieu)", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-14": "Hari Raya Haji (estimated)", - "1975-12-15": "Hari Raya Haji (estimated) (in lieu)", - "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-02": "Labour Day (in lieu)", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-12": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-02": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1976-12-26": "Christmas Day (in lieu)", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year Holiday (estimated) (in lieu)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-11-22": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-11-11": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-01": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year (estimated) (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-07-19": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-09": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-02": "Labour Day (in lieu)", - "1982-05-08": "Vesak Day (estimated)", - "1982-05-09": "Vesak Day (estimated) (in lieu)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-09-28": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-11-14": "Deepavali (in lieu)", - "1982-12-25": "Christmas Day", - "1982-12-26": "Christmas Day (in lieu)", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-05-01": "Labour Day", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-09-18": "Hari Raya Haji (estimated)", - "1983-09-19": "Hari Raya Haji (estimated) (in lieu)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-17": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-06": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-05": "Vesak Day (estimated) (in lieu)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-27": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-01": "National Day (in lieu)", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-16": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", - "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-05": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-05-01": "Labour Day", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-07-24": "Hari Raya Haji (estimated)", - "1988-07-25": "Hari Raya Haji (estimated) (in lieu)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-07-14": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year (estimated) (in lieu)", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-03": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year Holiday (estimated) (in lieu)", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-06-23": "Hari Raya Haji (estimated)", - "1991-06-24": "Hari Raya Haji (estimated) (in lieu)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-01": "National Day (in lieu)", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-03-22": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-06-12": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-10-25": "Deepavali (in lieu)", - "1992-12-25": "Christmas Day", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year (estimated) (in lieu)", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-02": "Labour Day (in lieu)", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-01": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1993-12-26": "Christmas Day (in lieu)", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-21": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-10": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-04-28": "Hari Raya Haji (estimated)", - "1996-04-29": "Hari Raya Haji (estimated) (in lieu)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1996-08-31": "National Day", - "1996-09-01": "National Day (in lieu)", - "1996-11-09": "Deepavali", - "1996-11-10": "Deepavali (in lieu)", - "1996-12-25": "Christmas Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-04-18": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-08": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-03-28": "Hari Raya Haji (estimated)", - "1999-03-29": "Hari Raya Haji (estimated) (in lieu)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-02": "Labour Day (in lieu)", - "1999-05-29": "Vesak Day (estimated)", - "1999-05-30": "Vesak Day (estimated) (in lieu)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-07": "Deepavali (in lieu)", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "1999-12-26": "Christmas Day (in lieu); Nuzul Al-Quran Day (estimated) (in lieu)", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-03-17": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-07": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-24": "Hari Raya Haji", - "2002-02-25": "Hari Raya Haji (in lieu)", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2002-08-31": "National Day", - "2002-09-01": "National Day (in lieu)", - "2002-11-03": "Deepavali", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Second day of Hari Raya Puasa (in lieu)", - "2002-12-25": "Christmas Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-13": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2003-08-31": "National Day", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Labour Day (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-12-25": "Christmas Day", - "2004-12-26": "Christmas Day (in lieu)", - "2005-01-21": "Hari Raya Haji", - "2005-01-22": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji (in lieu)", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-22": "Vesak Day", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2006-01-10": "Hari Raya Haji", - "2006-01-11": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-22": "Deepavali (in lieu)", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "Hari Raya Haji", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-04-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-09-30": "Nuzul Al-Quran Day (in lieu)", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-21": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2008-08-31": "National Day", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-10": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-05-10": "Vesak Day (in lieu)", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-10-17": "Deepavali", - "2009-10-18": "Deepavali (in lieu)", - "2009-11-28": "Hari Raya Haji", - "2009-11-29": "Hari Raya Haji", - "2009-11-30": "Hari Raya Haji (in lieu)", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-05-01": "Labour Day", - "2010-05-02": "Labour Day (in lieu)", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Second day of Hari Raya Puasa (in lieu)", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-11": "Birthday of the Sultan of Kelantan", - "2010-11-12": "Birthday of the Sultan of Kelantan", - "2010-11-17": "Hari Raya Haji", - "2010-11-18": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2010-12-26": "Christmas Day (in lieu)", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-05-01": "Labour Day", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-08": "Hari Raya Haji", - "2011-11-11": "Birthday of the Sultan of Kelantan", - "2011-11-12": "Birthday of the Sultan of Kelantan", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-05-06": "Vesak Day (in lieu)", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-10-26": "Hari Raya Haji", - "2012-10-27": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji (in lieu)", - "2012-11-11": "Birthday of the Sultan of Kelantan", - "2012-11-12": "Birthday of the Sultan of Kelantan", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-01": "National Day (in lieu)", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-10-16": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-03": "Deepavali (in lieu)", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-11-11": "Birthday of the Sultan of Kelantan", - "2013-11-12": "Birthday of the Sultan of Kelantan", - "2013-12-25": "Christmas Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year Holiday (in lieu)", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-11-11": "Birthday of the Sultan of Kelantan", - "2014-11-12": "Birthday of the Sultan of Kelantan", - "2014-12-25": "Christmas Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-01-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-05": "Nuzul Al-Quran Day (in lieu)", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Second day of Hari Raya Puasa (in lieu)", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-09-25": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-11-11": "Birthday of the Sultan of Kelantan", - "2015-11-12": "Birthday of the Sultan of Kelantan", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-05-01": "Labour Day", - "2016-05-21": "Vesak Day", - "2016-05-22": "Vesak Day (in lieu)", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-13": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-10-30": "Deepavali (in lieu)", - "2016-11-11": "Birthday of the Sultan of Kelantan", - "2016-11-12": "Birthday of the Sultan of Kelantan", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year (in lieu)", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-02": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji (in lieu)", - "2017-09-16": "Malaysia Day", - "2017-09-17": "Malaysia Day (in lieu)", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-11-11": "Birthday of the Sultan of Kelantan", - "2017-11-12": "Birthday of the Sultan of Kelantan", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year Holiday (in lieu)", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-03": "Nuzul Al-Quran Day (in lieu)", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Second day of Hari Raya Puasa (in lieu)", - "2018-08-22": "Hari Raya Haji", - "2018-08-23": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-11-06": "Deepavali", - "2018-11-11": "Birthday of the Sultan of Kelantan", - "2018-11-12": "Birthday of the Sultan of Kelantan", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year); National Day (in lieu)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-11-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2019-11-11": "Birthday of the Sultan of Kelantan", - "2019-11-12": "Birthday of the Sultan of Kelantan", - "2019-12-25": "Christmas Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year (in lieu)", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-01": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji (in lieu)", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-11": "Birthday of the Sultan of Kelantan", - "2020-11-12": "Birthday of the Sultan of Kelantan", - "2020-11-14": "Deepavali", - "2020-11-15": "Deepavali (in lieu)", - "2020-12-25": "Christmas Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year Holiday (in lieu)", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-02": "Labour Day (in lieu)", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-07-21": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-11-11": "Birthday of the Sultan of Kelantan", - "2021-11-12": "Birthday of the Sultan of Kelantan", - "2021-12-25": "Christmas Day", - "2021-12-26": "Christmas Day (in lieu)", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day Holiday", - "2022-05-15": "Vesak Day", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-11-11": "Birthday of the Sultan of Kelantan", - "2022-11-12": "Birthday of the Sultan of Kelantan", - "2022-12-25": "Christmas Day", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-09": "Nuzul Al-Quran Day (in lieu)", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-06-30": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-17": "Malaysia Day (in lieu)", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-11": "Birthday of the Sultan of Kelantan", - "2023-11-12": "Birthday of the Sultan of Kelantan; Deepavali", - "2023-12-25": "Christmas Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-06-18": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-01": "National Day (in lieu)", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-11-11": "Birthday of the Sultan of Kelantan", - "2024-11-12": "Birthday of the Sultan of Kelantan", - "2024-12-25": "Christmas Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-07": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-11": "Birthday of the Sultan of Kelantan", - "2025-11-12": "Birthday of the Sultan of Kelantan", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-05-28": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-11-08": "Deepavali (in lieu)", - "2026-11-11": "Birthday of the Sultan of Kelantan", - "2026-11-12": "Birthday of the Sultan of Kelantan", - "2026-12-25": "Christmas Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-02": "Labour Day (in lieu)", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-11-11": "Birthday of the Sultan of Kelantan", - "2027-11-12": "Birthday of the Sultan of Kelantan", - "2027-12-25": "Christmas Day", - "2027-12-26": "Christmas Day (in lieu)", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-06": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-09-17": "Malaysia Day (in lieu)", - "2028-11-11": "Birthday of the Sultan of Kelantan", - "2028-11-12": "Birthday of the Sultan of Kelantan", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-02-01": "Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-04-25": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-11-04": "Deepavali", - "2029-11-11": "Birthday of the Sultan of Kelantan", - "2029-11-12": "Birthday of the Sultan of Kelantan", - "2029-12-25": "Christmas Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-04-14": "Hari Raya Haji (estimated)", - "2030-04-15": "Hari Raya Haji (estimated) (in lieu)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2030-08-31": "National Day", - "2030-09-01": "National Day (in lieu)", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-11-11": "Birthday of the Sultan of Kelantan", - "2030-11-12": "Birthday of the Sultan of Kelantan", - "2030-12-25": "Christmas Day", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-12": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-03": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-16": "Malaysia Day", - "2031-11-11": "Birthday of the Sultan of Kelantan", - "2031-11-12": "Birthday of the Sultan of Kelantan", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-03-23": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-02": "Labour Day (in lieu)", - "2032-05-23": "Vesak Day (estimated)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-11-11": "Birthday of the Sultan of Kelantan", - "2032-11-12": "Birthday of the Sultan of Kelantan", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2032-12-26": "Christmas Day (in lieu)", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-03-12": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-11-11": "Birthday of the Sultan of Kelantan", - "2033-11-12": "Birthday of the Sultan of Kelantan", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-02": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-09-17": "Malaysia Day (in lieu)", - "2034-11-09": "Deepavali", - "2034-11-11": "Birthday of the Sultan of Kelantan", - "2034-11-12": "Birthday of the Sultan of Kelantan", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-10-29": "Deepavali", - "2035-11-11": "Birthday of the Sultan of Kelantan", - "2035-11-12": "Birthday of the Sultan of Kelantan", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-11-18": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-08": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-05-11": "Vesak Day (estimated) (in lieu)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-11": "Birthday of the Sultan of Kelantan", - "2036-11-12": "Birthday of the Sultan of Kelantan", - "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-01-27": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-11": "Birthday of the Sultan of Kelantan", - "2037-11-12": "Birthday of the Sultan of Kelantan", - "2037-12-25": "Christmas Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-01-17": "Hari Raya Haji (estimated)", - "2038-01-18": "Hari Raya Haji (estimated) (in lieu)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2038-05-01": "Labour Day", - "2038-05-02": "Labour Day (in lieu)", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-17": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2038-11-11": "Birthday of the Sultan of Kelantan", - "2038-11-12": "Birthday of the Sultan of Kelantan", - "2038-12-25": "Christmas Day", - "2038-12-26": "Christmas Day (in lieu)", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-06": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day (estimated)", - "2039-05-08": "Vesak Day (estimated) (in lieu)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-11": "Birthday of the Sultan of Kelantan", - "2039-11-12": "Birthday of the Sultan of Kelantan", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Hari Raya Haji (estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-11-03": "Deepavali", - "2040-11-04": "Deepavali (in lieu)", - "2040-11-11": "Birthday of the Sultan of Kelantan", - "2040-11-12": "Birthday of the Sultan of Kelantan", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-15": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", - "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year Holiday (estimated) (in lieu)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-31": "National Day", - "2041-09-01": "National Day (in lieu)", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-11-11": "Birthday of the Sultan of Kelantan", - "2041-11-12": "Birthday of the Sultan of Kelantan", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-05": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-31": "National Day", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Birthday of the Sultan of Kelantan; Deepavali", - "2042-11-12": "Birthday of the Sultan of Kelantan", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-05-24": "Vesak Day (estimated) (in lieu)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-23": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-01": "Deepavali (in lieu)", - "2043-11-11": "Birthday of the Sultan of Kelantan", - "2043-11-12": "Birthday of the Sultan of Kelantan; Hari Raya Haji (estimated)", - "2043-11-13": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-01": "Hari Raya Haji (estimated)", - "2044-11-11": "Birthday of the Sultan of Kelantan", - "2044-11-12": "Birthday of the Sultan of Kelantan", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year Holiday (estimated) (in lieu)", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-09-17": "Malaysia Day (in lieu)", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-10-22": "Hari Raya Haji (estimated)", - "2045-10-23": "Hari Raya Haji (estimated) (in lieu)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-11-11": "Birthday of the Sultan of Kelantan", - "2045-11-12": "Birthday of the Sultan of Kelantan", - "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-07-22": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-11": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-28": "Deepavali (in lieu)", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-11-11": "Birthday of the Sultan of Kelantan", - "2046-11-12": "Birthday of the Sultan of Kelantan", - "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year (estimated) (in lieu)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-01": "National Day (in lieu)", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-01": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-11": "Birthday of the Sultan of Kelantan", - "2047-11-12": "Birthday of the Sultan of Kelantan", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-09-20": "Hari Raya Haji (estimated)", - "2048-09-21": "Hari Raya Haji (estimated) (in lieu)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-11-11": "Birthday of the Sultan of Kelantan", - "2048-11-12": "Birthday of the Sultan of Kelantan", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-05-01": "Labour Day", - "2049-05-02": "Labour Day (in lieu)", - "2049-05-16": "Vesak Day (estimated)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-09": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-11-11": "Birthday of the Sultan of Kelantan", - "2049-11-12": "Birthday of the Sultan of Kelantan", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2049-12-26": "Christmas Day (in lieu)", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-11": "Birthday of the Sultan of Kelantan", - "2050-11-12": "Birthday of the Sultan of Kelantan; Deepavali", - "2050-11-13": "Deepavali (in lieu)", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2050-12-25": "Christmas Day" -} diff --git a/snapshots/countries/MY_KUL.json b/snapshots/countries/MY_KUL.json deleted file mode 100644 index 42d4f9075..000000000 --- a/snapshots/countries/MY_KUL.json +++ /dev/null @@ -1,1934 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-02-21": "Thaipusam", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-02-28": "Thaipusam", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-02-18": "Thaipusam", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam (in lieu)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-02-01": "Federal Territory Day", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-01": "Federal Territory Day", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu); Federal Territory Day (in lieu)", - "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-01": "Federal Territory Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-03-05": "Thaipusam", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-01": "Federal Territory Day", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-02-22": "Thaipusam", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-01": "Federal Territory Day", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-01": "Federal Territory Day", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-01": "Federal Territory Day", - "1981-02-02": "Federal Territory Day (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-19": "Thaipusam", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam (in lieu)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-02-01": "Federal Territory Day", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-01": "Federal Territory Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-02-28": "Thaipusam", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-01": "Federal Territory Day", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-17": "Thaipusam", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-01": "Federal Territory Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-03-06": "Thaipusam", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-01": "Federal Territory Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-02-01": "Federal Territory Day", - "1987-02-02": "Federal Territory Day (in lieu)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-01": "Federal Territory Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-03": "Thaipusam", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-01": "Federal Territory Day", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-02-01": "Federal Territory Day", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-01": "Federal Territory Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-01": "Federal Territory Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-02-01": "Federal Territory Day", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-01": "Federal Territory Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-01": "Federal Territory Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-01": "Federal Territory Day", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-02-01": "Federal Territory Day", - "1998-02-02": "Federal Territory Day (in lieu)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-01": "Federal Territory Day", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-01": "Federal Territory Day", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-09": "Thaipusam", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-02-01": "Federal Territory Day", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-01": "Federal Territory Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-27": "Thaipusam", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year; Federal Territory Day", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam (in lieu)", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-07": "Thaipusam", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-01": "Federal Territory Day", - "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Federal Territory Day (in lieu)", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-01": "Federal Territory Day", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-02-23": "Thaipusam", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-02-01": "Federal Territory Day", - "2006-02-13": "Thaipusam", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-01": "Federal Territory Day", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-01": "Federal Territory Day", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-22": "Thaipusam", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam (in lieu)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-02-01": "Federal Territory Day", - "2009-02-02": "Federal Territory Day (in lieu)", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-01": "Federal Territory Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-03-01": "Thaipusam", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-01": "Federal Territory Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-02-18": "Thaipusam", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-01": "Federal Territory Day", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-01": "Federal Territory Day", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-02-25": "Thaipusam", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday; Federal Territory Day", - "2014-02-14": "Thaipusam", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-01": "Federal Territory Day", - "2015-02-02": "Federal Territory Day (in lieu)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-03-05": "Thaipusam", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-01": "Federal Territory Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-02-23": "Thaipusam", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-13": "Thaipusam", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-02-01": "Federal Territory Day", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-01-31": "Thaipusam", - "2018-02-01": "Federal Territory Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-01-21": "Thaipusam", - "2019-02-01": "Federal Territory Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-02-01": "Federal Territory Day", - "2020-02-08": "Thaipusam", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-01-28": "Thaipusam", - "2021-02-01": "Federal Territory Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-03": "Malaysia Cup Holiday", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year; Federal Territory Day", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-01": "Federal Territory Day", - "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam (in lieu)", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-01-25": "Thaipusam", - "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-01": "Federal Territory Day", - "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-01": "Federal Territory Day; Thaipusam", - "2026-02-02": "Federal Territory Day (in lieu); Thaipusam (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-01-22": "Thaipusam", - "2027-02-01": "Federal Territory Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-01": "Federal Territory Day", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-01": "Federal Territory Day", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-02-01": "Federal Territory Day", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-01": "Federal Territory Day", - "2032-02-02": "Federal Territory Day (in lieu)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-01": "Federal Territory Day", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam (in lieu)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-01": "Federal Territory Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam (in lieu)", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-01": "Federal Territory Day", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-01": "Federal Territory Day", - "2037-02-02": "Federal Territory Day (in lieu)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-01": "Federal Territory Day", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam (in lieu)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-02-01": "Federal Territory Day", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-01": "Federal Territory Day", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-02-01": "Federal Territory Day", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-01": "Federal Territory Day", - "2043-02-02": "Federal Territory Day (in lieu)", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-02-24": "Thaipusam", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam (in lieu)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-01": "Federal Territory Day", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-01": "Federal Territory Day", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-02-21": "Thaipusam", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-02-01": "Federal Territory Day", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-01": "Federal Territory Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-28": "Thaipusam", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-01": "Federal Territory Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-02-17": "Thaipusam", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-02-01": "Federal Territory Day", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_LBN.json b/snapshots/countries/MY_LBN.json deleted file mode 100644 index 610e95d0e..000000000 --- a/snapshots/countries/MY_LBN.json +++ /dev/null @@ -1,2012 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-05-30": "Pesta Kaamatan", - "1950-05-31": "Pesta Kaamatan (Second day)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-05-30": "Pesta Kaamatan", - "1951-05-31": "Pesta Kaamatan (Second day)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-05-30": "Pesta Kaamatan", - "1952-05-31": "Pesta Kaamatan (Second day)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated); Pesta Kaamatan", - "1953-05-31": "Pesta Kaamatan (Second day)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-05-30": "Pesta Kaamatan", - "1954-05-31": "Pesta Kaamatan (Second day)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-05-30": "Pesta Kaamatan", - "1955-05-31": "Pesta Kaamatan (Second day)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-05-30": "Pesta Kaamatan", - "1956-05-31": "Pesta Kaamatan (Second day)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-05-30": "Pesta Kaamatan", - "1957-05-31": "Pesta Kaamatan (Second day)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-05-30": "Pesta Kaamatan", - "1958-05-31": "Pesta Kaamatan (Second day)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-05-30": "Pesta Kaamatan", - "1959-05-31": "Pesta Kaamatan (Second day)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-05-30": "Pesta Kaamatan", - "1960-05-31": "Pesta Kaamatan (Second day)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-05-30": "Pesta Kaamatan", - "1961-05-31": "Pesta Kaamatan (Second day)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-05-30": "Pesta Kaamatan", - "1962-05-31": "Pesta Kaamatan (Second day)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-05-30": "Pesta Kaamatan", - "1963-05-31": "Pesta Kaamatan (Second day)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-05-30": "Pesta Kaamatan", - "1964-05-31": "Pesta Kaamatan (Second day)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-05-30": "Pesta Kaamatan", - "1965-05-31": "Pesta Kaamatan (Second day)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-05-30": "Pesta Kaamatan", - "1966-05-31": "Pesta Kaamatan (Second day)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-05-30": "Pesta Kaamatan", - "1967-05-31": "Pesta Kaamatan (Second day)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-05-30": "Pesta Kaamatan", - "1968-05-31": "Pesta Kaamatan (Second day)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-05-30": "Pesta Kaamatan", - "1969-05-31": "Pesta Kaamatan (Second day)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-05-30": "Pesta Kaamatan", - "1970-05-31": "Pesta Kaamatan (Second day)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-05-30": "Pesta Kaamatan", - "1971-05-31": "Pesta Kaamatan (Second day)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-05-30": "Pesta Kaamatan", - "1972-05-31": "Pesta Kaamatan (Second day)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-05-30": "Pesta Kaamatan", - "1973-05-31": "Pesta Kaamatan (Second day)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-02-01": "Federal Territory Day", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-05-30": "Pesta Kaamatan", - "1974-05-31": "Pesta Kaamatan (Second day)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-01": "Federal Territory Day", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-05-30": "Pesta Kaamatan", - "1975-05-31": "Pesta Kaamatan (Second day)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu); Federal Territory Day (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-05-30": "Pesta Kaamatan", - "1976-05-31": "Pesta Kaamatan (Second day)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-01": "Federal Territory Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-05-30": "Pesta Kaamatan", - "1977-05-31": "Pesta Kaamatan (Second day)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-01": "Federal Territory Day", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-05-30": "Pesta Kaamatan", - "1978-05-31": "Pesta Kaamatan (Second day)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-01": "Federal Territory Day", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-05-30": "Pesta Kaamatan", - "1979-05-31": "Pesta Kaamatan (Second day)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-01": "Federal Territory Day", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-05-30": "Pesta Kaamatan", - "1980-05-31": "Pesta Kaamatan (Second day)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-01": "Federal Territory Day", - "1981-02-02": "Federal Territory Day (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-05-30": "Pesta Kaamatan", - "1981-05-31": "Pesta Kaamatan (Second day)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-02-01": "Federal Territory Day", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-05-30": "Pesta Kaamatan", - "1982-05-31": "Pesta Kaamatan (Second day)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-01": "Federal Territory Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-05-30": "Pesta Kaamatan", - "1983-05-31": "Pesta Kaamatan (Second day)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-01": "Federal Territory Day", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-05-30": "Pesta Kaamatan", - "1984-05-31": "Pesta Kaamatan (Second day)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-01": "Federal Territory Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-30": "Pesta Kaamatan", - "1985-05-31": "Pesta Kaamatan (Second day)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-01": "Federal Territory Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-05-30": "Pesta Kaamatan", - "1986-05-31": "Pesta Kaamatan (Second day)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-02-01": "Federal Territory Day", - "1987-02-02": "Federal Territory Day (in lieu)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-05-30": "Pesta Kaamatan", - "1987-05-31": "Pesta Kaamatan (Second day)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-01": "Federal Territory Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Pesta Kaamatan; Vesak Day (estimated)", - "1988-05-31": "Pesta Kaamatan (Second day)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-01": "Federal Territory Day", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-05-30": "Pesta Kaamatan", - "1989-05-31": "Pesta Kaamatan (Second day)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-02-01": "Federal Territory Day", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-05-30": "Pesta Kaamatan", - "1990-05-31": "Pesta Kaamatan (Second day)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-01": "Federal Territory Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-05-30": "Pesta Kaamatan", - "1991-05-31": "Pesta Kaamatan (Second day)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-01": "Federal Territory Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-05-30": "Pesta Kaamatan", - "1992-05-31": "Pesta Kaamatan (Second day)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-02-01": "Federal Territory Day", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-30": "Pesta Kaamatan", - "1993-05-31": "Hari Raya Haji (estimated); Pesta Kaamatan (Second day)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-01": "Federal Territory Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-05-30": "Pesta Kaamatan", - "1994-05-31": "Pesta Kaamatan (Second day)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated); Pesta Kaamatan", - "1995-05-31": "Pesta Kaamatan (Second day)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-01": "Federal Territory Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-05-30": "Pesta Kaamatan", - "1996-05-31": "Pesta Kaamatan (Second day)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-01": "Federal Territory Day", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-05-30": "Pesta Kaamatan", - "1997-05-31": "Pesta Kaamatan (Second day)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-02-01": "Federal Territory Day", - "1998-02-02": "Federal Territory Day (in lieu)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-05-30": "Pesta Kaamatan", - "1998-05-31": "Pesta Kaamatan (Second day)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-01": "Federal Territory Day", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-05-30": "Pesta Kaamatan", - "1999-05-31": "Pesta Kaamatan (Second day)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-01": "Federal Territory Day", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-05-30": "Pesta Kaamatan", - "2000-05-31": "Pesta Kaamatan (Second day)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-02-01": "Federal Territory Day", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-05-30": "Pesta Kaamatan", - "2001-05-31": "Pesta Kaamatan (Second day)", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-01": "Federal Territory Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-05-30": "Pesta Kaamatan", - "2002-05-31": "Pesta Kaamatan (Second day)", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year; Federal Territory Day", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-05-30": "Pesta Kaamatan", - "2003-05-31": "Pesta Kaamatan (Second day)", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-01": "Federal Territory Day", - "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Federal Territory Day (in lieu)", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-05-30": "Pesta Kaamatan", - "2004-05-31": "Pesta Kaamatan (Second day)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-01": "Federal Territory Day", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-05-30": "Pesta Kaamatan", - "2005-05-31": "Pesta Kaamatan (Second day)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-02-01": "Federal Territory Day", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-05-30": "Pesta Kaamatan", - "2006-05-31": "Pesta Kaamatan (Second day)", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-01": "Federal Territory Day", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-05-30": "Pesta Kaamatan", - "2007-05-31": "Pesta Kaamatan (Second day)", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-01": "Federal Territory Day", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-05-30": "Pesta Kaamatan", - "2008-05-31": "Pesta Kaamatan (Second day)", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-02-01": "Federal Territory Day", - "2009-02-02": "Federal Territory Day (in lieu)", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-05-30": "Pesta Kaamatan", - "2009-05-31": "Pesta Kaamatan (Second day)", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-01": "Federal Territory Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-05-30": "Pesta Kaamatan", - "2010-05-31": "Pesta Kaamatan (Second day)", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-01": "Federal Territory Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-05-30": "Pesta Kaamatan", - "2011-05-31": "Pesta Kaamatan (Second day)", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-01": "Federal Territory Day", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-05-30": "Pesta Kaamatan", - "2012-05-31": "Pesta Kaamatan (Second day)", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-01": "Federal Territory Day", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-05-30": "Pesta Kaamatan", - "2013-05-31": "Pesta Kaamatan (Second day)", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday; Federal Territory Day", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-05-30": "Pesta Kaamatan", - "2014-05-31": "Pesta Kaamatan (Second day)", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-01": "Federal Territory Day", - "2015-02-02": "Federal Territory Day (in lieu)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-05-30": "Pesta Kaamatan", - "2015-05-31": "Pesta Kaamatan (Second day)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-01": "Federal Territory Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-05-30": "Pesta Kaamatan", - "2016-05-31": "Pesta Kaamatan (Second day)", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-02-01": "Federal Territory Day", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-05-30": "Pesta Kaamatan", - "2017-05-31": "Pesta Kaamatan (Second day)", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-02-01": "Federal Territory Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-05-30": "Pesta Kaamatan", - "2018-05-31": "Pesta Kaamatan (Second day)", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-02-01": "Federal Territory Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-05-30": "Pesta Kaamatan", - "2019-05-31": "Pesta Kaamatan (Second day)", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-02-01": "Federal Territory Day", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-05-30": "Pesta Kaamatan", - "2020-05-31": "Pesta Kaamatan (Second day)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-02-01": "Federal Territory Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-05-30": "Pesta Kaamatan", - "2021-05-31": "Pesta Kaamatan (Second day)", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-03": "Malaysia Cup Holiday", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-02-01": "Chinese New Year; Federal Territory Day", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-05-30": "Pesta Kaamatan", - "2022-05-31": "Pesta Kaamatan (Second day)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-01": "Federal Territory Day", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-05-30": "Pesta Kaamatan", - "2023-05-31": "Pesta Kaamatan (Second day)", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-05-30": "Pesta Kaamatan", - "2024-05-31": "Pesta Kaamatan (Second day)", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-01": "Federal Territory Day", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-05-30": "Pesta Kaamatan", - "2025-05-31": "Pesta Kaamatan (Second day)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-01": "Federal Territory Day", - "2026-02-02": "Federal Territory Day (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-05-30": "Pesta Kaamatan", - "2026-05-31": "Pesta Kaamatan (Second day)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-02-01": "Federal Territory Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-05-30": "Pesta Kaamatan", - "2027-05-31": "Pesta Kaamatan (Second day)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-01": "Federal Territory Day", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-05-30": "Pesta Kaamatan", - "2028-05-31": "Pesta Kaamatan (Second day)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-05-30": "Pesta Kaamatan", - "2029-05-31": "Pesta Kaamatan (Second day)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-01": "Federal Territory Day", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-05-30": "Pesta Kaamatan", - "2030-05-31": "Pesta Kaamatan (Second day)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-02-01": "Federal Territory Day", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-05-30": "Pesta Kaamatan", - "2031-05-31": "Pesta Kaamatan (Second day)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-01": "Federal Territory Day", - "2032-02-02": "Federal Territory Day (in lieu)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-05-30": "Pesta Kaamatan", - "2032-05-31": "Pesta Kaamatan (Second day)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-05-30": "Pesta Kaamatan", - "2033-05-31": "Pesta Kaamatan (Second day)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-01": "Federal Territory Day", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); Pesta Kaamatan", - "2034-05-31": "Pesta Kaamatan (Second day)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-01": "Federal Territory Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-05-30": "Pesta Kaamatan", - "2035-05-31": "Pesta Kaamatan (Second day)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-01": "Federal Territory Day", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-05-30": "Pesta Kaamatan", - "2036-05-31": "Pesta Kaamatan (Second day)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-01": "Federal Territory Day", - "2037-02-02": "Federal Territory Day (in lieu)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-05-30": "Pesta Kaamatan", - "2037-05-31": "Pesta Kaamatan (Second day)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-01": "Federal Territory Day", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-05-30": "Pesta Kaamatan", - "2038-05-31": "Pesta Kaamatan (Second day)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-02-01": "Federal Territory Day", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-05-30": "Pesta Kaamatan", - "2039-05-31": "Pesta Kaamatan (Second day)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-01": "Federal Territory Day", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-05-30": "Pesta Kaamatan", - "2040-05-31": "Pesta Kaamatan (Second day)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-05-30": "Pesta Kaamatan", - "2041-05-31": "Pesta Kaamatan (Second day)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-02-01": "Federal Territory Day", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-05-30": "Pesta Kaamatan", - "2042-05-31": "Pesta Kaamatan (Second day)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-01": "Federal Territory Day", - "2043-02-02": "Federal Territory Day (in lieu)", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-05-30": "Pesta Kaamatan", - "2043-05-31": "Pesta Kaamatan (Second day)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-05-30": "Pesta Kaamatan", - "2044-05-31": "Pesta Kaamatan (Second day)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-01": "Federal Territory Day", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-05-30": "Pesta Kaamatan", - "2045-05-31": "Pesta Kaamatan (Second day)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-01": "Federal Territory Day", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-05-30": "Pesta Kaamatan", - "2046-05-31": "Pesta Kaamatan (Second day)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-02-01": "Federal Territory Day", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-05-30": "Pesta Kaamatan", - "2047-05-31": "Pesta Kaamatan (Second day)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-01": "Federal Territory Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-05-30": "Pesta Kaamatan", - "2048-05-31": "Pesta Kaamatan (Second day)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-01": "Federal Territory Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-05-30": "Pesta Kaamatan", - "2049-05-31": "Pesta Kaamatan (Second day)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-02-01": "Federal Territory Day", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-05-30": "Pesta Kaamatan", - "2050-05-31": "Pesta Kaamatan (Second day)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_MLK.json b/snapshots/countries/MY_MLK.json deleted file mode 100644 index 00350991a..000000000 --- a/snapshots/countries/MY_MLK.json +++ /dev/null @@ -1,1911 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-17": "Beginning of Ramadan (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated); Birthday of the Governor of Malacca", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-06": "Beginning of Ramadan (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-12": "Birthday of the Governor of Malacca", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-05-25": "Beginning of Ramadan (estimated)", - "1952-05-26": "Beginning of Ramadan (estimated) (in lieu)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-10-10": "Birthday of the Governor of Malacca", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-05-01": "Labour Day", - "1953-05-14": "Beginning of Ramadan (estimated)", - "1953-05-27": "Vesak Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-10-09": "Birthday of the Governor of Malacca", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-05-01": "Labour Day", - "1954-05-04": "Beginning of Ramadan (estimated)", - "1954-05-17": "Vesak Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-08": "Birthday of the Governor of Malacca", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-04-24": "Beginning of Ramadan (estimated)", - "1955-04-25": "Beginning of Ramadan (estimated) (in lieu)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-14": "Birthday of the Governor of Malacca", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-04-12": "Beginning of Ramadan (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-12": "Birthday of the Governor of Malacca", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-04-01": "Beginning of Ramadan (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-10-11": "Birthday of the Governor of Malacca", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-21": "Beginning of Ramadan (estimated)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-10-10": "Birthday of the Governor of Malacca", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-03-11": "Beginning of Ramadan (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-09": "Birthday of the Governor of Malacca", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-02-28": "Beginning of Ramadan (estimated)", - "1960-02-29": "Beginning of Ramadan (estimated) (in lieu)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-10-14": "Birthday of the Governor of Malacca", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-10-13": "Birthday of the Governor of Malacca", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-12": "Birthday of the Governor of Malacca", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-10-11": "Birthday of the Governor of Malacca", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-15": "Beginning of Ramadan (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-10-09": "Birthday of the Governor of Malacca", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-03": "Beginning of Ramadan (estimated)", - "1965-01-04": "Beginning of Ramadan (estimated) (in lieu)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-08": "Birthday of the Governor of Malacca", - "1965-10-22": "Deepavali", - "1965-12-23": "Beginning of Ramadan (estimated)", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-10-14": "Birthday of the Governor of Malacca", - "1966-11-10": "Deepavali", - "1966-12-13": "Beginning of Ramadan (estimated)", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-13": "Birthday of the Governor of Malacca", - "1967-10-31": "Deepavali", - "1967-12-02": "Beginning of Ramadan (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-10-11": "Birthday of the Governor of Malacca", - "1968-11-18": "Deepavali", - "1968-11-21": "Beginning of Ramadan (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-10-10": "Birthday of the Governor of Malacca", - "1969-11-08": "Deepavali", - "1969-11-10": "Beginning of Ramadan (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-09": "Birthday of the Governor of Malacca", - "1970-10-28": "Deepavali", - "1970-11-01": "Beginning of Ramadan (estimated)", - "1970-11-02": "Beginning of Ramadan (estimated) (in lieu)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-10-08": "Birthday of the Governor of Malacca", - "1971-10-20": "Beginning of Ramadan (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-08": "Beginning of Ramadan (estimated)", - "1972-10-09": "Beginning of Ramadan (estimated) (in lieu)", - "1972-10-13": "Birthday of the Governor of Malacca", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-09-27": "Beginning of Ramadan (estimated)", - "1973-10-12": "Birthday of the Governor of Malacca", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-09-17": "Beginning of Ramadan (estimated)", - "1974-10-11": "Birthday of the Governor of Malacca", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-06": "Beginning of Ramadan (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-10-10": "Birthday of the Governor of Malacca", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-26": "Beginning of Ramadan (estimated)", - "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-10-08": "Birthday of the Governor of Malacca", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-15": "Beginning of Ramadan (estimated)", - "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-10-14": "Birthday of the Governor of Malacca", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-05": "Beginning of Ramadan (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-13": "Birthday of the Governor of Malacca", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-07-25": "Beginning of Ramadan (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-12": "Birthday of the Governor of Malacca", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-13": "Beginning of Ramadan (estimated)", - "1980-07-14": "Beginning of Ramadan (estimated) (in lieu)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-10": "Birthday of the Governor of Malacca", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-02": "Beginning of Ramadan (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-09": "Birthday of the Governor of Malacca", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-22": "Beginning of Ramadan (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-08": "Birthday of the Governor of Malacca", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-12": "Beginning of Ramadan (estimated)", - "1983-06-13": "Beginning of Ramadan (estimated) (in lieu)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-10-14": "Birthday of the Governor of Malacca", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-05-31": "Beginning of Ramadan (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-12": "Birthday of the Governor of Malacca", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-20": "Beginning of Ramadan (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-10-11": "Birthday of the Governor of Malacca", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-09": "Beginning of Ramadan (estimated)", - "1986-05-23": "Vesak Day (estimated)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-10": "Birthday of the Governor of Malacca", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-04-29": "Beginning of Ramadan (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-10-09": "Birthday of the Governor of Malacca", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-04-17": "Beginning of Ramadan (estimated)", - "1988-04-18": "Beginning of Ramadan (estimated) (in lieu)", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-14": "Birthday of the Governor of Malacca", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-04-07": "Beginning of Ramadan (estimated)", - "1989-04-15": "Declaration of Malacca as a Historical City", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-13": "Birthday of the Governor of Malacca", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-03-27": "Beginning of Ramadan (estimated)", - "1990-04-15": "Declaration of Malacca as a Historical City", - "1990-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-10-12": "Birthday of the Governor of Malacca", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-17": "Beginning of Ramadan (estimated)", - "1991-03-18": "Beginning of Ramadan (estimated) (in lieu)", - "1991-04-15": "Declaration of Malacca as a Historical City; Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-10-11": "Birthday of the Governor of Malacca", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-03-05": "Beginning of Ramadan (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-04-15": "Declaration of Malacca as a Historical City", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-09": "Birthday of the Governor of Malacca", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-02-22": "Beginning of Ramadan (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-04-15": "Declaration of Malacca as a Historical City", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-10-08": "Birthday of the Governor of Malacca", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-04-15": "Declaration of Malacca as a Historical City", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-10-14": "Birthday of the Governor of Malacca", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-04-15": "Declaration of Malacca as a Historical City", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-10-13": "Birthday of the Governor of Malacca", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-01-21": "Beginning of Ramadan (estimated)", - "1996-01-22": "Beginning of Ramadan (estimated) (in lieu)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-15": "Declaration of Malacca as a Historical City", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-10-11": "Birthday of the Governor of Malacca", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-10": "Beginning of Ramadan (estimated)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-04-15": "Declaration of Malacca as a Historical City", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-10": "Birthday of the Governor of Malacca", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1997-12-30": "Beginning of Ramadan (estimated)", - "1998-01-01": "New Year's Day", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-15": "Declaration of Malacca as a Historical City", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-10-09": "Birthday of the Governor of Malacca", - "1998-11-17": "Deepavali", - "1998-12-19": "Beginning of Ramadan (estimated)", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-15": "Declaration of Malacca as a Historical City", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-10-08": "Birthday of the Governor of Malacca", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-09": "Beginning of Ramadan (estimated)", - "1999-12-25": "Christmas Day", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-04-15": "Declaration of Malacca as a Historical City", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-13": "Birthday of the Governor of Malacca", - "2000-10-25": "Deepavali", - "2000-11-27": "Beginning of Ramadan (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-04-15": "Declaration of Malacca as a Historical City", - "2001-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-10-12": "Birthday of the Governor of Malacca", - "2001-11-14": "Deepavali", - "2001-11-17": "Beginning of Ramadan", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-04-15": "Declaration of Malacca as a Historical City", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-10-11": "Birthday of the Governor of Malacca", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-06": "Beginning of Ramadan", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-04-15": "Declaration of Malacca as a Historical City", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-10": "Birthday of the Governor of Malacca", - "2003-10-23": "Deepavali", - "2003-10-27": "Beginning of Ramadan", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-04-15": "Declaration of Malacca as a Historical City", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-10-08": "Birthday of the Governor of Malacca", - "2004-10-16": "Beginning of Ramadan", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-04-15": "Declaration of Malacca as a Historical City", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-05": "Beginning of Ramadan", - "2005-10-14": "Birthday of the Governor of Malacca", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-04-15": "Declaration of Malacca as a Historical City", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-09-24": "Beginning of Ramadan", - "2006-09-25": "Beginning of Ramadan (in lieu)", - "2006-10-13": "Birthday of the Governor of Malacca", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-04-15": "Declaration of Malacca as a Historical City", - "2007-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-13": "Beginning of Ramadan", - "2007-10-12": "Birthday of the Governor of Malacca", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-04-15": "Declaration of Malacca as a Historical City", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-02": "Beginning of Ramadan", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-10": "Birthday of the Governor of Malacca", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-04-15": "Declaration of Malacca as a Historical City", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-22": "Beginning of Ramadan", - "2009-08-31": "National Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-09": "Birthday of the Governor of Malacca", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-04-15": "Declaration of Malacca as a Historical City", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-11": "Beginning of Ramadan", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-10-08": "Birthday of the Governor of Malacca", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-04-15": "Declaration of Malacca as a Historical City", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-01": "Beginning of Ramadan", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-14": "Birthday of the Governor of Malacca", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-04-15": "Declaration of Malacca as a Historical City", - "2012-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-07-20": "Beginning of Ramadan", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-12": "Birthday of the Governor of Malacca", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-04-15": "Declaration of Malacca as a Historical City", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-09": "Beginning of Ramadan", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-11": "Birthday of the Governor of Malacca", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-04-15": "Declaration of Malacca as a Historical City", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-06-29": "Beginning of Ramadan", - "2014-06-30": "Beginning of Ramadan (in lieu)", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-10": "Birthday of the Governor of Malacca", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-04-15": "Declaration of Malacca as a Historical City", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-06-18": "Beginning of Ramadan", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-09": "Birthday of the Governor of Malacca", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-04-15": "Declaration of Malacca as a Historical City", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-07": "Beginning of Ramadan", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-14": "Birthday of the Governor of Malacca", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-04-15": "Declaration of Malacca as a Historical City", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-05-27": "Beginning of Ramadan", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-13": "Birthday of the Governor of Malacca", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-04-15": "Declaration of Malacca as a Historical City", - "2018-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-17": "Beginning of Ramadan", - "2018-05-29": "Vesak Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-10-12": "Birthday of the Governor of Malacca", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-04-15": "Declaration of Malacca as a Historical City", - "2019-05-01": "Labour Day", - "2019-05-06": "Beginning of Ramadan", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-11": "Birthday of the Governor of Malacca", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-04-15": "Declaration of Malacca as a Historical City", - "2020-04-24": "Beginning of Ramadan", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-24": "Birthday of the Governor of Malacca", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-13": "Beginning of Ramadan", - "2021-04-15": "Declaration of Malacca as a Historical City", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-24": "Birthday of the Governor of Malacca", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-03": "Beginning of Ramadan", - "2022-04-04": "Beginning of Ramadan (in lieu)", - "2022-04-15": "Declaration of Malacca as a Historical City", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-24": "Birthday of the Governor of Malacca", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-03-23": "Beginning of Ramadan", - "2023-04-15": "Declaration of Malacca as a Historical City", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-24": "Birthday of the Governor of Malacca", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-12": "Beginning of Ramadan", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-04-15": "Declaration of Malacca as a Historical City", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-24": "Birthday of the Governor of Malacca", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-01": "Beginning of Ramadan (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-04-15": "Declaration of Malacca as a Historical City", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-24": "Birthday of the Governor of Malacca", - "2025-08-25": "Birthday of the Governor of Malacca (in lieu)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-04-15": "Declaration of Malacca as a Historical City", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-24": "Birthday of the Governor of Malacca", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Beginning of Ramadan (estimated)", - "2027-02-09": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-04-15": "Declaration of Malacca as a Historical City", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-24": "Birthday of the Governor of Malacca", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-01-28": "Beginning of Ramadan (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-04-15": "Declaration of Malacca as a Historical City", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-24": "Birthday of the Governor of Malacca", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-01-16": "Beginning of Ramadan (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-04-15": "Declaration of Malacca as a Historical City", - "2029-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-24": "Birthday of the Governor of Malacca", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-05": "Beginning of Ramadan (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-04-15": "Declaration of Malacca as a Historical City", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-24": "Birthday of the Governor of Malacca", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-12-25": "Christmas Day", - "2030-12-26": "Beginning of Ramadan (estimated)", - "2031-01-01": "New Year's Day", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-15": "Declaration of Malacca as a Historical City", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-24": "Birthday of the Governor of Malacca", - "2031-08-25": "Birthday of the Governor of Malacca (in lieu)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-15": "Beginning of Ramadan (estimated)", - "2031-12-25": "Christmas Day", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-04-15": "Declaration of Malacca as a Historical City", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-24": "Birthday of the Governor of Malacca", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-04": "Beginning of Ramadan (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-04-15": "Declaration of Malacca as a Historical City", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-24": "Birthday of the Governor of Malacca", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-11-23": "Beginning of Ramadan (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-04-15": "Declaration of Malacca as a Historical City", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-24": "Birthday of the Governor of Malacca", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-12": "Beginning of Ramadan (estimated)", - "2034-11-13": "Beginning of Ramadan (estimated) (in lieu)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-04-15": "Declaration of Malacca as a Historical City", - "2035-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-24": "Birthday of the Governor of Malacca", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-01": "Beginning of Ramadan (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-04-15": "Declaration of Malacca as a Historical City", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-24": "Birthday of the Governor of Malacca", - "2036-08-25": "Birthday of the Governor of Malacca (in lieu)", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-10-20": "Beginning of Ramadan (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-04-15": "Declaration of Malacca as a Historical City", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-24": "Birthday of the Governor of Malacca", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-10": "Beginning of Ramadan (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-15": "Declaration of Malacca as a Historical City", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-24": "Birthday of the Governor of Malacca", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-09-30": "Beginning of Ramadan (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-04-15": "Declaration of Malacca as a Historical City", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-24": "Birthday of the Governor of Malacca", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-09-19": "Beginning of Ramadan (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-04-15": "Declaration of Malacca as a Historical City", - "2040-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-24": "Birthday of the Governor of Malacca", - "2040-08-31": "National Day", - "2040-09-07": "Beginning of Ramadan (estimated)", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-04-15": "Declaration of Malacca as a Historical City", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-24": "Birthday of the Governor of Malacca", - "2041-08-28": "Beginning of Ramadan (estimated)", - "2041-08-31": "National Day", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-04-15": "Declaration of Malacca as a Historical City", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-17": "Beginning of Ramadan (estimated)", - "2042-08-18": "Beginning of Ramadan (estimated) (in lieu)", - "2042-08-24": "Birthday of the Governor of Malacca", - "2042-08-25": "Birthday of the Governor of Malacca (in lieu)", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-04-15": "Declaration of Malacca as a Historical City", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-06": "Beginning of Ramadan (estimated)", - "2043-08-24": "Birthday of the Governor of Malacca", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-04-15": "Declaration of Malacca as a Historical City", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-07-26": "Beginning of Ramadan (estimated)", - "2044-08-24": "Birthday of the Governor of Malacca; Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-04-15": "Declaration of Malacca as a Historical City", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-15": "Beginning of Ramadan (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-24": "Birthday of the Governor of Malacca", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-04-15": "Declaration of Malacca as a Historical City", - "2046-04-16": "Declaration of Malacca as a Historical City (in lieu)", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-05": "Beginning of Ramadan (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-24": "Birthday of the Governor of Malacca", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-04-15": "Declaration of Malacca as a Historical City", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-06-24": "Beginning of Ramadan (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-24": "Birthday of the Governor of Malacca", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-04-15": "Declaration of Malacca as a Historical City", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-12": "Beginning of Ramadan (estimated)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-24": "Birthday of the Governor of Malacca", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-04-15": "Declaration of Malacca as a Historical City", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-02": "Beginning of Ramadan (estimated)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-24": "Birthday of the Governor of Malacca", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-04-15": "Declaration of Malacca as a Historical City", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-05-22": "Beginning of Ramadan (estimated)", - "2050-05-23": "Beginning of Ramadan (estimated) (in lieu)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-24": "Birthday of the Governor of Malacca", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_NSN.json b/snapshots/countries/MY_NSN.json deleted file mode 100644 index b6d7f22dd..000000000 --- a/snapshots/countries/MY_NSN.json +++ /dev/null @@ -1,1903 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-05-14": "Isra and Mi'raj (estimated)", - "1950-05-15": "Isra and Mi'raj (estimated) (in lieu)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-02-21": "Thaipusam", - "1951-05-01": "Labour Day", - "1951-05-04": "Isra and Mi'raj (estimated)", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-04-22": "Isra and Mi'raj (estimated)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-02-28": "Thaipusam", - "1953-04-12": "Isra and Mi'raj (estimated)", - "1953-04-13": "Isra and Mi'raj (estimated) (in lieu)", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-02-18": "Thaipusam", - "1954-04-01": "Isra and Mi'raj (estimated)", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-03-21": "Isra and Mi'raj (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam (in lieu)", - "1956-03-10": "Isra and Mi'raj (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-15": "Thaipusam", - "1957-02-27": "Isra and Mi'raj (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-16": "Isra and Mi'raj (estimated)", - "1958-02-17": "Isra and Mi'raj (estimated) (in lieu)", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-05": "Thaipusam", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-06": "Isra and Mi'raj (estimated)", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam (in lieu)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-13": "Thaipusam", - "1960-01-26": "Isra and Mi'raj (estimated)", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-01-14": "Isra and Mi'raj (estimated)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-02": "Thaipusam", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-01-04": "Isra and Mi'raj (estimated)", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-19": "Thaipusam", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-24": "Isra and Mi'raj (estimated)", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-13": "Isra and Mi'raj (estimated)", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-01": "Isra and Mi'raj (estimated)", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-11-20": "Isra and Mi'raj (estimated)", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-06": "Thaipusam", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-30": "Isra and Mi'raj (estimated)", - "1967-10-31": "Deepavali", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-10-19": "Isra and Mi'raj (estimated)", - "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-10-08": "Isra and Mi'raj (estimated)", - "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-09-28": "Isra and Mi'raj (estimated)", - "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-09-17": "Isra and Mi'raj (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-09-05": "Isra and Mi'raj (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-25": "Isra and Mi'raj (estimated)", - "1973-08-31": "National Day", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-15": "Isra and Mi'raj (estimated)", - "1974-08-31": "National Day", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-05": "Isra and Mi'raj (estimated)", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-07-24": "Isra and Mi'raj (estimated)", - "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-03-05": "Thaipusam", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-07-13": "Isra and Mi'raj (estimated)", - "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-02-22": "Thaipusam", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-07-02": "Isra and Mi'raj (estimated)", - "1978-07-03": "Isra and Mi'raj (estimated) (in lieu)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-22": "Isra and Mi'raj (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-10": "Isra and Mi'raj (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-19": "Thaipusam", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-05-31": "Isra and Mi'raj (estimated)", - "1981-06-01": "Isra and Mi'raj (estimated) (in lieu)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam (in lieu)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-05-20": "Isra and Mi'raj (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-02-28": "Thaipusam", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-10": "Isra and Mi'raj (estimated)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-17": "Thaipusam", - "1984-04-28": "Isra and Mi'raj (estimated)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-03-06": "Thaipusam", - "1985-04-17": "Isra and Mi'raj (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam (in lieu)", - "1986-04-06": "Isra and Mi'raj (estimated)", - "1986-04-07": "Isra and Mi'raj (estimated) (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-03-27": "Isra and Mi'raj (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-03": "Thaipusam", - "1988-03-15": "Isra and Mi'raj (estimated)", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-02-21": "Thaipusam", - "1989-03-05": "Isra and Mi'raj (estimated)", - "1989-03-06": "Isra and Mi'raj (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-02-22": "Isra and Mi'raj (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-11": "Isra and Mi'raj (estimated)", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-01": "Thaipusam", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-01-31": "Isra and Mi'raj (estimated)", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-02-18": "Thaipusam", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-08": "Thaipusam", - "1993-01-20": "Isra and Mi'raj (estimated)", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-01-09": "Isra and Mi'raj (estimated)", - "1994-01-10": "Isra and Mi'raj (estimated) (in lieu)", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-25": "Thaipusam", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1994-12-29": "Isra and Mi'raj (estimated)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-14": "Thaipusam", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-19": "Isra and Mi'raj (estimated)", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-08": "Isra and Mi'raj (estimated)", - "1996-12-09": "Isra and Mi'raj (estimated) (in lieu)", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-11-27": "Isra and Mi'raj (estimated)", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-13": "Thaipusam", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-16": "Isra and Mi'raj (estimated)", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-05": "Isra and Mi'raj (estimated)", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-24": "Isra and Mi'raj (estimated)", - "2000-10-25": "Deepavali", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-09": "Thaipusam", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-10-15": "Isra and Mi'raj", - "2001-11-14": "Deepavali", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-27": "Thaipusam", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-10-04": "Isra and Mi'raj", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam (in lieu)", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-09-24": "Isra and Mi'raj", - "2003-10-23": "Deepavali", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-07": "Thaipusam", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-09-12": "Isra and Mi'raj", - "2004-09-13": "Isra and Mi'raj (in lieu)", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-02-23": "Thaipusam", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-09-01": "Isra and Mi'raj", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-02-13": "Thaipusam", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-22": "Isra and Mi'raj", - "2006-08-31": "National Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-11": "Isra and Mi'raj", - "2007-08-31": "National Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-22": "Thaipusam", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-07-31": "Isra and Mi'raj", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam (in lieu)", - "2009-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-07-20": "Isra and Mi'raj", - "2009-08-31": "National Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-03-01": "Thaipusam", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-07-09": "Isra and Mi'raj", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-02-18": "Thaipusam", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-06-29": "Isra and Mi'raj", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam (in lieu)", - "2012-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-06-17": "Isra and Mi'raj", - "2012-06-18": "Isra and Mi'raj (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-02-25": "Thaipusam", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-06-06": "Isra and Mi'raj", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Birthday of the Sultan of Negeri Sembilan; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-14": "Thaipusam", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-05-27": "Isra and Mi'raj", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-03-05": "Thaipusam", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-05-16": "Isra and Mi'raj", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-02-23": "Thaipusam", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-05": "Isra and Mi'raj", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-13": "Thaipusam", - "2017-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-04-24": "Isra and Mi'raj", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2018-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", - "2018-01-31": "Thaipusam", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-04-14": "Isra and Mi'raj", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2019-01-21": "Thaipusam", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-04-03": "Isra and Mi'raj", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-02-08": "Thaipusam", - "2020-03-22": "Isra and Mi'raj", - "2020-03-23": "Isra and Mi'raj (in lieu)", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2021-01-28": "Thaipusam", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-03-11": "Isra and Mi'raj", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-03-01": "Isra and Mi'raj", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam (in lieu)", - "2023-02-18": "Isra and Mi'raj", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2024-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", - "2024-01-25": "Thaipusam", - "2024-02-08": "Isra and Mi'raj", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2025-01-27": "Isra and Mi'raj (estimated)", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-11": "Thaipusam", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2026-01-16": "Isra and Mi'raj (estimated)", - "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-01-05": "Isra and Mi'raj (estimated)", - "2027-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", - "2028-01-01": "New Year's Day", - "2028-01-11": "Thaipusam", - "2028-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj (estimated)", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2029-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-03": "Isra and Mi'raj (estimated)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-11-23": "Isra and Mi'raj (estimated)", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-08": "Thaipusam", - "2031-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj (estimated)", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2032-01-01": "New Year's Day", - "2032-01-14": "Birthday of the Sultan of Negeri Sembilan; Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam (in lieu)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-10-10": "Isra and Mi'raj (estimated)", - "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2035-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-09-29": "Isra and Mi'raj (estimated)", - "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-13": "Thaipusam", - "2036-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2036-01-15": "Thaipusam (in lieu)", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj (estimated)", - "2037-09-16": "Malaysia Day", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-28": "Isra and Mi'raj (estimated)", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam (in lieu)", - "2039-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-17": "Isra and Mi'raj (estimated)", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-05": "Isra and Mi'raj (estimated)", - "2040-08-06": "Isra and Mi'raj (estimated) (in lieu)", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-07-25": "Isra and Mi'raj (estimated)", - "2041-08-31": "National Day", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-07": "Thaipusam", - "2042-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-15": "Isra and Mi'raj (estimated)", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-02-24": "Thaipusam", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-04": "Isra and Mi'raj (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam (in lieu)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-06-23": "Isra and Mi'raj (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2046-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-02-21": "Thaipusam", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-02": "Isra and Mi'raj (estimated)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-11": "Thaipusam", - "2047-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-05-22": "Isra and Mi'raj (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-28": "Thaipusam", - "2048-05-01": "Labour Day", - "2048-05-10": "Isra and Mi'raj (estimated)", - "2048-05-11": "Isra and Mi'raj (estimated) (in lieu)", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-02-17": "Thaipusam", - "2049-04-29": "Isra and Mi'raj (estimated)", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-08": "Thaipusam", - "2050-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-04-19": "Isra and Mi'raj (estimated)", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_PHG.json b/snapshots/countries/MY_PHG.json deleted file mode 100644 index e35d4a262..000000000 --- a/snapshots/countries/MY_PHG.json +++ /dev/null @@ -1,1897 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-07": "Hari Hol of Pahang", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-10-24": "Birthday of the Sultan of Pahang", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-07": "Hari Hol of Pahang", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-10-24": "Birthday of the Sultan of Pahang", - "1976-10-25": "Birthday of the Sultan of Pahang (in lieu)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-05-07": "Hari Hol of Pahang", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-10-24": "Birthday of the Sultan of Pahang", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-05-01": "Labour Day", - "1978-05-07": "Hari Hol of Pahang", - "1978-05-08": "Hari Hol of Pahang (in lieu)", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-24": "Birthday of the Sultan of Pahang", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-07": "Hari Hol of Pahang", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-24": "Birthday of the Sultan of Pahang", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-07": "Hari Hol of Pahang", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-10-24": "Birthday of the Sultan of Pahang", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-05-01": "Labour Day", - "1981-05-07": "Hari Hol of Pahang", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-24": "Birthday of the Sultan of Pahang", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-07": "Hari Hol of Pahang", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-10-24": "Birthday of the Sultan of Pahang", - "1982-10-25": "Birthday of the Sultan of Pahang (in lieu)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-07": "Hari Hol of Pahang", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-10-24": "Birthday of the Sultan of Pahang", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-05-01": "Labour Day", - "1984-05-07": "Hari Hol of Pahang", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-10-24": "Birthday of the Sultan of Pahang", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-07": "Hari Hol of Pahang", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-10-24": "Birthday of the Sultan of Pahang", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-07": "Hari Hol of Pahang", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-24": "Birthday of the Sultan of Pahang", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-05-01": "Labour Day", - "1987-05-07": "Hari Hol of Pahang", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-10-24": "Birthday of the Sultan of Pahang", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-07": "Hari Hol of Pahang", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-10-24": "Birthday of the Sultan of Pahang", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Hari Hol of Pahang; Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Hari Hol of Pahang (in lieu); Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-24": "Birthday of the Sultan of Pahang", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-07": "Hari Hol of Pahang", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-10-24": "Birthday of the Sultan of Pahang", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-07": "Hari Hol of Pahang", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-10-24": "Birthday of the Sultan of Pahang", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-07": "Hari Hol of Pahang", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Birthday of the Sultan of Pahang; Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-07": "Hari Hol of Pahang", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-10-24": "Birthday of the Sultan of Pahang", - "1993-10-25": "Birthday of the Sultan of Pahang (in lieu)", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-07": "Hari Hol of Pahang", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-10-24": "Birthday of the Sultan of Pahang", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-07": "Hari Hol of Pahang", - "1995-05-08": "Hari Hol of Pahang (in lieu)", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-10-24": "Birthday of the Sultan of Pahang", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-07": "Hari Hol of Pahang", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-10-24": "Birthday of the Sultan of Pahang", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated); Hari Hol of Pahang", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-24": "Birthday of the Sultan of Pahang", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-07": "Hari Hol of Pahang", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-10-24": "Birthday of the Sultan of Pahang", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-07": "Hari Hol of Pahang", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-10-24": "Birthday of the Sultan of Pahang", - "1999-10-25": "Birthday of the Sultan of Pahang (in lieu)", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-07": "Hari Hol of Pahang", - "2000-05-08": "Hari Hol of Pahang (in lieu)", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-24": "Birthday of the Sultan of Pahang", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Hari Hol of Pahang; Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-10-24": "Birthday of the Sultan of Pahang", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-07": "Hari Hol of Pahang", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-10-24": "Birthday of the Sultan of Pahang", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-07": "Hari Hol of Pahang", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-10-24": "Birthday of the Sultan of Pahang", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-05-07": "Hari Hol of Pahang", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-10-24": "Birthday of the Sultan of Pahang", - "2004-10-25": "Birthday of the Sultan of Pahang (in lieu)", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-07": "Hari Hol of Pahang", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-10-24": "Birthday of the Sultan of Pahang", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-07": "Hari Hol of Pahang", - "2006-05-08": "Hari Hol of Pahang (in lieu)", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Birthday of the Sultan of Pahang; Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-05-07": "Hari Hol of Pahang", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-10-24": "Birthday of the Sultan of Pahang", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-07": "Hari Hol of Pahang", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-24": "Birthday of the Sultan of Pahang", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-07": "Hari Hol of Pahang", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-10-24": "Birthday of the Sultan of Pahang", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-05-01": "Labour Day", - "2010-05-07": "Hari Hol of Pahang", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-10-24": "Birthday of the Sultan of Pahang", - "2010-10-25": "Birthday of the Sultan of Pahang (in lieu)", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-07": "Hari Hol of Pahang", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-24": "Birthday of the Sultan of Pahang", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-05-07": "Hari Hol of Pahang", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-24": "Birthday of the Sultan of Pahang", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-05-01": "Labour Day", - "2013-05-07": "Hari Hol of Pahang", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-10-24": "Birthday of the Sultan of Pahang", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-05-01": "Labour Day", - "2014-05-07": "Hari Hol of Pahang", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-24": "Birthday of the Sultan of Pahang", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-05-07": "Hari Hol of Pahang", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-10-24": "Birthday of the Sultan of Pahang", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-07": "Hari Hol of Pahang", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-24": "Birthday of the Sultan of Pahang", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-05-01": "Labour Day", - "2017-05-07": "Hari Hol of Pahang", - "2017-05-08": "Hari Hol of Pahang (in lieu)", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-10-24": "Birthday of the Sultan of Pahang", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-07": "Hari Hol of Pahang", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-10-24": "Birthday of the Sultan of Pahang", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-07": "Hari Hol of Pahang", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Birthday of the Sultan of Pahang; Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-05-01": "Labour Day", - "2020-05-07": "Hari Hol of Pahang; Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-30": "Birthday of the Sultan of Pahang", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-22": "Hari Hol of Pahang", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-07-30": "Birthday of the Sultan of Pahang", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-05-22": "Hari Hol of Pahang", - "2022-05-23": "Hari Hol of Pahang (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year); Birthday of the Sultan of Pahang", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-05-22": "Hari Hol of Pahang", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-07-30": "Birthday of the Sultan of Pahang", - "2023-07-31": "Birthday of the Sultan of Pahang (in lieu)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Hari Hol of Pahang; Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-07-30": "Birthday of the Sultan of Pahang", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-05-22": "Hari Hol of Pahang", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-07-30": "Birthday of the Sultan of Pahang", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-22": "Hari Hol of Pahang", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-07-30": "Birthday of the Sultan of Pahang", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-05-22": "Hari Hol of Pahang", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-07-30": "Birthday of the Sultan of Pahang", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-22": "Hari Hol of Pahang", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-07-30": "Birthday of the Sultan of Pahang", - "2028-07-31": "Birthday of the Sultan of Pahang (in lieu)", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-22": "Hari Hol of Pahang", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-07-30": "Birthday of the Sultan of Pahang", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-05-22": "Hari Hol of Pahang", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-07-30": "Birthday of the Sultan of Pahang", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-05-22": "Hari Hol of Pahang", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-07-30": "Birthday of the Sultan of Pahang", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-22": "Hari Hol of Pahang", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-07-30": "Birthday of the Sultan of Pahang", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-05-22": "Hari Hol of Pahang", - "2033-05-23": "Hari Hol of Pahang (in lieu)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-07-30": "Birthday of the Sultan of Pahang", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-22": "Hari Hol of Pahang", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-07-30": "Birthday of the Sultan of Pahang", - "2034-07-31": "Birthday of the Sultan of Pahang (in lieu)", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Hari Hol of Pahang; Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-07-30": "Birthday of the Sultan of Pahang", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-05-22": "Hari Hol of Pahang", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-07-30": "Birthday of the Sultan of Pahang", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-22": "Hari Hol of Pahang", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-07-30": "Birthday of the Sultan of Pahang", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-05-22": "Hari Hol of Pahang", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-07-30": "Birthday of the Sultan of Pahang", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-05-22": "Hari Hol of Pahang", - "2039-05-23": "Hari Hol of Pahang (in lieu)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-07-30": "Birthday of the Sultan of Pahang", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-22": "Hari Hol of Pahang", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-07-30": "Birthday of the Sultan of Pahang", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-05-22": "Hari Hol of Pahang", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-07-30": "Birthday of the Sultan of Pahang", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-05-22": "Hari Hol of Pahang", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-30": "Birthday of the Sultan of Pahang", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-05-01": "Labour Day", - "2043-05-22": "Hari Hol of Pahang", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-30": "Birthday of the Sultan of Pahang", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-05-22": "Hari Hol of Pahang", - "2044-05-23": "Hari Hol of Pahang (in lieu)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-07-30": "Birthday of the Sultan of Pahang", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-05-22": "Hari Hol of Pahang", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-30": "Birthday of the Sultan of Pahang", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-01": "Birthday of the Sultan of Pahang (in lieu)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-05-22": "Hari Hol of Pahang", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-07-30": "Birthday of the Sultan of Pahang", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-05-22": "Hari Hol of Pahang", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-07-30": "Birthday of the Sultan of Pahang", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-05-01": "Labour Day", - "2048-05-22": "Hari Hol of Pahang", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-07-30": "Birthday of the Sultan of Pahang", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-05-22": "Hari Hol of Pahang", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-30": "Birthday of the Sultan of Pahang", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-05-22": "Hari Hol of Pahang", - "2050-05-23": "Hari Hol of Pahang (in lieu)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-07-30": "Birthday of the Sultan of Pahang", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_PJY.json b/snapshots/countries/MY_PJY.json deleted file mode 100644 index 42d4f9075..000000000 --- a/snapshots/countries/MY_PJY.json +++ /dev/null @@ -1,1934 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-02-21": "Thaipusam", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-02-28": "Thaipusam", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-02-18": "Thaipusam", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam (in lieu)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-02-01": "Federal Territory Day", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-01": "Federal Territory Day", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu); Federal Territory Day (in lieu)", - "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-01": "Federal Territory Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-03-05": "Thaipusam", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-01": "Federal Territory Day", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-02-22": "Thaipusam", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-01": "Federal Territory Day", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-01": "Federal Territory Day", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-01": "Federal Territory Day", - "1981-02-02": "Federal Territory Day (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-19": "Thaipusam", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam (in lieu)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-02-01": "Federal Territory Day", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-01": "Federal Territory Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-02-28": "Thaipusam", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-01": "Federal Territory Day", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-17": "Thaipusam", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-01": "Federal Territory Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-03-06": "Thaipusam", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-01": "Federal Territory Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-02-01": "Federal Territory Day", - "1987-02-02": "Federal Territory Day (in lieu)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-01": "Federal Territory Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-03": "Thaipusam", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-01": "Federal Territory Day", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-02-01": "Federal Territory Day", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-01": "Federal Territory Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-01": "Federal Territory Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-02-01": "Federal Territory Day", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-01": "Federal Territory Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-01": "Federal Territory Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-01": "Federal Territory Day", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-02-01": "Federal Territory Day", - "1998-02-02": "Federal Territory Day (in lieu)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-01": "Federal Territory Day", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-01": "Federal Territory Day", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-09": "Thaipusam", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-02-01": "Federal Territory Day", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-01": "Federal Territory Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-27": "Thaipusam", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year; Federal Territory Day", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam (in lieu)", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-07": "Thaipusam", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-01": "Federal Territory Day", - "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Federal Territory Day (in lieu)", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-01": "Federal Territory Day", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-02-23": "Thaipusam", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-02-01": "Federal Territory Day", - "2006-02-13": "Thaipusam", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-01": "Federal Territory Day", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-01": "Federal Territory Day", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-22": "Thaipusam", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam (in lieu)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-02-01": "Federal Territory Day", - "2009-02-02": "Federal Territory Day (in lieu)", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-01": "Federal Territory Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-03-01": "Thaipusam", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-01": "Federal Territory Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-02-18": "Thaipusam", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-01": "Federal Territory Day", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-01": "Federal Territory Day", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-02-25": "Thaipusam", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday; Federal Territory Day", - "2014-02-14": "Thaipusam", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-01": "Federal Territory Day", - "2015-02-02": "Federal Territory Day (in lieu)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-03-05": "Thaipusam", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-01": "Federal Territory Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-02-23": "Thaipusam", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-13": "Thaipusam", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-02-01": "Federal Territory Day", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-01-31": "Thaipusam", - "2018-02-01": "Federal Territory Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-01-21": "Thaipusam", - "2019-02-01": "Federal Territory Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-02-01": "Federal Territory Day", - "2020-02-08": "Thaipusam", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-01-28": "Thaipusam", - "2021-02-01": "Federal Territory Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-03": "Malaysia Cup Holiday", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year; Federal Territory Day", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-01": "Federal Territory Day", - "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam (in lieu)", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-01-25": "Thaipusam", - "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-01": "Federal Territory Day", - "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-01": "Federal Territory Day; Thaipusam", - "2026-02-02": "Federal Territory Day (in lieu); Thaipusam (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-01-22": "Thaipusam", - "2027-02-01": "Federal Territory Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-01": "Federal Territory Day", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-01": "Federal Territory Day", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-02-01": "Federal Territory Day", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-01": "Federal Territory Day", - "2032-02-02": "Federal Territory Day (in lieu)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-01": "Federal Territory Day", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam (in lieu)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-01": "Federal Territory Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam (in lieu)", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-01": "Federal Territory Day", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-01": "Federal Territory Day", - "2037-02-02": "Federal Territory Day (in lieu)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-01": "Federal Territory Day", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam (in lieu)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-02-01": "Federal Territory Day", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-01": "Federal Territory Day", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-02-01": "Federal Territory Day", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-01": "Federal Territory Day", - "2043-02-02": "Federal Territory Day (in lieu)", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-02-24": "Thaipusam", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam (in lieu)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-01": "Federal Territory Day", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-01": "Federal Territory Day", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-02-21": "Thaipusam", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-02-01": "Federal Territory Day", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-01": "Federal Territory Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-28": "Thaipusam", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-01": "Federal Territory Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-02-17": "Thaipusam", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-02-01": "Federal Territory Day", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_PLS.json b/snapshots/countries/MY_PLS.json deleted file mode 100644 index 99dc025ba..000000000 --- a/snapshots/countries/MY_PLS.json +++ /dev/null @@ -1,1913 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-05-14": "Isra and Mi'raj (estimated)", - "1950-05-15": "Isra and Mi'raj (estimated) (in lieu)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-09-24": "Hari Raya Haji (estimated)", - "1950-09-25": "Hari Raya Haji (estimated) (in lieu)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-04": "Isra and Mi'raj (estimated)", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-09-13": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-04-22": "Isra and Mi'raj (estimated)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated)", - "1952-09-02": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-04-12": "Isra and Mi'raj (estimated)", - "1953-04-13": "Isra and Mi'raj (estimated) (in lieu)", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-21": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-04-01": "Isra and Mi'raj (estimated)", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-10": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-03-21": "Isra and Mi'raj (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-07-31": "Hari Raya Haji (estimated)", - "1955-08-01": "Hari Raya Haji (estimated) (in lieu)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-03-10": "Isra and Mi'raj (estimated)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-07-20": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-27": "Isra and Mi'raj (estimated)", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-09": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-02-16": "Isra and Mi'raj (estimated)", - "1958-02-17": "Isra and Mi'raj (estimated) (in lieu)", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-06-28": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-02-06": "Isra and Mi'raj (estimated)", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-06-18": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-26": "Isra and Mi'raj (estimated)", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-05": "Hari Raya Haji (estimated)", - "1960-06-06": "Hari Raya Haji (estimated) (in lieu)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-14": "Isra and Mi'raj (estimated)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-26": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-04": "Isra and Mi'raj (estimated)", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-15": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-24": "Isra and Mi'raj (estimated)", - "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-04": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-13": "Isra and Mi'raj (estimated)", - "1963-12-25": "Christmas Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-04-23": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-01": "Isra and Mi'raj (estimated)", - "1964-12-25": "Christmas Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated)", - "1965-04-13": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-11-20": "Isra and Mi'raj (estimated)", - "1965-12-25": "Christmas Day", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-02": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-03-22": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-30": "Isra and Mi'raj (estimated)", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated)", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-10": "Hari Raya Haji (estimated)", - "1968-03-11": "Hari Raya Haji (estimated) (in lieu)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-10-19": "Isra and Mi'raj (estimated)", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-02-28": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-10-08": "Isra and Mi'raj (estimated)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-17": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-09-28": "Isra and Mi'raj (estimated)", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-07": "Hari Raya Haji (estimated)", - "1971-02-08": "Hari Raya Haji (estimated) (in lieu)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-09-17": "Isra and Mi'raj (estimated)", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-01-27": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-09-05": "Isra and Mi'raj (estimated)", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated)", - "1973-01-16": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-25": "Isra and Mi'raj (estimated)", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-04": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-15": "Isra and Mi'raj (estimated)", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-05": "Isra and Mi'raj (estimated)", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-14": "Hari Raya Haji (estimated)", - "1975-12-15": "Hari Raya Haji (estimated) (in lieu)", - "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-07-24": "Isra and Mi'raj (estimated)", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-02": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-07-13": "Isra and Mi'raj (estimated)", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-11-22": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-07-02": "Isra and Mi'raj (estimated)", - "1978-07-03": "Isra and Mi'raj (estimated) (in lieu)", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-11-11": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-22": "Isra and Mi'raj (estimated)", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-01": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-10": "Isra and Mi'raj (estimated)", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated)", - "1980-10-21": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-05-31": "Isra and Mi'raj (estimated)", - "1981-06-01": "Isra and Mi'raj (estimated) (in lieu)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-09": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-05-20": "Isra and Mi'raj (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-09-28": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-10": "Isra and Mi'raj (estimated)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-09-18": "Hari Raya Haji (estimated)", - "1983-09-19": "Hari Raya Haji (estimated) (in lieu)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-04-28": "Isra and Mi'raj (estimated)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-06": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-04-17": "Isra and Mi'raj (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-27": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-04-06": "Isra and Mi'raj (estimated)", - "1986-04-07": "Isra and Mi'raj (estimated) (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-16": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-03-27": "Isra and Mi'raj (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-05": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-15": "Isra and Mi'raj (estimated)", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-07-24": "Hari Raya Haji (estimated)", - "1988-07-25": "Hari Raya Haji (estimated) (in lieu)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-03-05": "Isra and Mi'raj (estimated)", - "1989-03-06": "Isra and Mi'raj (estimated) (in lieu)", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-07-14": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-02-22": "Isra and Mi'raj (estimated)", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-03": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-02-11": "Isra and Mi'raj (estimated)", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-06-23": "Hari Raya Haji (estimated)", - "1991-06-24": "Hari Raya Haji (estimated) (in lieu)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-31": "Isra and Mi'raj (estimated)", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-06-12": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-20": "Isra and Mi'raj (estimated)", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-01": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-09": "Isra and Mi'raj (estimated)", - "1994-01-10": "Isra and Mi'raj (estimated) (in lieu)", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-21": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1994-12-29": "Isra and Mi'raj (estimated)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-10": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-19": "Isra and Mi'raj (estimated)", - "1995-12-25": "Christmas Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-04-28": "Hari Raya Haji (estimated)", - "1996-04-29": "Hari Raya Haji (estimated) (in lieu)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-08": "Isra and Mi'raj (estimated)", - "1996-12-09": "Isra and Mi'raj (estimated) (in lieu)", - "1996-12-25": "Christmas Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-04-18": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-11-27": "Isra and Mi'raj (estimated)", - "1997-12-25": "Christmas Day", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-08": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-16": "Isra and Mi'raj (estimated)", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-03-28": "Hari Raya Haji (estimated)", - "1999-03-29": "Hari Raya Haji (estimated) (in lieu)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-05": "Isra and Mi'raj (estimated)", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-03-17": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-17": "Birthday of The Raja of Perlis", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-24": "Isra and Mi'raj (estimated)", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-07": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-05-17": "Birthday of The Raja of Perlis", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-10-15": "Isra and Mi'raj", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-24": "Hari Raya Haji", - "2002-02-25": "Hari Raya Haji (in lieu)", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-17": "Birthday of The Raja of Perlis", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-10-04": "Isra and Mi'raj", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-13": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-05-17": "Birthday of The Raja of Perlis", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-09-24": "Isra and Mi'raj", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-05-17": "Birthday of The Raja of Perlis", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-09-12": "Isra and Mi'raj", - "2004-09-13": "Isra and Mi'raj (in lieu)", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-21": "Hari Raya Haji", - "2005-01-22": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-17": "Birthday of The Raja of Perlis", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-09-01": "Isra and Mi'raj", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-11": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-05-17": "Birthday of The Raja of Perlis", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-22": "Isra and Mi'raj", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "Hari Raya Haji", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-05-17": "Birthday of The Raja of Perlis", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-11": "Isra and Mi'raj", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-21": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-17": "Birthday of The Raja of Perlis", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-07-31": "Isra and Mi'raj", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-10": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-05-17": "Birthday of The Raja of Perlis", - "2009-05-18": "Birthday of The Raja of Perlis (in lieu)", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-07-20": "Isra and Mi'raj", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-11-29": "Hari Raya Haji", - "2009-11-30": "Hari Raya Haji (in lieu)", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-05-01": "Labour Day", - "2010-05-17": "Birthday of The Raja of Perlis", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-07-09": "Isra and Mi'raj", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-11-18": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Birthday of The Raja of Perlis; Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-06-29": "Isra and Mi'raj", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-08": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-05-17": "Birthday of The Raja of Perlis", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-06-17": "Isra and Mi'raj", - "2012-06-18": "Isra and Mi'raj (in lieu)", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-10-27": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-05-01": "Labour Day", - "2013-05-17": "Birthday of The Raja of Perlis", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-06-06": "Isra and Mi'raj", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-10-16": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-05-17": "Birthday of The Raja of Perlis", - "2014-05-27": "Isra and Mi'raj", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji", - "2014-10-07": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-05-16": "Isra and Mi'raj", - "2015-05-17": "Birthday of The Raja of Perlis", - "2015-05-18": "Birthday of The Raja of Perlis (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-09-25": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-05": "Isra and Mi'raj", - "2016-05-17": "Birthday of The Raja of Perlis", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-13": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-04-24": "Isra and Mi'raj", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-05-17": "Birthday of The Raja of Perlis", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-02": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-04-14": "Isra and Mi'raj", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-07-17": "Birthday of The Raja of Perlis", - "2018-08-22": "Hari Raya Haji", - "2018-08-23": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-04-03": "Isra and Mi'raj", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-17": "Birthday of The Raja of Perlis", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji", - "2019-08-13": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-03-22": "Isra and Mi'raj", - "2020-03-23": "Isra and Mi'raj (in lieu)", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-17": "Birthday of The Raja of Perlis", - "2020-07-31": "Hari Raya Haji", - "2020-08-01": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-03-11": "Isra and Mi'raj", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-17": "Birthday of The Raja of Perlis", - "2021-07-20": "Hari Raya Haji", - "2021-07-21": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-03-01": "Isra and Mi'raj", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji", - "2022-07-12": "Hari Raya Haji (in lieu)", - "2022-07-17": "Birthday of The Raja of Perlis", - "2022-07-18": "Birthday of The Raja of Perlis (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-18": "Isra and Mi'raj", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-06-30": "Hari Raya Haji", - "2023-07-17": "Birthday of The Raja of Perlis", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-06-18": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-07-17": "Birthday of The Raja of Perlis", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-27": "Isra and Mi'raj (estimated)", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-07": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-07-17": "Birthday of The Raja of Perlis", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-16": "Isra and Mi'raj (estimated)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-05-28": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-07-17": "Birthday of The Raja of Perlis", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-05": "Isra and Mi'raj (estimated)", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated)", - "2027-05-18": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-07-17": "Birthday of The Raja of Perlis", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-06": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-07-17": "Birthday of The Raja of Perlis", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj (estimated)", - "2028-12-25": "Christmas Day", - "2029-02-01": "Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-04-25": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-17": "Birthday of The Raja of Perlis", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-03": "Isra and Mi'raj (estimated)", - "2029-12-25": "Christmas Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-04-14": "Hari Raya Haji (estimated)", - "2030-04-15": "Hari Raya Haji (estimated) (in lieu)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-07-17": "Birthday of The Raja of Perlis", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-11-23": "Isra and Mi'raj (estimated)", - "2030-12-25": "Christmas Day", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-03": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-07-17": "Birthday of The Raja of Perlis", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj (estimated)", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-03-23": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-07-17": "Birthday of The Raja of Perlis", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-03-12": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-07-17": "Birthday of The Raja of Perlis", - "2033-07-18": "Birthday of The Raja of Perlis (in lieu)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-02": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-07-17": "Birthday of The Raja of Perlis", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-10-10": "Isra and Mi'raj (estimated)", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated)", - "2035-02-20": "Hari Raya Haji (estimated) (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-07-17": "Birthday of The Raja of Perlis", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-09-29": "Isra and Mi'raj (estimated)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-08": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-07-17": "Birthday of The Raja of Perlis", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj (estimated)", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-01-27": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-07-17": "Birthday of The Raja of Perlis", - "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj (estimated)", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-01-17": "Hari Raya Haji (estimated)", - "2038-01-18": "Hari Raya Haji (estimated) (in lieu)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-07-17": "Birthday of The Raja of Perlis", - "2038-08-28": "Isra and Mi'raj (estimated)", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-06": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-07-17": "Birthday of The Raja of Perlis", - "2039-07-18": "Birthday of The Raja of Perlis (in lieu)", - "2039-08-17": "Isra and Mi'raj (estimated)", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Hari Raya Haji (estimated)", - "2039-12-28": "Christmas Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-07-17": "Birthday of The Raja of Perlis", - "2040-08-05": "Isra and Mi'raj (estimated)", - "2040-08-06": "Isra and Mi'raj (estimated) (in lieu)", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-15": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-07-17": "Birthday of The Raja of Perlis", - "2041-07-25": "Isra and Mi'raj (estimated)", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-05": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-15": "Isra and Mi'raj (estimated)", - "2042-07-17": "Birthday of The Raja of Perlis", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated)", - "2042-11-25": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-04": "Isra and Mi'raj (estimated)", - "2043-07-17": "Birthday of The Raja of Perlis", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-11-13": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-06-23": "Isra and Mi'raj (estimated)", - "2044-07-17": "Birthday of The Raja of Perlis", - "2044-07-18": "Birthday of The Raja of Perlis (in lieu)", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-01": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj (estimated)", - "2045-07-17": "Birthday of The Raja of Perlis", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-10-22": "Hari Raya Haji (estimated)", - "2045-10-23": "Hari Raya Haji (estimated) (in lieu)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-02": "Isra and Mi'raj (estimated)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-17": "Birthday of The Raja of Perlis", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-11": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-05-22": "Isra and Mi'raj (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-17": "Birthday of The Raja of Perlis", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-01": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-05-01": "Labour Day", - "2048-05-10": "Isra and Mi'raj (estimated)", - "2048-05-11": "Isra and Mi'raj (estimated) (in lieu)", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-07-17": "Birthday of The Raja of Perlis", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-09-20": "Hari Raya Haji (estimated)", - "2048-09-21": "Hari Raya Haji (estimated) (in lieu)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-04-29": "Isra and Mi'raj (estimated)", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-17": "Birthday of The Raja of Perlis", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-09": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-04-19": "Isra and Mi'raj (estimated)", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-07-17": "Birthday of The Raja of Perlis", - "2050-07-18": "Birthday of The Raja of Perlis (in lieu)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated)", - "2050-08-30": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_PNG.json b/snapshots/countries/MY_PNG.json deleted file mode 100644 index 93162601f..000000000 --- a/snapshots/countries/MY_PNG.json +++ /dev/null @@ -1,2001 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-08": "Birthday of the Governor of Penang", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-02-21": "Thaipusam", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-14": "Birthday of the Governor of Penang", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-07-12": "Birthday of the Governor of Penang", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-02-28": "Thaipusam", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-07-11": "Birthday of the Governor of Penang", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-02-18": "Thaipusam", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-07-10": "Birthday of the Governor of Penang", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-09": "Birthday of the Governor of Penang", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam (in lieu)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-14": "Birthday of the Governor of Penang", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-13": "Birthday of the Governor of Penang", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-12": "Birthday of the Governor of Penang", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-07-11": "Birthday of the Governor of Penang", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-07-09": "Birthday of the Governor of Penang", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-07-08": "Birthday of the Governor of Penang", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-07-14": "Birthday of the Governor of Penang", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-07-13": "Birthday of the Governor of Penang", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-11": "Birthday of the Governor of Penang", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-07-09": "Birthday of the Governor of Penang", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-07-08": "Birthday of the Governor of Penang", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-07-13": "Birthday of the Governor of Penang", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-07-12": "Birthday of the Governor of Penang", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-07-11": "Birthday of the Governor of Penang", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-07-10": "Birthday of the Governor of Penang", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-07-08": "Birthday of the Governor of Penang", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-07-14": "Birthday of the Governor of Penang", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-07-13": "Birthday of the Governor of Penang", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-07-12": "Birthday of the Governor of Penang", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-07-10": "Birthday of the Governor of Penang", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-03-05": "Thaipusam", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-07-09": "Birthday of the Governor of Penang", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-02-22": "Thaipusam", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-07-08": "Birthday of the Governor of Penang", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-07-14": "Birthday of the Governor of Penang", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-12": "Birthday of the Governor of Penang", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-19": "Thaipusam", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-11": "Birthday of the Governor of Penang", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam (in lieu)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-10": "Birthday of the Governor of Penang", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-02-28": "Thaipusam", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-09": "Birthday of the Governor of Penang", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-17": "Thaipusam", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-07-14": "Birthday of the Governor of Penang", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-03-06": "Thaipusam", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-07-13": "Birthday of the Governor of Penang", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-07-12": "Birthday of the Governor of Penang", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-07-11": "Birthday of the Governor of Penang", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-03": "Thaipusam", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-09": "Birthday of the Governor of Penang", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-08": "Birthday of the Governor of Penang", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-14": "Birthday of the Governor of Penang", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-07-13": "Birthday of the Governor of Penang", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-07-11": "Birthday of the Governor of Penang", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-07-10": "Birthday of the Governor of Penang", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-07-09": "Birthday of the Governor of Penang", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-07-08": "Birthday of the Governor of Penang", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-13": "Birthday of the Governor of Penang", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-12": "Birthday of the Governor of Penang", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-07-11": "Birthday of the Governor of Penang", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-07-10": "Birthday of the Governor of Penang", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-07-08": "Birthday of the Governor of Penang", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-09": "Thaipusam", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-07-14": "Birthday of the Governor of Penang", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-27": "Thaipusam", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-07-13": "Birthday of the Governor of Penang", - "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam (in lieu)", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-07-12": "Birthday of the Governor of Penang", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-07": "Thaipusam", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-07-10": "Birthday of the Governor of Penang", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-02-23": "Thaipusam", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-07-09": "Birthday of the Governor of Penang", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-02-13": "Thaipusam", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-07-08": "Birthday of the Governor of Penang", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-07-14": "Birthday of the Governor of Penang", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-22": "Thaipusam", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-07-12": "Birthday of the Governor of Penang", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam (in lieu)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-07-07": "George Town Heritage Day", - "2009-07-11": "Birthday of the Governor of Penang", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-03-01": "Thaipusam", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-07-07": "George Town Heritage Day", - "2010-07-10": "Birthday of the Governor of Penang", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-02-18": "Thaipusam", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-07-07": "George Town Heritage Day", - "2011-07-09": "Birthday of the Governor of Penang", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-07-07": "George Town Heritage Day", - "2012-07-14": "Birthday of the Governor of Penang", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-02-25": "Thaipusam", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-07": "George Town Heritage Day", - "2013-07-08": "George Town Heritage Day (in lieu)", - "2013-07-13": "Birthday of the Governor of Penang", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-14": "Thaipusam", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-07": "George Town Heritage Day", - "2014-07-12": "Birthday of the Governor of Penang", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-03-05": "Thaipusam", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-07": "George Town Heritage Day", - "2015-07-11": "Birthday of the Governor of Penang", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-02-23": "Thaipusam", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "George Town Heritage Day; Second day of Hari Raya Puasa", - "2016-07-09": "Birthday of the Governor of Penang", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-13": "Thaipusam", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-07-07": "George Town Heritage Day", - "2017-07-08": "Birthday of the Governor of Penang", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-01-31": "Thaipusam", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-07-07": "George Town Heritage Day", - "2018-07-14": "Birthday of the Governor of Penang", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-01-21": "Thaipusam", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-07": "George Town Heritage Day", - "2019-07-08": "George Town Heritage Day (in lieu)", - "2019-07-13": "Birthday of the Governor of Penang", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-02-08": "Thaipusam", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-07": "George Town Heritage Day", - "2020-07-11": "Birthday of the Governor of Penang", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-01-28": "Thaipusam", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-07": "George Town Heritage Day", - "2021-07-10": "Birthday of the Governor of Penang", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-07": "George Town Heritage Day", - "2022-07-09": "Birthday of the Governor of Penang", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam (in lieu)", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-07": "George Town Heritage Day", - "2023-07-08": "Birthday of the Governor of Penang", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year); George Town Heritage Day", - "2024-07-08": "George Town Heritage Day (in lieu)", - "2024-07-13": "Birthday of the Governor of Penang", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-07-07": "George Town Heritage Day", - "2025-07-12": "Birthday of the Governor of Penang", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-07-07": "George Town Heritage Day", - "2026-07-11": "Birthday of the Governor of Penang", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-07-07": "George Town Heritage Day", - "2027-07-10": "Birthday of the Governor of Penang", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-07-07": "George Town Heritage Day", - "2028-07-08": "Birthday of the Governor of Penang", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-07": "George Town Heritage Day", - "2029-07-14": "Birthday of the Governor of Penang", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-07": "George Town Heritage Day", - "2030-07-08": "George Town Heritage Day (in lieu)", - "2030-07-13": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-07-07": "George Town Heritage Day", - "2031-07-12": "Birthday of the Governor of Penang", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-07-07": "George Town Heritage Day", - "2032-07-10": "Birthday of the Governor of Penang", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-07-07": "George Town Heritage Day", - "2033-07-09": "Birthday of the Governor of Penang", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam (in lieu)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-07-07": "George Town Heritage Day", - "2034-07-08": "Birthday of the Governor of Penang", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-07-07": "George Town Heritage Day", - "2035-07-14": "Birthday of the Governor of Penang", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam (in lieu)", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-07-07": "George Town Heritage Day", - "2036-07-12": "Birthday of the Governor of Penang", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-07-07": "George Town Heritage Day", - "2037-07-11": "Birthday of the Governor of Penang", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-07-07": "George Town Heritage Day", - "2038-07-10": "Birthday of the Governor of Penang", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam (in lieu)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-07-07": "George Town Heritage Day", - "2039-07-09": "Birthday of the Governor of Penang", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-07-07": "George Town Heritage Day", - "2040-07-14": "Birthday of the Governor of Penang", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-07-07": "George Town Heritage Day", - "2041-07-08": "George Town Heritage Day (in lieu)", - "2041-07-13": "Birthday of the Governor of Penang", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-07": "George Town Heritage Day", - "2042-07-12": "Birthday of the Governor of Penang", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-02-24": "Thaipusam", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-07": "George Town Heritage Day", - "2043-07-11": "Birthday of the Governor of Penang", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam (in lieu)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-07-07": "George Town Heritage Day", - "2044-07-09": "Birthday of the Governor of Penang", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-07": "George Town Heritage Day", - "2045-07-08": "Birthday of the Governor of Penang", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-02-21": "Thaipusam", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-07": "George Town Heritage Day", - "2046-07-14": "Birthday of the Governor of Penang", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-07": "George Town Heritage Day", - "2047-07-08": "George Town Heritage Day (in lieu)", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-13": "Birthday of the Governor of Penang", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-28": "Thaipusam", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-07": "George Town Heritage Day", - "2048-07-11": "Birthday of the Governor of Penang", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-02-17": "Thaipusam", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-07": "George Town Heritage Day", - "2049-07-10": "Birthday of the Governor of Penang", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-07-07": "George Town Heritage Day", - "2050-07-09": "Birthday of the Governor of Penang", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_PRK.json b/snapshots/countries/MY_PRK.json deleted file mode 100644 index 5e00b5b45..000000000 --- a/snapshots/countries/MY_PRK.json +++ /dev/null @@ -1,1955 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-11-27": "Birthday of the Sultan of Perak", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-02-21": "Thaipusam", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-11-27": "Birthday of the Sultan of Perak", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-27": "Birthday of the Sultan of Perak", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-02-28": "Thaipusam", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-11-27": "Birthday of the Sultan of Perak", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-02-18": "Thaipusam", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-11-27": "Birthday of the Sultan of Perak", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-11-27": "Birthday of the Sultan of Perak", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam (in lieu)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-11-27": "Birthday of the Sultan of Perak", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-11-27": "Birthday of the Sultan of Perak", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-11-27": "Birthday of the Sultan of Perak", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-11-27": "Birthday of the Sultan of Perak", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-11-27": "Birthday of the Sultan of Perak", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-11-27": "Birthday of the Sultan of Perak", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-11-27": "Birthday of the Sultan of Perak", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-11-27": "Birthday of the Sultan of Perak", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-11-27": "Birthday of the Sultan of Perak", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-11-27": "Birthday of the Sultan of Perak", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-11-27": "Birthday of the Sultan of Perak", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-11-27": "Birthday of the Sultan of Perak", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-11-27": "Birthday of the Sultan of Perak", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-11-27": "Birthday of the Sultan of Perak", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-27": "Birthday of the Sultan of Perak", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-27": "Birthday of the Sultan of Perak", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-11-27": "Birthday of the Sultan of Perak", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-11-27": "Birthday of the Sultan of Perak", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-11-27": "Birthday of the Sultan of Perak", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-11-27": "Birthday of the Sultan of Perak", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-11-27": "Birthday of the Sultan of Perak", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-03-05": "Thaipusam", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-11-27": "Birthday of the Sultan of Perak", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-02-22": "Thaipusam", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-11-27": "Birthday of the Sultan of Perak", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-11-27": "Birthday of the Sultan of Perak", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-11-27": "Birthday of the Sultan of Perak", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-19": "Thaipusam", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-11-27": "Birthday of the Sultan of Perak", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam (in lieu)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-11-27": "Birthday of the Sultan of Perak", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-02-28": "Thaipusam", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-11-27": "Birthday of the Sultan of Perak", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-17": "Thaipusam", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-11-27": "Birthday of the Sultan of Perak", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-03-06": "Thaipusam", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-11-27": "Birthday of the Sultan of Perak", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-11-27": "Birthday of the Sultan of Perak", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-11-27": "Birthday of the Sultan of Perak", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-03": "Thaipusam", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-11-27": "Birthday of the Sultan of Perak", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-11-27": "Birthday of the Sultan of Perak", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-11-27": "Birthday of the Sultan of Perak", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-11-27": "Birthday of the Sultan of Perak", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-11-27": "Birthday of the Sultan of Perak", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-11-27": "Birthday of the Sultan of Perak", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-11-27": "Birthday of the Sultan of Perak", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-11-27": "Birthday of the Sultan of Perak", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-11-27": "Birthday of the Sultan of Perak", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-11-27": "Birthday of the Sultan of Perak", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-11-27": "Birthday of the Sultan of Perak", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-27": "Birthday of the Sultan of Perak", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-11-27": "Birthday of the Sultan of Perak", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-09": "Thaipusam", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-11-27": "Birthday of the Sultan of Perak", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-27": "Thaipusam", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-11-27": "Birthday of the Sultan of Perak", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam (in lieu)", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Birthday of the Sultan of Perak; Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-07": "Thaipusam", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-11-27": "Birthday of the Sultan of Perak", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-02-23": "Thaipusam", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-11-27": "Birthday of the Sultan of Perak", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-02-13": "Thaipusam", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-11-27": "Birthday of the Sultan of Perak", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-11-27": "Birthday of the Sultan of Perak", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-22": "Thaipusam", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-11-27": "Birthday of the Sultan of Perak", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam (in lieu)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-27": "Birthday of the Sultan of Perak", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-03-01": "Thaipusam", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-11-27": "Birthday of the Sultan of Perak", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-02-18": "Thaipusam", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year); Birthday of the Sultan of Perak", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-11-27": "Birthday of the Sultan of Perak", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-02-25": "Thaipusam", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-11-27": "Birthday of the Sultan of Perak", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-14": "Thaipusam", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-11-27": "Birthday of the Sultan of Perak", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-03-05": "Thaipusam", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-11-27": "Birthday of the Sultan of Perak", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-02-23": "Thaipusam", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-11-27": "Birthday of the Sultan of Perak", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-13": "Thaipusam", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-11-27": "Birthday of the Sultan of Perak", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-01-31": "Thaipusam", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-02": "Birthday of the Sultan of Perak", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-01-21": "Thaipusam", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-01": "Birthday of the Sultan of Perak", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-02-08": "Thaipusam", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-06": "Birthday of the Sultan of Perak", - "2020-11-14": "Deepavali", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-01-28": "Thaipusam", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-11-05": "Birthday of the Sultan of Perak", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-11-04": "Birthday of the Sultan of Perak", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam (in lieu)", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-03": "Birthday of the Sultan of Perak", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-11-01": "Birthday of the Sultan of Perak", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-07": "Birthday of the Sultan of Perak", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-06": "Birthday of the Sultan of Perak", - "2026-11-07": "Deepavali", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-11-05": "Birthday of the Sultan of Perak", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-03": "Birthday of the Sultan of Perak", - "2028-11-14": "Deepavali", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-02": "Birthday of the Sultan of Perak", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-11-01": "Birthday of the Sultan of Perak", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-07": "Birthday of the Sultan of Perak", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-11-05": "Birthday of the Sultan of Perak", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-11-04": "Birthday of the Sultan of Perak", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam (in lieu)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-03": "Birthday of the Sultan of Perak", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-02": "Birthday of the Sultan of Perak", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam (in lieu)", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-07": "Birthday of the Sultan of Perak", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-06": "Birthday of the Sultan of Perak", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-11-05": "Birthday of the Sultan of Perak", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam (in lieu)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-04": "Birthday of the Sultan of Perak", - "2039-11-14": "Deepavali", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-02": "Birthday of the Sultan of Perak", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-11-01": "Birthday of the Sultan of Perak", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-07": "Birthday of the Sultan of Perak", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-02-24": "Thaipusam", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-06": "Birthday of the Sultan of Perak", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam (in lieu)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-04": "Birthday of the Sultan of Perak", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-03": "Birthday of the Sultan of Perak", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-02-21": "Thaipusam", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-11-02": "Birthday of the Sultan of Perak", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-01": "Birthday of the Sultan of Perak", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-28": "Thaipusam", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-11-06": "Birthday of the Sultan of Perak", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-02-17": "Thaipusam", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-11-05": "Birthday of the Sultan of Perak", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-04": "Birthday of the Sultan of Perak", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_SBH.json b/snapshots/countries/MY_SBH.json deleted file mode 100644 index 682b26583..000000000 --- a/snapshots/countries/MY_SBH.json +++ /dev/null @@ -1,2053 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-04-07": "Good Friday", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-05-30": "Pesta Kaamatan", - "1950-05-31": "Pesta Kaamatan (Second day)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-07": "Birthday of the Governor of Sabah", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-03-23": "Good Friday", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-05-30": "Pesta Kaamatan", - "1951-05-31": "Pesta Kaamatan (Second day)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-06": "Birthday of the Governor of Sabah", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-04-11": "Good Friday", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-05-30": "Pesta Kaamatan", - "1952-05-31": "Pesta Kaamatan (Second day)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-10-04": "Birthday of the Governor of Sabah", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-04-03": "Good Friday", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Pesta Kaamatan", - "1953-05-31": "Pesta Kaamatan (Second day)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-10-03": "Birthday of the Governor of Sabah", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-04-16": "Good Friday", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-30": "Pesta Kaamatan", - "1954-05-31": "Pesta Kaamatan (Second day)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-02": "Birthday of the Governor of Sabah", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-04-08": "Good Friday", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-05-30": "Pesta Kaamatan", - "1955-05-31": "Pesta Kaamatan (Second day)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-01": "Birthday of the Governor of Sabah", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-03-30": "Good Friday", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-05-30": "Pesta Kaamatan", - "1956-05-31": "Pesta Kaamatan (Second day)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-06": "Birthday of the Governor of Sabah", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-04-19": "Good Friday", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-05-30": "Pesta Kaamatan", - "1957-05-31": "Pesta Kaamatan (Second day)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-05": "Birthday of the Governor of Sabah", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-04": "Good Friday", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-05-30": "Pesta Kaamatan", - "1958-05-31": "Pesta Kaamatan (Second day)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-10-04": "Birthday of the Governor of Sabah", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-03-27": "Good Friday", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-05-30": "Pesta Kaamatan", - "1959-05-31": "Pesta Kaamatan (Second day)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-03": "Birthday of the Governor of Sabah", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-04-15": "Good Friday", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-05-30": "Pesta Kaamatan", - "1960-05-31": "Pesta Kaamatan (Second day)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-10-01": "Birthday of the Governor of Sabah", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-03-31": "Good Friday", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-05-30": "Pesta Kaamatan", - "1961-05-31": "Pesta Kaamatan (Second day)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-10-07": "Birthday of the Governor of Sabah", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-04-20": "Good Friday", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-05-30": "Pesta Kaamatan", - "1962-05-31": "Pesta Kaamatan (Second day)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-06": "Birthday of the Governor of Sabah", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-04-12": "Good Friday", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-05-30": "Pesta Kaamatan", - "1963-05-31": "Pesta Kaamatan (Second day)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-10-05": "Birthday of the Governor of Sabah", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-03-27": "Good Friday", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-05-30": "Pesta Kaamatan", - "1964-05-31": "Pesta Kaamatan (Second day)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-10-03": "Birthday of the Governor of Sabah", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-04-16": "Good Friday", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-05-30": "Pesta Kaamatan", - "1965-05-31": "Pesta Kaamatan (Second day)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-02": "Birthday of the Governor of Sabah", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-08": "Good Friday", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-05-30": "Pesta Kaamatan", - "1966-05-31": "Pesta Kaamatan (Second day)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-10-01": "Birthday of the Governor of Sabah", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-03-24": "Good Friday", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-05-30": "Pesta Kaamatan", - "1967-05-31": "Pesta Kaamatan (Second day)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-07": "Birthday of the Governor of Sabah", - "1967-10-31": "Deepavali", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-04-12": "Good Friday", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-05-30": "Pesta Kaamatan", - "1968-05-31": "Pesta Kaamatan (Second day)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-10-05": "Birthday of the Governor of Sabah", - "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-04-04": "Good Friday", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-05-30": "Pesta Kaamatan", - "1969-05-31": "Pesta Kaamatan (Second day)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-10-04": "Birthday of the Governor of Sabah", - "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-03-27": "Good Friday", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-05-30": "Pesta Kaamatan", - "1970-05-31": "Pesta Kaamatan (Second day)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-03": "Birthday of the Governor of Sabah", - "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-04-09": "Good Friday", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-05-30": "Pesta Kaamatan", - "1971-05-31": "Pesta Kaamatan (Second day)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-10-02": "Birthday of the Governor of Sabah", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-03-31": "Good Friday", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-05-30": "Pesta Kaamatan", - "1972-05-31": "Pesta Kaamatan (Second day)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-07": "Birthday of the Governor of Sabah", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-04-20": "Good Friday", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-05-30": "Pesta Kaamatan", - "1973-05-31": "Pesta Kaamatan (Second day)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-10-06": "Birthday of the Governor of Sabah", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-04-12": "Good Friday", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-05-30": "Pesta Kaamatan", - "1974-05-31": "Pesta Kaamatan (Second day)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-10-05": "Birthday of the Governor of Sabah", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-03-28": "Good Friday", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-05-30": "Pesta Kaamatan", - "1975-05-31": "Pesta Kaamatan (Second day)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-10-04": "Birthday of the Governor of Sabah", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-04-16": "Good Friday", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-05-30": "Pesta Kaamatan", - "1976-05-31": "Pesta Kaamatan (Second day)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-10-02": "Birthday of the Governor of Sabah", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-04-08": "Good Friday", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-05-30": "Pesta Kaamatan", - "1977-05-31": "Pesta Kaamatan (Second day)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-10-01": "Birthday of the Governor of Sabah", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-03-24": "Good Friday", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-05-30": "Pesta Kaamatan", - "1978-05-31": "Pesta Kaamatan (Second day)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-07": "Birthday of the Governor of Sabah", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-04-13": "Good Friday", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-05-30": "Pesta Kaamatan", - "1979-05-31": "Pesta Kaamatan (Second day)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-06": "Birthday of the Governor of Sabah", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-04-04": "Good Friday", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-05-30": "Pesta Kaamatan", - "1980-05-31": "Pesta Kaamatan (Second day)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-04": "Birthday of the Governor of Sabah", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-04-17": "Good Friday", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-05-30": "Pesta Kaamatan", - "1981-05-31": "Pesta Kaamatan (Second day)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-03": "Birthday of the Governor of Sabah", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-04-09": "Good Friday", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-05-30": "Pesta Kaamatan", - "1982-05-31": "Pesta Kaamatan (Second day)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-02": "Birthday of the Governor of Sabah", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-04-01": "Good Friday", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-05-30": "Pesta Kaamatan", - "1983-05-31": "Pesta Kaamatan (Second day)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-01": "Birthday of the Governor of Sabah", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-04-20": "Good Friday", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-05-30": "Pesta Kaamatan", - "1984-05-31": "Pesta Kaamatan (Second day)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-06": "Birthday of the Governor of Sabah", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-04-05": "Good Friday", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-30": "Pesta Kaamatan", - "1985-05-31": "Pesta Kaamatan (Second day)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-10-05": "Birthday of the Governor of Sabah", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-03-28": "Good Friday", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-30": "Pesta Kaamatan", - "1986-05-31": "Pesta Kaamatan (Second day)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-04": "Birthday of the Governor of Sabah", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-04-17": "Good Friday", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-05-30": "Pesta Kaamatan", - "1987-05-31": "Pesta Kaamatan (Second day)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-10-03": "Birthday of the Governor of Sabah", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-04-01": "Good Friday", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Pesta Kaamatan; Vesak Day (estimated)", - "1988-05-31": "Pesta Kaamatan (Second day)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-01": "Birthday of the Governor of Sabah", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-03-24": "Good Friday", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-05-30": "Pesta Kaamatan", - "1989-05-31": "Pesta Kaamatan (Second day)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-07": "Birthday of the Governor of Sabah", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-04-13": "Good Friday", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-05-30": "Pesta Kaamatan", - "1990-05-31": "Pesta Kaamatan (Second day)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-10-06": "Birthday of the Governor of Sabah", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-29": "Good Friday", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-05-30": "Pesta Kaamatan", - "1991-05-31": "Pesta Kaamatan (Second day)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-10-05": "Birthday of the Governor of Sabah", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-04-17": "Good Friday", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-05-30": "Pesta Kaamatan", - "1992-05-31": "Pesta Kaamatan (Second day)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-03": "Birthday of the Governor of Sabah", - "1992-10-24": "Deepavali", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-04-09": "Good Friday", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-30": "Pesta Kaamatan", - "1993-05-31": "Hari Raya Haji (estimated); Pesta Kaamatan (Second day)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-10-02": "Birthday of the Governor of Sabah", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-04-01": "Good Friday", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-05-30": "Pesta Kaamatan", - "1994-05-31": "Pesta Kaamatan (Second day)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-10-01": "Birthday of the Governor of Sabah", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-04-14": "Good Friday", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated); Pesta Kaamatan", - "1995-05-31": "Pesta Kaamatan (Second day)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-10-07": "Birthday of the Governor of Sabah", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-05": "Good Friday", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-05-30": "Pesta Kaamatan", - "1996-05-31": "Pesta Kaamatan (Second day)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-10-05": "Birthday of the Governor of Sabah", - "1996-11-09": "Deepavali", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-03-28": "Good Friday", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-05-30": "Pesta Kaamatan", - "1997-05-31": "Pesta Kaamatan (Second day)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-04": "Birthday of the Governor of Sabah", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-10": "Good Friday", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-05-30": "Pesta Kaamatan", - "1998-05-31": "Pesta Kaamatan (Second day)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-10-03": "Birthday of the Governor of Sabah", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-02": "Good Friday", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-05-30": "Pesta Kaamatan", - "1999-05-31": "Pesta Kaamatan (Second day)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-10-02": "Birthday of the Governor of Sabah", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-04-21": "Good Friday", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-05-30": "Pesta Kaamatan", - "2000-05-31": "Pesta Kaamatan (Second day)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-07": "Birthday of the Governor of Sabah", - "2000-10-25": "Deepavali", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-04-13": "Good Friday", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-05-30": "Pesta Kaamatan", - "2001-05-31": "Pesta Kaamatan (Second day)", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-10-06": "Birthday of the Governor of Sabah", - "2001-11-14": "Deepavali", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-03-29": "Good Friday", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-05-30": "Pesta Kaamatan", - "2002-05-31": "Pesta Kaamatan (Second day)", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-10-05": "Birthday of the Governor of Sabah", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-04-18": "Good Friday", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-05-30": "Pesta Kaamatan", - "2003-05-31": "Pesta Kaamatan (Second day)", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-04": "Birthday of the Governor of Sabah", - "2003-10-23": "Deepavali", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-04-09": "Good Friday", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-05-30": "Pesta Kaamatan", - "2004-05-31": "Pesta Kaamatan (Second day)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-10-02": "Birthday of the Governor of Sabah", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-03-25": "Good Friday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-05-30": "Pesta Kaamatan", - "2005-05-31": "Pesta Kaamatan (Second day)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-01": "Birthday of the Governor of Sabah", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-04-14": "Good Friday", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-05-30": "Pesta Kaamatan", - "2006-05-31": "Pesta Kaamatan (Second day)", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-07": "Birthday of the Governor of Sabah", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-04-06": "Good Friday", - "2007-05-01": "Labour Day; Vesak Day", - "2007-05-30": "Pesta Kaamatan", - "2007-05-31": "Pesta Kaamatan (Second day)", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-10-06": "Birthday of the Governor of Sabah", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-03-21": "Good Friday", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-05-30": "Pesta Kaamatan", - "2008-05-31": "Pesta Kaamatan (Second day)", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-04": "Birthday of the Governor of Sabah", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-04-10": "Good Friday", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-05-30": "Pesta Kaamatan", - "2009-05-31": "Pesta Kaamatan (Second day)", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-03": "Birthday of the Governor of Sabah", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-04-02": "Good Friday", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-05-30": "Pesta Kaamatan", - "2010-05-31": "Pesta Kaamatan (Second day)", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-10-02": "Birthday of the Governor of Sabah", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-04-22": "Good Friday", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-05-30": "Pesta Kaamatan", - "2011-05-31": "Pesta Kaamatan (Second day)", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-01": "Birthday of the Governor of Sabah", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-04-06": "Good Friday", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-05-30": "Pesta Kaamatan", - "2012-05-31": "Pesta Kaamatan (Second day)", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-06": "Birthday of the Governor of Sabah", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-03-29": "Good Friday", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-05-30": "Pesta Kaamatan", - "2013-05-31": "Pesta Kaamatan (Second day)", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-05": "Birthday of the Governor of Sabah", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-04-18": "Good Friday", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-05-30": "Pesta Kaamatan", - "2014-05-31": "Pesta Kaamatan (Second day)", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-04": "Birthday of the Governor of Sabah", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-04-03": "Good Friday", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-05-30": "Pesta Kaamatan", - "2015-05-31": "Pesta Kaamatan (Second day)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-03": "Birthday of the Governor of Sabah", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-03-25": "Good Friday", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-05-30": "Pesta Kaamatan", - "2016-05-31": "Pesta Kaamatan (Second day)", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-01": "Birthday of the Governor of Sabah", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-04-14": "Good Friday", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-05-30": "Pesta Kaamatan", - "2017-05-31": "Pesta Kaamatan (Second day)", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-07": "Birthday of the Governor of Sabah", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-03-30": "Good Friday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-05-30": "Pesta Kaamatan", - "2018-05-31": "Pesta Kaamatan (Second day)", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-10-06": "Birthday of the Governor of Sabah", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-04-19": "Good Friday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-30": "Pesta Kaamatan", - "2019-05-31": "Pesta Kaamatan (Second day)", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-05": "Birthday of the Governor of Sabah", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-04-10": "Good Friday", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-05-30": "Pesta Kaamatan", - "2020-05-31": "Pesta Kaamatan (Second day)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-03": "Birthday of the Governor of Sabah", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-02": "Good Friday", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-05-30": "Pesta Kaamatan", - "2021-05-31": "Pesta Kaamatan (Second day)", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-02": "Birthday of the Governor of Sabah", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-15": "Good Friday", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-05-30": "Pesta Kaamatan", - "2022-05-31": "Pesta Kaamatan (Second day)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-01": "Birthday of the Governor of Sabah", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-04-07": "Good Friday", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-05-30": "Pesta Kaamatan", - "2023-05-31": "Pesta Kaamatan (Second day)", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-10-07": "Birthday of the Governor of Sabah", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-29": "Good Friday", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-05-30": "Pesta Kaamatan", - "2024-05-31": "Pesta Kaamatan (Second day)", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-05": "Birthday of the Governor of Sabah", - "2024-10-31": "Deepavali", - "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-04-18": "Good Friday", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-05-30": "Pesta Kaamatan", - "2025-05-31": "Pesta Kaamatan (Second day)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-10-04": "Birthday of the Governor of Sabah", - "2025-11-18": "Deepavali", - "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-04-03": "Good Friday", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-05-30": "Pesta Kaamatan", - "2026-05-31": "Pesta Kaamatan (Second day)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-10-03": "Birthday of the Governor of Sabah", - "2026-11-07": "Deepavali", - "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-03-26": "Good Friday", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-05-30": "Pesta Kaamatan", - "2027-05-31": "Pesta Kaamatan (Second day)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-02": "Birthday of the Governor of Sabah", - "2027-10-27": "Deepavali", - "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-04-14": "Good Friday", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-05-30": "Pesta Kaamatan", - "2028-05-31": "Pesta Kaamatan (Second day)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-10-07": "Birthday of the Governor of Sabah", - "2028-11-14": "Deepavali", - "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-03-30": "Good Friday", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-05-30": "Pesta Kaamatan", - "2029-05-31": "Pesta Kaamatan (Second day)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-10-06": "Birthday of the Governor of Sabah", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-04-19": "Good Friday", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-05-30": "Pesta Kaamatan", - "2030-05-31": "Pesta Kaamatan (Second day)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-05": "Birthday of the Governor of Sabah", - "2030-10-25": "Deepavali", - "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-11": "Good Friday", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-05-30": "Pesta Kaamatan", - "2031-05-31": "Pesta Kaamatan (Second day)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-10-04": "Birthday of the Governor of Sabah", - "2031-11-13": "Deepavali", - "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas Day", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-03-26": "Good Friday", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-05-30": "Pesta Kaamatan", - "2032-05-31": "Pesta Kaamatan (Second day)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-10-02": "Birthday of the Governor of Sabah", - "2032-11-01": "Deepavali", - "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-04-15": "Good Friday", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-05-30": "Pesta Kaamatan", - "2033-05-31": "Pesta Kaamatan (Second day)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-01": "Birthday of the Governor of Sabah", - "2033-10-21": "Deepavali", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Christmas Eve; Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-04-07": "Good Friday", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); Pesta Kaamatan", - "2034-05-31": "Pesta Kaamatan (Second day)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-10-07": "Birthday of the Governor of Sabah", - "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-03-23": "Good Friday", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-05-30": "Pesta Kaamatan", - "2035-05-31": "Pesta Kaamatan (Second day)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-06": "Birthday of the Governor of Sabah", - "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-04-11": "Good Friday", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-05-30": "Pesta Kaamatan", - "2036-05-31": "Pesta Kaamatan (Second day)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-10-04": "Birthday of the Governor of Sabah", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-04-03": "Good Friday", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-05-30": "Pesta Kaamatan", - "2037-05-31": "Pesta Kaamatan (Second day)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-03": "Birthday of the Governor of Sabah", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-04-23": "Good Friday", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-05-30": "Pesta Kaamatan", - "2038-05-31": "Pesta Kaamatan (Second day)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-02": "Birthday of the Governor of Sabah", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-04-08": "Good Friday", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-05-30": "Pesta Kaamatan", - "2039-05-31": "Pesta Kaamatan (Second day)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-01": "Birthday of the Governor of Sabah", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-03-30": "Good Friday", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-05-30": "Pesta Kaamatan", - "2040-05-31": "Pesta Kaamatan (Second day)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-10-06": "Birthday of the Governor of Sabah", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-04-19": "Good Friday", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-05-30": "Pesta Kaamatan", - "2041-05-31": "Pesta Kaamatan (Second day)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-31": "National Day", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-05": "Birthday of the Governor of Sabah", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated); Christmas Eve", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-04-04": "Good Friday", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-05-30": "Pesta Kaamatan", - "2042-05-31": "Pesta Kaamatan (Second day)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-10-04": "Birthday of the Governor of Sabah", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-03-27": "Good Friday", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-05-30": "Pesta Kaamatan", - "2043-05-31": "Pesta Kaamatan (Second day)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-03": "Birthday of the Governor of Sabah", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-04-15": "Good Friday", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-05-30": "Pesta Kaamatan", - "2044-05-31": "Pesta Kaamatan (Second day)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-01": "Birthday of the Governor of Sabah", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-04-07": "Good Friday", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-05-30": "Pesta Kaamatan", - "2045-05-31": "Pesta Kaamatan (Second day)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-07": "Birthday of the Governor of Sabah", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-03-23": "Good Friday", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-05-30": "Pesta Kaamatan", - "2046-05-31": "Pesta Kaamatan (Second day)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-06": "Birthday of the Governor of Sabah", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-04-12": "Good Friday", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-05-30": "Pesta Kaamatan", - "2047-05-31": "Pesta Kaamatan (Second day)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-05": "Birthday of the Governor of Sabah", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-04-03": "Good Friday", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-05-30": "Pesta Kaamatan", - "2048-05-31": "Pesta Kaamatan (Second day)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-03": "Birthday of the Governor of Sabah", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-04-16": "Good Friday", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-05-30": "Pesta Kaamatan", - "2049-05-31": "Pesta Kaamatan (Second day)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-02": "Birthday of the Governor of Sabah", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-04-08": "Good Friday", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-05-30": "Pesta Kaamatan", - "2050-05-31": "Pesta Kaamatan (Second day)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-10-01": "Birthday of the Governor of Sabah", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_SGR.json b/snapshots/countries/MY_SGR.json deleted file mode 100644 index ac067dcd6..000000000 --- a/snapshots/countries/MY_SGR.json +++ /dev/null @@ -1,1969 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-11": "Birthday of The Sultan of Selangor", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-02-21": "Thaipusam", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali (in lieu)", - "1951-12-11": "Birthday of The Sultan of Selangor; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-11": "Birthday of The Sultan of Selangor", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-02-28": "Thaipusam", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-11": "Birthday of The Sultan of Selangor", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-02-18": "Thaipusam", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-11": "Birthday of The Sultan of Selangor", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-11-12": "Deepavali", - "1955-12-11": "Birthday of The Sultan of Selangor", - "1955-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam (in lieu)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-11": "Birthday of The Sultan of Selangor", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-11-20": "Deepavali", - "1957-12-11": "Birthday of The Sultan of Selangor", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali (in lieu)", - "1958-12-11": "Birthday of The Sultan of Selangor", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam (in lieu)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-11": "Birthday of The Sultan of Selangor", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-11-17": "Deepavali", - "1960-12-11": "Birthday of The Sultan of Selangor", - "1960-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-11": "Birthday of The Sultan of Selangor", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-11": "Birthday of The Sultan of Selangor", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-11-14": "Deepavali", - "1963-12-11": "Birthday of The Sultan of Selangor", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-11": "Birthday of The Sultan of Selangor", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-11": "Birthday of The Sultan of Selangor", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-11": "Birthday of The Sultan of Selangor", - "1966-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-11": "Birthday of The Sultan of Selangor", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-11": "Birthday of The Sultan of Selangor", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Birthday of The Sultan of Selangor; Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-11": "Birthday of The Sultan of Selangor", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-11": "Birthday of The Sultan of Selangor", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-11": "Birthday of The Sultan of Selangor", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-11": "Birthday of The Sultan of Selangor", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-11": "Birthday of The Sultan of Selangor", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-12-11": "Birthday of The Sultan of Selangor", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-11": "Birthday of The Sultan of Selangor", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-03-05": "Thaipusam", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated); Birthday of The Sultan of Selangor", - "1977-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-02-22": "Thaipusam", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-11": "Birthday of The Sultan of Selangor", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali (in lieu)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-11": "Birthday of The Sultan of Selangor", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-11": "Birthday of The Sultan of Selangor", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-19": "Thaipusam", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-11": "Birthday of The Sultan of Selangor", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam (in lieu)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-12-11": "Birthday of The Sultan of Selangor", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-02-28": "Thaipusam", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-11": "Birthday of The Sultan of Selangor", - "1983-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-17": "Thaipusam", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-11": "Birthday of The Sultan of Selangor", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-03-06": "Thaipusam", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali (in lieu)", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-11": "Birthday of The Sultan of Selangor", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam (in lieu)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-11": "Birthday of The Sultan of Selangor", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-11": "Birthday of The Sultan of Selangor", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-03-03": "Thaipusam", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-11-07": "Deepavali", - "1988-12-11": "Birthday of The Sultan of Selangor", - "1988-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-11": "Birthday of The Sultan of Selangor", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-11": "Birthday of The Sultan of Selangor", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-11": "Birthday of The Sultan of Selangor", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-12-11": "Birthday of The Sultan of Selangor", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-11": "Birthday of The Sultan of Selangor", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-11": "Birthday of The Sultan of Selangor", - "1994-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-11": "Birthday of The Sultan of Selangor", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-11-09": "Deepavali", - "1996-12-11": "Birthday of The Sultan of Selangor", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-29": "Deepavali", - "1997-12-11": "Birthday of The Sultan of Selangor", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-11": "Birthday of The Sultan of Selangor", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-11": "Birthday of The Sultan of Selangor", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-12-11": "Birthday of The Sultan of Selangor", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-09": "Thaipusam", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-11": "Birthday of The Sultan of Selangor", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-02-27": "Thaipusam", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-08-31": "National Day", - "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (in lieu)", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-11": "Birthday of The Sultan of Selangor", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam (in lieu)", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-11": "Birthday of The Sultan of Selangor", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-07": "Thaipusam", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-11": "Birthday of The Sultan of Selangor", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-02-23": "Thaipusam", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-11": "Birthday of The Sultan of Selangor", - "2005-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-02-13": "Thaipusam", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-11": "Birthday of The Sultan of Selangor", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-11": "Birthday of The Sultan of Selangor", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-02-22": "Thaipusam", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-09": "Hari Raya Haji", - "2008-12-11": "Birthday of The Sultan of Selangor", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam (in lieu)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-17": "Deepavali", - "2009-11-28": "Hari Raya Haji", - "2009-12-11": "Birthday of The Sultan of Selangor", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-03-01": "Thaipusam", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-11": "Birthday of The Sultan of Selangor", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-02-18": "Thaipusam", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-11": "Birthday of The Sultan of Selangor", - "2011-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day (in lieu)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-26": "Hari Raya Haji", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-11": "Birthday of The Sultan of Selangor", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-02-25": "Thaipusam", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-15": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-11": "Birthday of The Sultan of Selangor", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-14": "Thaipusam", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-11": "Birthday of The Sultan of Selangor", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-03-05": "Thaipusam", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-11": "Birthday of The Sultan of Selangor", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-02-23": "Thaipusam", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-12-11": "Birthday of The Sultan of Selangor", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-13": "Birthday of The Sultan of Selangor (in lieu)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-13": "Thaipusam", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-11": "Birthday of The Sultan of Selangor", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-01-31": "Thaipusam", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-11": "Birthday of The Sultan of Selangor", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-01-21": "Thaipusam", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (in lieu)", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-11": "Birthday of The Sultan of Selangor", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-02-08": "Thaipusam", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day (in lieu)", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-12-11": "Birthday of The Sultan of Selangor", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-01-28": "Thaipusam", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-11": "Birthday of The Sultan of Selangor", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-01-18": "Thaipusam", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-11": "Birthday of The Sultan of Selangor", - "2022-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam (in lieu)", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (in lieu)", - "2023-12-11": "Birthday of The Sultan of Selangor", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-11": "Birthday of The Sultan of Selangor", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-11": "Birthday of The Sultan of Selangor", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam (in lieu)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-12-11": "Birthday of The Sultan of Selangor", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-11": "Birthday of The Sultan of Selangor", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-11-14": "Deepavali", - "2028-12-11": "Birthday of The Sultan of Selangor", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (in lieu)", - "2029-12-11": "Birthday of The Sultan of Selangor", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-12-11": "Birthday of The Sultan of Selangor", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-11-13": "Deepavali", - "2031-12-11": "Birthday of The Sultan of Selangor", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali", - "2032-12-11": "Birthday of The Sultan of Selangor", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-11": "Birthday of The Sultan of Selangor", - "2033-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam (in lieu)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-11": "Birthday of The Sultan of Selangor", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-11": "Birthday of The Sultan of Selangor", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam (in lieu)", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (in lieu)", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-11": "Birthday of The Sultan of Selangor", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-11": "Birthday of The Sultan of Selangor", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-11": "Birthday of The Sultan of Selangor", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam (in lieu)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-11": "Birthday of The Sultan of Selangor", - "2039-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-11-03": "Deepavali", - "2040-12-11": "Birthday of The Sultan of Selangor", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-11": "Birthday of The Sultan of Selangor", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-11": "Birthday of The Sultan of Selangor", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-02-24": "Thaipusam", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-11": "Birthday of The Sultan of Selangor", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam (in lieu)", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-11": "Birthday of The Sultan of Selangor", - "2044-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-11": "Birthday of The Sultan of Selangor", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-02-21": "Thaipusam", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-11": "Birthday of The Sultan of Selangor", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-11": "Birthday of The Sultan of Selangor", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-28": "Thaipusam", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-11": "Birthday of The Sultan of Selangor", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-02-17": "Thaipusam", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-11": "Birthday of The Sultan of Selangor", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-11": "Birthday of The Sultan of Selangor", - "2050-12-12": "Birthday of The Sultan of Selangor (in lieu)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_SWK.json b/snapshots/countries/MY_SWK.json deleted file mode 100644 index 286523b32..000000000 --- a/snapshots/countries/MY_SWK.json +++ /dev/null @@ -1,1955 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-04-07": "Good Friday", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-01": "Gawai Dayak", - "1950-06-02": "Gawai Dayak (Second day)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", - "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-10-14": "Birthday of the Governor of Sarawak", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-03-23": "Good Friday", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) (in lieu)", - "1951-06-01": "Gawai Dayak", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-13": "Birthday of the Governor of Sarawak", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) (in lieu)", - "1952-04-11": "Good Friday", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-01": "Gawai Dayak", - "1952-06-02": "Gawai Dayak (Second day)", - "1952-06-03": "Gawai Dayak (in lieu)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-10-11": "Birthday of the Governor of Sarawak", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "1953-04-03": "Good Friday", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-06-01": "Gawai Dayak", - "1953-06-02": "Gawai Dayak (Second day)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-10-10": "Birthday of the Governor of Sarawak", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-04-16": "Good Friday", - "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day (estimated)", - "1954-06-01": "Gawai Dayak", - "1954-06-02": "Gawai Dayak (Second day); Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-09": "Birthday of the Governor of Sarawak", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-04-08": "Good Friday", - "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (in lieu)", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-01": "Gawai Dayak", - "1955-06-02": "Gawai Dayak (Second day)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-08": "Birthday of the Governor of Sarawak", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (in lieu)", - "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (in lieu)", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) (in lieu)", - "1956-03-30": "Good Friday", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-01": "Gawai Dayak", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-13": "Birthday of the Governor of Sarawak", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-04-19": "Good Friday", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "1957-06-02": "Gawai Dayak (Second day)", - "1957-06-03": "Gawai Dayak (Second day) (in lieu)", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1957-10-12": "Birthday of the Governor of Sarawak", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-04": "Good Friday", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-06-01": "Gawai Dayak", - "1958-06-02": "Gawai Dayak (Second day)", - "1958-06-03": "Gawai Dayak (in lieu)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-01": "National Day (in lieu)", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-10-11": "Birthday of the Governor of Sarawak", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) (in lieu)", - "1959-03-27": "Good Friday", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-01": "Gawai Dayak", - "1959-06-02": "Gawai Dayak (Second day)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-10": "Birthday of the Governor of Sarawak", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-04-15": "Good Friday", - "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (in lieu)", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-01": "Gawai Dayak", - "1960-06-02": "Gawai Dayak (Second day)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-10-08": "Birthday of the Governor of Sarawak", - "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (in lieu)", - "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (in lieu)", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1961-03-31": "Good Friday", - "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-01": "Gawai Dayak", - "1961-06-02": "Gawai Dayak (Second day)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-10-14": "Birthday of the Governor of Sarawak", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-04-20": "Good Friday", - "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-01": "Gawai Dayak", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1962-08-31": "National Day", - "1962-10-13": "Birthday of the Governor of Sarawak", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", - "1963-04-12": "Good Friday", - "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "1963-06-02": "Gawai Dayak (Second day)", - "1963-06-03": "Gawai Dayak (Second day) (in lieu)", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-10-12": "Birthday of the Governor of Sarawak", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-03-27": "Good Friday", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-01": "Gawai Dayak", - "1964-06-02": "Gawai Dayak (Second day)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-10-10": "Birthday of the Governor of Sarawak", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", - "1965-04-16": "Good Friday", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-15": "Vesak Day (estimated)", - "1965-06-01": "Gawai Dayak", - "1965-06-02": "Gawai Dayak (Second day)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-08-31": "National Day", - "1965-10-09": "Birthday of the Governor of Sarawak", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-08": "Good Friday", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (in lieu)", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-01": "Gawai Dayak", - "1966-06-02": "Gawai Dayak (Second day)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-10-08": "Birthday of the Governor of Sarawak", - "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (in lieu)", - "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (in lieu)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-03-24": "Good Friday", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-01": "Gawai Dayak", - "1967-06-02": "Gawai Dayak (Second day)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-14": "Birthday of the Governor of Sarawak", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-04-12": "Good Friday", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "1968-06-02": "Gawai Dayak (Second day)", - "1968-06-03": "Gawai Dayak (Second day) (in lieu)", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-08-31": "National Day", - "1968-10-12": "Birthday of the Governor of Sarawak", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-04-04": "Good Friday", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-01": "Gawai Dayak", - "1969-06-02": "Gawai Dayak (Second day)", - "1969-06-03": "Gawai Dayak (in lieu)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-08-31": "National Day", - "1969-09-01": "National Day (in lieu)", - "1969-10-11": "Birthday of the Governor of Sarawak", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-03-27": "Good Friday", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-01": "Gawai Dayak", - "1970-06-02": "Gawai Dayak (Second day)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-08-31": "National Day", - "1970-10-10": "Birthday of the Governor of Sarawak", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-04-09": "Good Friday", - "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) (in lieu)", - "1971-06-01": "Gawai Dayak", - "1971-06-02": "Gawai Dayak (Second day)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-08-31": "National Day", - "1971-10-09": "Birthday of the Governor of Sarawak", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-03-31": "Good Friday", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-06-01": "Gawai Dayak", - "1972-06-02": "Gawai Dayak (Second day)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-08-31": "National Day", - "1972-10-14": "Birthday of the Governor of Sarawak", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1973-04-20": "Good Friday", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-01": "Gawai Dayak", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1973-08-31": "National Day", - "1973-10-13": "Birthday of the Governor of Sarawak", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-04-12": "Good Friday", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "1974-06-02": "Gawai Dayak (Second day)", - "1974-06-03": "Gawai Dayak (Second day) (in lieu)", - "1974-08-31": "National Day", - "1974-10-12": "Birthday of the Governor of Sarawak", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day", - "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-03-28": "Good Friday", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) (in lieu)", - "1975-06-01": "Gawai Dayak", - "1975-06-02": "Gawai Dayak (Second day)", - "1975-06-03": "Gawai Dayak (in lieu)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-31": "National Day", - "1975-09-01": "National Day (in lieu)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-10-11": "Birthday of the Governor of Sarawak", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-25": "Christmas Day", - "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-04-16": "Good Friday", - "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-01": "Gawai Dayak", - "1976-06-02": "Gawai Dayak (Second day)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-10-09": "Birthday of the Governor of Sarawak", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-04-08": "Good Friday", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day (in lieu)", - "1977-06-01": "Gawai Dayak", - "1977-06-02": "Gawai Dayak (Second day)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-10-08": "Birthday of the Governor of Sarawak", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (in lieu)", - "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (in lieu)", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1978-03-24": "Good Friday", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) (in lieu)", - "1978-06-01": "Gawai Dayak", - "1978-06-02": "Gawai Dayak (Second day)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", - "1978-10-14": "Birthday of the Governor of Sarawak", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) (in lieu)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-04-13": "Good Friday", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-01": "Gawai Dayak", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-13": "Birthday of the Governor of Sarawak", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", - "1980-04-04": "Good Friday", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-01": "Gawai Dayak", - "1980-06-02": "Gawai Dayak (Second day)", - "1980-06-03": "Gawai Dayak (in lieu)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-09-01": "National Day (in lieu)", - "1980-10-11": "Birthday of the Governor of Sarawak", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-04-17": "Good Friday", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-01": "Gawai Dayak", - "1981-06-02": "Gawai Dayak (Second day)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-10": "Birthday of the Governor of Sarawak", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-04-09": "Good Friday", - "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day (estimated)", - "1982-06-01": "Gawai Dayak", - "1982-06-02": "Gawai Dayak (Second day)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-10-09": "Birthday of the Governor of Sarawak", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) (in lieu)", - "1983-04-01": "Good Friday", - "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (in lieu)", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-01": "Gawai Dayak", - "1983-06-02": "Gawai Dayak (Second day)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-10-08": "Birthday of the Governor of Sarawak", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (in lieu)", - "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (in lieu)", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-04-20": "Good Friday", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-01": "Gawai Dayak", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-13": "Birthday of the Governor of Sarawak", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-04-05": "Good Friday", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "1985-06-02": "Gawai Dayak (Second day)", - "1985-06-03": "Gawai Dayak (Second day) (in lieu)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-10-12": "Birthday of the Governor of Sarawak", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1985-12-25": "Christmas Day", - "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) (in lieu)", - "1986-03-28": "Good Friday", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-06-01": "Gawai Dayak", - "1986-06-02": "Gawai Dayak (Second day)", - "1986-06-03": "Gawai Dayak (in lieu)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-31": "National Day", - "1986-09-01": "National Day (in lieu)", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-11": "Birthday of the Governor of Sarawak", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-04-17": "Good Friday", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-01": "Gawai Dayak", - "1987-06-02": "Gawai Dayak (Second day)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-10-10": "Birthday of the Governor of Sarawak", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-12-25": "Christmas Day", - "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-04-01": "Good Friday", - "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (in lieu)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-01": "Gawai Dayak", - "1988-06-02": "Gawai Dayak (Second day)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-08": "Birthday of the Governor of Sarawak", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (in lieu)", - "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (in lieu)", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-03-24": "Good Friday", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-01": "Gawai Dayak", - "1989-06-02": "Gawai Dayak (Second day)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-14": "Birthday of the Governor of Sarawak", - "1989-12-25": "Christmas Day", - "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", - "1990-04-13": "Good Friday", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-01": "Gawai Dayak", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-10-13": "Birthday of the Governor of Sarawak", - "1990-12-25": "Christmas Day", - "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-03-29": "Good Friday", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "1991-06-02": "Gawai Dayak (Second day)", - "1991-06-03": "Gawai Dayak (Second day) (in lieu)", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-10-12": "Birthday of the Governor of Sarawak", - "1991-12-25": "Christmas Day", - "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1992-04-17": "Good Friday", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) (in lieu)", - "1992-06-01": "Gawai Dayak", - "1992-06-02": "Gawai Dayak (Second day)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-10": "Birthday of the Governor of Sarawak", - "1992-12-25": "Christmas Day", - "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-04-09": "Good Friday", - "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-01": "Gawai Dayak", - "1993-06-02": "Gawai Dayak (Second day)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1993-08-31": "National Day", - "1993-10-09": "Birthday of the Governor of Sarawak", - "1993-12-25": "Christmas Day", - "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", - "1994-04-01": "Good Friday", - "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (in lieu)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-01": "Gawai Dayak", - "1994-06-02": "Gawai Dayak (Second day)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-10-08": "Birthday of the Governor of Sarawak", - "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (in lieu)", - "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (in lieu)", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-04-14": "Good Friday", - "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) (in lieu)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-01": "Gawai Dayak", - "1995-06-02": "Gawai Dayak (Second day)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-10-14": "Birthday of the Governor of Sarawak", - "1995-12-25": "Christmas Day", - "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-05": "Good Friday", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "1996-06-02": "Gawai Dayak (Second day)", - "1996-06-03": "Gawai Dayak (Second day) (in lieu)", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-08-31": "National Day", - "1996-10-12": "Birthday of the Governor of Sarawak", - "1996-12-25": "Christmas Day", - "1997-01-01": "New Year's Day", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1997-03-28": "Good Friday", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-01": "Gawai Dayak", - "1997-06-02": "Gawai Dayak (Second day)", - "1997-06-03": "Gawai Dayak (in lieu)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-09-01": "National Day (in lieu)", - "1997-10-11": "Birthday of the Governor of Sarawak", - "1997-12-25": "Christmas Day", - "1998-01-01": "New Year's Day", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-10": "Good Friday", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (in lieu)", - "1998-06-01": "Gawai Dayak", - "1998-06-02": "Gawai Dayak (Second day)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-10-10": "Birthday of the Governor of Sarawak", - "1998-12-25": "Christmas Day", - "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-04-02": "Good Friday", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day (estimated)", - "1999-06-01": "Gawai Dayak", - "1999-06-02": "Gawai Dayak (Second day)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-08-31": "National Day", - "1999-10-09": "Birthday of the Governor of Sarawak", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day", - "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-04-21": "Good Friday", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-01": "Gawai Dayak", - "2000-06-02": "Gawai Dayak (Second day)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-14": "Birthday of the Governor of Sarawak", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-01": "New Year's Day", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-06": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-04-13": "Good Friday", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-01": "Gawai Dayak", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-10-13": "Birthday of the Governor of Sarawak", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-01-01": "New Year's Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-23": "Hari Raya Haji", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-03-29": "Good Friday", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "2002-06-02": "Gawai Dayak (Second day)", - "2002-06-03": "Gawai Dayak (Second day) (in lieu)", - "2002-08-31": "National Day", - "2002-10-12": "Birthday of the Governor of Sarawak", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-25": "Christmas Day", - "2003-01-01": "New Year's Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday (in lieu)", - "2003-02-12": "Hari Raya Haji", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-04-18": "Good Friday", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-01": "Gawai Dayak", - "2003-06-02": "Gawai Dayak (Second day)", - "2003-06-03": "Gawai Dayak (in lieu)", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-08-31": "National Day", - "2003-09-01": "National Day (in lieu)", - "2003-10-11": "Birthday of the Governor of Sarawak", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-01": "New Year's Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-02": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-04-09": "Good Friday", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2004-06-01": "Gawai Dayak", - "2004-06-02": "Gawai Dayak (Second day)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-08-31": "National Day", - "2004-10-09": "Birthday of the Governor of Sarawak", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa (in lieu)", - "2004-12-25": "Christmas Day", - "2005-01-01": "New Year's Day", - "2005-01-21": "Hari Raya Haji", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-03-25": "Good Friday", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (in lieu)", - "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (in lieu)", - "2005-06-01": "Gawai Dayak", - "2005-06-02": "Gawai Dayak (Second day)", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-08-31": "National Day", - "2005-10-08": "Birthday of the Governor of Sarawak", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (in lieu)", - "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (in lieu)", - "2006-01-10": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-04-14": "Good Friday", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-01": "Gawai Dayak", - "2006-06-02": "Gawai Dayak (Second day)", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-08-31": "National Day", - "2006-10-14": "Birthday of the Governor of Sarawak", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year (in lieu)", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-04-06": "Good Friday", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-01": "Gawai Dayak", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2007-08-31": "National Day", - "2007-10-13": "Birthday of the Governor of Sarawak; Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", - "2007-12-20": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-01": "New Year's Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-03-21": "Good Friday", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-01": "Gawai Dayak", - "2008-06-02": "Gawai Dayak (Second day)", - "2008-06-03": "Gawai Dayak (in lieu)", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-08-31": "National Day", - "2008-09-01": "National Day (in lieu)", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-11": "Birthday of the Governor of Sarawak", - "2008-12-09": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-01": "New Year's Day", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-04-10": "Good Friday", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-06-01": "Gawai Dayak", - "2009-06-02": "Gawai Dayak (Second day)", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-08-31": "National Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa (in lieu)", - "2009-10-10": "Birthday of the Governor of Sarawak", - "2009-11-28": "Hari Raya Haji", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-01-01": "New Year's Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year (in lieu)", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-04-02": "Good Friday", - "2010-05-01": "Labour Day", - "2010-05-28": "Vesak Day", - "2010-06-01": "Gawai Dayak", - "2010-06-02": "Gawai Dayak (Second day)", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-16": "Malaysia Day", - "2010-10-09": "Birthday of the Governor of Sarawak", - "2010-11-17": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2011-01-01": "New Year's Day", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-04-22": "Good Friday", - "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (in lieu)", - "2011-05-17": "Vesak Day", - "2011-06-01": "Gawai Dayak", - "2011-06-02": "Gawai Dayak (Second day)", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-08": "Birthday of the Governor of Sarawak", - "2011-11-07": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (in lieu)", - "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (in lieu)", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2012-04-06": "Good Friday", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-06-01": "Gawai Dayak", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa (in lieu)", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day (in lieu)", - "2012-10-13": "Birthday of the Governor of Sarawak", - "2012-10-26": "Hari Raya Haji", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-01": "New Year's Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year (in lieu)", - "2013-03-29": "Good Friday", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "2013-06-02": "Gawai Dayak (Second day)", - "2013-06-03": "Gawai Dayak (Second day) (in lieu)", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-16": "Malaysia Day", - "2013-10-12": "Birthday of the Governor of Sarawak", - "2013-10-15": "Hari Raya Haji", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-01": "New Year's Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-04-18": "Good Friday", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-01": "Gawai Dayak", - "2014-06-02": "Gawai Dayak (Second day)", - "2014-06-03": "Gawai Dayak (in lieu)", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-01": "National Day (in lieu)", - "2014-09-16": "Malaysia Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (in lieu)", - "2014-10-11": "Birthday of the Governor of Sarawak", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-01": "New Year's Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-04-03": "Good Friday", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day (in lieu)", - "2015-06-01": "Gawai Dayak", - "2015-06-02": "Gawai Dayak (Second day)", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-24": "Hari Raya Haji", - "2015-10-10": "Birthday of the Governor of Sarawak", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-01-01": "New Year's Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-03-25": "Good Friday", - "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (in lieu)", - "2016-05-21": "Vesak Day", - "2016-06-01": "Gawai Dayak", - "2016-06-02": "Gawai Dayak (Second day)", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-08": "Birthday of the Governor of Sarawak", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (in lieu)", - "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (in lieu)", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday (in lieu)", - "2017-04-14": "Good Friday", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-01": "Gawai Dayak", - "2017-06-02": "Gawai Dayak (Second day)", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa (in lieu)", - "2017-07-22": "Sarawak Day", - "2017-08-31": "National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-16": "Malaysia Day", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-14": "Birthday of the Governor of Sarawak", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-01-01": "New Year's Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-03-30": "Good Friday", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-01": "Gawai Dayak", - "2018-06-02": "Gawai Dayak (Second day)", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-07-22": "Sarawak Day", - "2018-07-23": "Sarawak Day (in lieu)", - "2018-08-22": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day (in lieu)", - "2018-10-13": "Birthday of the Governor of Sarawak", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-01-01": "New Year's Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-04-19": "Good Friday", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (in lieu)", - "2019-06-01": "Gawai Dayak", - "2019-06-02": "Gawai Dayak (Second day)", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-04": "Gawai Dayak (Second day) (in lieu)", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-22": "Sarawak Day", - "2019-07-30": "Installation of New King", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year)", - "2019-09-16": "Malaysia Day", - "2019-10-12": "Birthday of the Governor of Sarawak", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-12-25": "Christmas Day", - "2020-01-01": "New Year's Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday (in lieu)", - "2020-04-10": "Good Friday", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa (in lieu)", - "2020-06-01": "Gawai Dayak", - "2020-06-02": "Gawai Dayak (Second day)", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-22": "Sarawak Day", - "2020-07-31": "Hari Raya Haji", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-10": "Birthday of the Governor of Sarawak", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-12-25": "Christmas Day", - "2021-01-01": "New Year's Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-04-02": "Good Friday", - "2021-05-01": "Labour Day", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-01": "Gawai Dayak", - "2021-06-02": "Gawai Dayak (Second day)", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-20": "Hari Raya Haji", - "2021-07-22": "Sarawak Day", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-09": "Birthday of the Governor of Sarawak", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-12-25": "Christmas Day", - "2022-01-01": "New Year's Day", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-04-15": "Good Friday", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day (in lieu)", - "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (in lieu)", - "2022-06-01": "Gawai Dayak", - "2022-06-02": "Gawai Dayak (Second day)", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (in lieu)", - "2022-07-22": "Sarawak Day", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-08": "Birthday of the Governor of Sarawak", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (in lieu)", - "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (in lieu)", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year (in lieu)", - "2023-04-07": "Good Friday", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-01": "Gawai Dayak", - "2023-06-02": "Gawai Dayak (Second day)", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-07-22": "Sarawak Day", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-10-14": "Birthday of the Governor of Sarawak", - "2023-12-25": "Christmas Day", - "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year Holiday (in lieu)", - "2024-03-29": "Good Friday", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-01": "Gawai Dayak", - "2024-06-02": "Gawai Dayak (Second day)", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-04": "Gawai Dayak (Second day) (in lieu)", - "2024-06-17": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-07-22": "Sarawak Day", - "2024-08-31": "National Day", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-12": "Birthday of the Governor of Sarawak", - "2024-12-25": "Christmas Day", - "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", - "2025-04-18": "Good Friday", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (in lieu)", - "2025-06-01": "Gawai Dayak", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2025-06-03": "Gawai Dayak (in lieu)", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-07-22": "Sarawak Day", - "2025-08-31": "National Day", - "2025-09-01": "National Day (in lieu)", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-10-11": "Birthday of the Governor of Sarawak", - "2025-12-25": "Christmas Day", - "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-04-03": "Good Friday", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "2026-06-02": "Gawai Dayak (Second day)", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-07-22": "Sarawak Day", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-10-10": "Birthday of the Governor of Sarawak", - "2026-12-25": "Christmas Day", - "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-03-26": "Good Friday", - "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-01": "Gawai Dayak", - "2027-06-02": "Gawai Dayak (Second day)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-07-22": "Sarawak Day", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-09": "Birthday of the Governor of Sarawak", - "2027-12-25": "Christmas Day", - "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2028-04-14": "Good Friday", - "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-01": "Gawai Dayak", - "2028-06-02": "Gawai Dayak (Second day)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-07-22": "Sarawak Day", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-10-14": "Birthday of the Governor of Sarawak", - "2028-12-25": "Christmas Day", - "2029-01-01": "New Year's Day", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-03-30": "Good Friday", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (in lieu)", - "2029-06-01": "Gawai Dayak", - "2029-06-02": "Gawai Dayak (Second day)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-22": "Sarawak Day", - "2029-07-23": "Sarawak Day (in lieu)", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day (in lieu)", - "2029-10-13": "Birthday of the Governor of Sarawak", - "2029-12-25": "Christmas Day", - "2030-01-01": "New Year's Day", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) (in lieu)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-04-19": "Good Friday", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-01": "Gawai Dayak", - "2030-06-02": "Gawai Dayak (Second day)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-06-04": "Gawai Dayak (Second day) (in lieu)", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-07-22": "Sarawak Day", - "2030-08-31": "National Day", - "2030-09-16": "Malaysia Day", - "2030-10-12": "Birthday of the Governor of Sarawak", - "2030-12-25": "Christmas Day", - "2031-01-01": "New Year's Day", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-11": "Good Friday", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-01": "Gawai Dayak", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2031-06-03": "Gawai Dayak (in lieu)", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-07-22": "Sarawak Day", - "2031-08-31": "National Day", - "2031-09-01": "National Day (in lieu)", - "2031-09-16": "Malaysia Day", - "2031-10-11": "Birthday of the Governor of Sarawak", - "2031-12-25": "Christmas Day", - "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-03-26": "Good Friday", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (in lieu)", - "2032-06-01": "Gawai Dayak", - "2032-06-02": "Gawai Dayak (Second day)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2032-07-22": "Sarawak Day", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-10-09": "Birthday of the Governor of Sarawak", - "2032-12-25": "Christmas Day", - "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-04-15": "Good Friday", - "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (in lieu)", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-01": "Gawai Dayak", - "2033-06-02": "Gawai Dayak (Second day)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-07-22": "Sarawak Day", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-08": "Birthday of the Governor of Sarawak", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (in lieu)", - "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) (in lieu)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-04-07": "Good Friday", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-01": "Gawai Dayak", - "2034-06-02": "Gawai Dayak (Second day)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-07-22": "Sarawak Day", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-10-14": "Birthday of the Governor of Sarawak", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-03-23": "Good Friday", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-01": "Gawai Dayak", - "2035-06-02": "Gawai Dayak (Second day)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-07-22": "Sarawak Day", - "2035-07-23": "Sarawak Day (in lieu)", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day (in lieu)", - "2035-10-13": "Birthday of the Governor of Sarawak", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-04-11": "Good Friday", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-06-01": "Gawai Dayak", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2036-06-03": "Gawai Dayak (in lieu)", - "2036-07-22": "Sarawak Day", - "2036-08-31": "National Day", - "2036-09-01": "National Day (in lieu)", - "2036-09-16": "Malaysia Day", - "2036-10-11": "Birthday of the Governor of Sarawak", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) (in lieu)", - "2037-04-03": "Good Friday", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "2037-06-02": "Gawai Dayak (Second day)", - "2037-07-22": "Sarawak Day", - "2037-08-31": "National Day", - "2037-09-16": "Malaysia Day", - "2037-10-10": "Birthday of the Governor of Sarawak", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", - "2037-12-25": "Christmas Day", - "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-04-23": "Good Friday", - "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-01": "Gawai Dayak", - "2038-06-02": "Gawai Dayak (Second day)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-07-22": "Sarawak Day", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-09": "Birthday of the Governor of Sarawak", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-12-25": "Christmas Day", - "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-04-08": "Good Friday", - "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (in lieu)", - "2039-05-07": "Vesak Day (estimated)", - "2039-06-01": "Gawai Dayak", - "2039-06-02": "Gawai Dayak (Second day)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-07-22": "Sarawak Day", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-08": "Birthday of the Governor of Sarawak", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (in lieu)", - "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (in lieu)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) (in lieu)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2040-03-30": "Good Friday", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-01": "Gawai Dayak", - "2040-06-02": "Gawai Dayak (Second day)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-07-22": "Sarawak Day", - "2040-07-23": "Sarawak Day (in lieu)", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day (in lieu)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", - "2040-10-13": "Birthday of the Governor of Sarawak", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-25": "Christmas Day", - "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-04-19": "Good Friday", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-01": "Gawai Dayak", - "2041-06-02": "Gawai Dayak (Second day)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-06-04": "Gawai Dayak (Second day) (in lieu)", - "2041-07-22": "Sarawak Day", - "2041-08-31": "National Day", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-12": "Birthday of the Governor of Sarawak", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-04-04": "Good Friday", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) (in lieu)", - "2042-06-01": "Gawai Dayak", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2042-06-03": "Gawai Dayak (in lieu)", - "2042-07-22": "Sarawak Day", - "2042-08-31": "National Day", - "2042-09-01": "National Day (in lieu)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-10-11": "Birthday of the Governor of Sarawak", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2043-03-27": "Good Friday", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "2043-06-02": "Gawai Dayak (Second day)", - "2043-07-22": "Sarawak Day", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-16": "Malaysia Day", - "2043-10-10": "Birthday of the Governor of Sarawak", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-04-15": "Good Friday", - "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (in lieu)", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-01": "Gawai Dayak", - "2044-06-02": "Gawai Dayak (Second day)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-07-22": "Sarawak Day", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-08": "Birthday of the Governor of Sarawak", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (in lieu)", - "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (in lieu)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-04-07": "Good Friday", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-01": "Gawai Dayak", - "2045-06-02": "Gawai Dayak (Second day)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-22": "Sarawak Day", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-10-14": "Birthday of the Governor of Sarawak", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-03-23": "Good Friday", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (in lieu)", - "2046-06-01": "Gawai Dayak", - "2046-06-02": "Gawai Dayak (Second day)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-22": "Sarawak Day", - "2046-07-23": "Sarawak Day (in lieu)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day (in lieu)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-13": "Birthday of the Governor of Sarawak", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", - "2047-04-12": "Good Friday", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-06-01": "Gawai Dayak", - "2047-06-02": "Gawai Dayak (Second day)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-06-04": "Gawai Dayak (Second day) (in lieu)", - "2047-07-22": "Sarawak Day", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-12": "Birthday of the Governor of Sarawak", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-04-03": "Good Friday", - "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", - "2048-06-02": "Gawai Dayak (Second day)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", - "2048-07-22": "Sarawak Day", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-10-10": "Birthday of the Governor of Sarawak", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-04-16": "Good Friday", - "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (in lieu)", - "2049-06-01": "Gawai Dayak", - "2049-06-02": "Gawai Dayak (Second day)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-22": "Sarawak Day", - "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-09": "Birthday of the Governor of Sarawak", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) (in lieu)", - "2050-04-08": "Good Friday", - "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (in lieu)", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-01": "Gawai Dayak", - "2050-06-02": "Gawai Dayak (Second day)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-07-22": "Sarawak Day", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-10-08": "Birthday of the Governor of Sarawak", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (in lieu)" -} diff --git a/snapshots/countries/MY_TRG.json b/snapshots/countries/MY_TRG.json deleted file mode 100644 index 1e6c0ba0e..000000000 --- a/snapshots/countries/MY_TRG.json +++ /dev/null @@ -1,2080 +0,0 @@ -{ - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-02-17": "Chinese New Year (estimated)", - "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year Holiday (estimated) (in lieu)", - "1950-05-01": "Labour Day; Vesak Day (estimated)", - "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1950-07-03": "Nuzul Al-Quran Day (estimated)", - "1950-07-16": "Hari Raya Puasa (estimated)", - "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-08-31": "National Day", - "1950-09-22": "Arafat Day (estimated)", - "1950-09-23": "Hari Raya Haji (estimated)", - "1950-09-24": "Hari Raya Haji (estimated)", - "1950-09-25": "Hari Raya Haji (estimated) (in lieu)", - "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", - "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year (estimated)", - "1951-02-07": "Chinese New Year Holiday (estimated)", - "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day (estimated)", - "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1951-06-22": "Nuzul Al-Quran Day (estimated)", - "1951-07-06": "Hari Raya Puasa (estimated)", - "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1951-08-31": "National Day", - "1951-09-11": "Arafat Day (estimated)", - "1951-09-12": "Hari Raya Haji (estimated)", - "1951-09-13": "Hari Raya Haji (estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", - "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year (estimated)", - "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day (estimated)", - "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1952-06-10": "Nuzul Al-Quran Day (estimated)", - "1952-06-23": "Hari Raya Puasa (estimated)", - "1952-06-24": "Second day of Hari Raya Puasa (estimated)", - "1952-08-30": "Arafat Day (estimated)", - "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated)", - "1952-09-02": "Arafat Day (estimated) (in lieu)", - "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", - "1952-11-15": "Deepavali", - "1952-11-16": "Deepavali (in lieu)", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year (estimated)", - "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year (estimated) (in lieu)", - "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day (estimated)", - "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-05-31": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1953-06-13": "Hari Raya Puasa (estimated)", - "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Hari Raya Puasa (estimated) (in lieu)", - "1953-08-19": "Arafat Day (estimated)", - "1953-08-20": "Hari Raya Haji (estimated)", - "1953-08-21": "Hari Raya Haji (estimated)", - "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", - "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1953-12-25": "Christmas Day", - "1954-02-03": "Chinese New Year (estimated)", - "1954-02-04": "Chinese New Year Holiday (estimated)", - "1954-05-01": "Labour Day", - "1954-05-02": "Labour Day (in lieu)", - "1954-05-17": "Vesak Day (estimated)", - "1954-05-20": "Nuzul Al-Quran Day (estimated)", - "1954-06-02": "Hari Raya Puasa (estimated)", - "1954-06-03": "Second day of Hari Raya Puasa (estimated)", - "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1954-08-08": "Arafat Day (estimated)", - "1954-08-09": "Hari Raya Haji (estimated)", - "1954-08-10": "Hari Raya Haji (estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", - "1954-08-31": "National Day", - "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1954-12-25": "Christmas Day", - "1954-12-26": "Christmas Day (in lieu)", - "1955-01-24": "Chinese New Year (estimated)", - "1955-01-25": "Chinese New Year Holiday (estimated)", - "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day (estimated)", - "1955-05-10": "Nuzul Al-Quran Day (estimated)", - "1955-05-23": "Hari Raya Puasa (estimated)", - "1955-05-24": "Second day of Hari Raya Puasa (estimated)", - "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1955-07-29": "Arafat Day (estimated)", - "1955-07-30": "Hari Raya Haji (estimated)", - "1955-07-31": "Hari Raya Haji (estimated)", - "1955-08-01": "Hari Raya Haji (estimated) (in lieu)", - "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", - "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1955-11-12": "Deepavali", - "1955-11-13": "Deepavali (in lieu)", - "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year (estimated)", - "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-04-29": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa (estimated)", - "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1956-05-24": "Vesak Day (estimated)", - "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1956-07-18": "Arafat Day (estimated)", - "1956-07-19": "Hari Raya Haji (estimated)", - "1956-07-20": "Hari Raya Haji (estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", - "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1956-11-01": "Deepavali", - "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year (estimated)", - "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-04-17": "Nuzul Al-Quran Day (estimated)", - "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa (estimated)", - "1957-05-14": "Vesak Day (estimated)", - "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1957-07-07": "Arafat Day (estimated)", - "1957-07-08": "Hari Raya Haji (estimated)", - "1957-07-09": "Hari Raya Haji (estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", - "1957-08-31": "National Day", - "1957-09-01": "National Day (in lieu)", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-11-20": "Deepavali", - "1957-12-25": "Christmas Day", - "1958-02-18": "Chinese New Year (estimated)", - "1958-02-19": "Chinese New Year Holiday (estimated)", - "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-20": "Hari Raya Puasa (estimated)", - "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day (estimated)", - "1958-05-04": "Vesak Day (estimated) (in lieu)", - "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1958-06-26": "Arafat Day (estimated)", - "1958-06-27": "Hari Raya Haji (estimated)", - "1958-06-28": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", - "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", - "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-11-09": "Deepavali", - "1958-12-25": "Christmas Day", - "1959-02-08": "Chinese New Year (estimated)", - "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-03-27": "Nuzul Al-Quran Day (estimated)", - "1959-04-10": "Hari Raya Puasa (estimated)", - "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day (estimated)", - "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1959-06-16": "Arafat Day (estimated)", - "1959-06-17": "Hari Raya Haji (estimated)", - "1959-06-18": "Hari Raya Haji (estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1959-10-30": "Deepavali", - "1959-12-25": "Christmas Day", - "1960-01-28": "Chinese New Year (estimated)", - "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-03-15": "Nuzul Al-Quran Day (estimated)", - "1960-03-28": "Hari Raya Puasa (estimated)", - "1960-03-29": "Second day of Hari Raya Puasa (estimated)", - "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day (estimated)", - "1960-06-03": "Arafat Day (estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", - "1960-06-05": "Hari Raya Haji (estimated)", - "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu); Hari Raya Haji (estimated) (in lieu)", - "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", - "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1960-11-17": "Deepavali", - "1960-12-25": "Christmas Day", - "1961-02-15": "Chinese New Year (estimated)", - "1961-02-16": "Chinese New Year Holiday (estimated)", - "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-05": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1961-03-18": "Hari Raya Puasa (estimated)", - "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Hari Raya Puasa (estimated) (in lieu)", - "1961-05-01": "Labour Day", - "1961-05-24": "Arafat Day (estimated)", - "1961-05-25": "Hari Raya Haji (estimated)", - "1961-05-26": "Hari Raya Haji (estimated)", - "1961-05-29": "Vesak Day (estimated)", - "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1961-08-31": "National Day", - "1961-11-06": "Deepavali", - "1961-12-25": "Christmas Day", - "1962-02-05": "Chinese New Year (estimated)", - "1962-02-06": "Chinese New Year Holiday (estimated)", - "1962-02-21": "Nuzul Al-Quran Day (estimated)", - "1962-03-07": "Hari Raya Puasa (estimated)", - "1962-03-08": "Second day of Hari Raya Puasa (estimated)", - "1962-05-01": "Labour Day", - "1962-05-13": "Arafat Day (estimated)", - "1962-05-14": "Hari Raya Haji (estimated)", - "1962-05-15": "Hari Raya Haji (estimated)", - "1962-05-18": "Vesak Day (estimated)", - "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-31": "National Day", - "1962-10-26": "Deepavali", - "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year (estimated)", - "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year Holiday (estimated) (in lieu)", - "1963-02-11": "Nuzul Al-Quran Day (estimated)", - "1963-02-24": "Hari Raya Puasa (estimated)", - "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-05-01": "Labour Day", - "1963-05-02": "Arafat Day (estimated)", - "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-04": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", - "1963-05-08": "Vesak Day (estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", - "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-31": "National Day", - "1963-09-01": "National Day (in lieu)", - "1963-11-14": "Deepavali", - "1963-12-25": "Christmas Day", - "1964-01-31": "Nuzul Al-Quran Day (estimated)", - "1964-02-13": "Chinese New Year (estimated)", - "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1964-04-21": "Arafat Day (estimated)", - "1964-04-22": "Hari Raya Haji (estimated)", - "1964-04-23": "Hari Raya Haji (estimated)", - "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", - "1964-05-26": "Vesak Day (estimated)", - "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1964-08-31": "National Day", - "1964-11-02": "Deepavali", - "1964-12-25": "Christmas Day", - "1965-01-19": "Nuzul Al-Quran Day (estimated)", - "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1965-04-10": "Arafat Day (estimated)", - "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated)", - "1965-04-13": "Arafat Day (estimated) (in lieu)", - "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-02": "Labour Day (in lieu)", - "1965-05-15": "Vesak Day (estimated)", - "1965-05-16": "Vesak Day (estimated) (in lieu)", - "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1965-08-31": "National Day", - "1965-10-22": "Deepavali", - "1965-12-25": "Christmas Day", - "1965-12-26": "Christmas Day (in lieu)", - "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-09": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1966-01-21": "Chinese New Year (estimated)", - "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "1966-03-31": "Arafat Day (estimated)", - "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-02": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", - "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", - "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day (estimated)", - "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-08-31": "National Day", - "1966-11-10": "Deepavali", - "1966-12-25": "Christmas Day", - "1966-12-29": "Nuzul Al-Quran Day (estimated)", - "1967-01-12": "Hari Raya Puasa (estimated)", - "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-02-09": "Chinese New Year (estimated)", - "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-03-20": "Arafat Day (estimated)", - "1967-03-21": "Hari Raya Haji (estimated)", - "1967-03-22": "Hari Raya Haji (estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day (estimated)", - "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1967-08-31": "National Day", - "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day (estimated)", - "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa (estimated)", - "1968-01-02": "Second day of Hari Raya Puasa (estimated)", - "1968-01-30": "Chinese New Year (estimated)", - "1968-01-31": "Chinese New Year Holiday (estimated)", - "1968-03-08": "Arafat Day (estimated)", - "1968-03-09": "Hari Raya Haji (estimated)", - "1968-03-10": "Hari Raya Haji (estimated)", - "1968-03-11": "Hari Raya Haji (estimated) (in lieu)", - "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", - "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day (estimated)", - "1968-05-12": "Vesak Day (estimated) (in lieu)", - "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1968-08-31": "National Day", - "1968-09-01": "National Day (in lieu)", - "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-08": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1968-12-21": "Hari Raya Puasa (estimated)", - "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Hari Raya Puasa (estimated) (in lieu)", - "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year (estimated)", - "1969-02-18": "Chinese New Year Holiday (estimated)", - "1969-02-26": "Arafat Day (estimated)", - "1969-02-27": "Hari Raya Haji (estimated)", - "1969-02-28": "Hari Raya Haji (estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", - "1969-05-01": "Labour Day; Vesak Day (estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1969-08-31": "National Day", - "1969-11-08": "Deepavali", - "1969-11-09": "Deepavali (in lieu)", - "1969-11-26": "Nuzul Al-Quran Day (estimated)", - "1969-12-10": "Hari Raya Puasa (estimated)", - "1969-12-11": "Second day of Hari Raya Puasa (estimated)", - "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year (estimated)", - "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year Holiday (estimated) (in lieu)", - "1970-02-15": "Arafat Day (estimated)", - "1970-02-16": "Hari Raya Haji (estimated)", - "1970-02-17": "Hari Raya Haji (estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", - "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1970-05-19": "Vesak Day (estimated)", - "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1970-08-31": "National Day", - "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day (estimated)", - "1970-11-30": "Hari Raya Puasa (estimated)", - "1970-12-01": "Second day of Hari Raya Puasa (estimated)", - "1970-12-25": "Christmas Day", - "1971-01-27": "Chinese New Year (estimated)", - "1971-01-28": "Chinese New Year Holiday (estimated)", - "1971-02-05": "Arafat Day (estimated)", - "1971-02-06": "Hari Raya Haji (estimated)", - "1971-02-07": "Hari Raya Haji (estimated)", - "1971-02-08": "Hari Raya Haji (estimated) (in lieu)", - "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", - "1971-05-01": "Labour Day", - "1971-05-02": "Labour Day (in lieu)", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1971-05-09": "Vesak Day (estimated)", - "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day (estimated)", - "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa (estimated)", - "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1971-12-25": "Christmas Day", - "1971-12-26": "Christmas Day (in lieu)", - "1972-01-25": "Arafat Day (estimated)", - "1972-01-26": "Hari Raya Haji (estimated)", - "1972-01-27": "Hari Raya Haji (estimated)", - "1972-02-15": "Chinese New Year (estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day (estimated)", - "1972-05-28": "Vesak Day (estimated) (in lieu)", - "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day (estimated)", - "1972-11-04": "Deepavali", - "1972-11-05": "Deepavali (in lieu)", - "1972-11-07": "Hari Raya Puasa (estimated)", - "1972-11-08": "Second day of Hari Raya Puasa (estimated)", - "1972-12-25": "Christmas Day", - "1973-01-13": "Arafat Day (estimated)", - "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated)", - "1973-01-16": "Arafat Day (estimated) (in lieu)", - "1973-02-03": "Chinese New Year (estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year (estimated) (in lieu)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day (estimated)", - "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-14": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa (estimated)", - "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Hari Raya Puasa (estimated) (in lieu)", - "1973-12-25": "Christmas Day", - "1974-01-02": "Arafat Day (estimated)", - "1974-01-03": "Hari Raya Haji (estimated)", - "1974-01-04": "Hari Raya Haji (estimated)", - "1974-01-23": "Chinese New Year (estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day (estimated)", - "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1974-08-31": "National Day", - "1974-09-01": "National Day (in lieu)", - "1974-10-03": "Nuzul Al-Quran Day (estimated)", - "1974-10-16": "Hari Raya Puasa (estimated)", - "1974-10-17": "Second day of Hari Raya Puasa (estimated)", - "1974-11-12": "Deepavali", - "1974-12-23": "Arafat Day (estimated)", - "1974-12-24": "Hari Raya Haji (estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", - "1975-02-11": "Chinese New Year (estimated)", - "1975-02-12": "Chinese New Year Holiday (estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day (estimated)", - "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1975-08-31": "National Day", - "1975-09-22": "Nuzul Al-Quran Day (estimated)", - "1975-10-06": "Hari Raya Puasa (estimated)", - "1975-10-07": "Second day of Hari Raya Puasa (estimated)", - "1975-11-01": "Deepavali", - "1975-11-02": "Deepavali (in lieu)", - "1975-12-12": "Arafat Day (estimated)", - "1975-12-13": "Hari Raya Haji (estimated)", - "1975-12-14": "Hari Raya Haji (estimated)", - "1975-12-15": "Hari Raya Haji (estimated) (in lieu)", - "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", - "1976-01-31": "Chinese New Year (estimated)", - "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year (estimated) (in lieu)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-05-01": "Labour Day", - "1976-05-02": "Labour Day (in lieu)", - "1976-05-13": "Vesak Day (estimated)", - "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-12": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1976-09-24": "Hari Raya Puasa (estimated)", - "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "1976-11-19": "Deepavali", - "1976-11-30": "Arafat Day (estimated)", - "1976-12-01": "Hari Raya Haji (estimated)", - "1976-12-02": "Hari Raya Haji (estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", - "1976-12-25": "Christmas Day", - "1976-12-26": "Christmas Day (in lieu)", - "1977-02-18": "Chinese New Year (estimated)", - "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year Holiday (estimated) (in lieu)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day (estimated)", - "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", - "1977-09-14": "Hari Raya Puasa (estimated)", - "1977-09-15": "Second day of Hari Raya Puasa (estimated)", - "1977-11-09": "Deepavali", - "1977-11-20": "Arafat Day (estimated)", - "1977-11-21": "Hari Raya Haji (estimated)", - "1977-11-22": "Hari Raya Haji (estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", - "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year (estimated)", - "1978-02-08": "Chinese New Year Holiday (estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day (estimated)", - "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1978-08-21": "Nuzul Al-Quran Day (estimated)", - "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa (estimated)", - "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-10-30": "Deepavali", - "1978-11-09": "Arafat Day (estimated)", - "1978-11-10": "Hari Raya Haji (estimated)", - "1978-11-11": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", - "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", - "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year (estimated)", - "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day (estimated)", - "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1979-08-10": "Nuzul Al-Quran Day (estimated)", - "1979-08-23": "Hari Raya Puasa (estimated)", - "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-31": "National Day", - "1979-10-30": "Arafat Day (estimated)", - "1979-10-31": "Hari Raya Haji (estimated)", - "1979-11-01": "Hari Raya Haji (estimated)", - "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", - "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1980-02-16": "Chinese New Year (estimated)", - "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year (estimated) (in lieu)", - "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day (estimated)", - "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1980-07-29": "Nuzul Al-Quran Day (estimated)", - "1980-08-12": "Hari Raya Puasa (estimated)", - "1980-08-13": "Second day of Hari Raya Puasa (estimated)", - "1980-08-31": "National Day", - "1980-10-18": "Arafat Day (estimated)", - "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated)", - "1980-10-21": "Arafat Day (estimated) (in lieu)", - "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", - "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-02-05": "Chinese New Year (estimated)", - "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day (estimated)", - "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-07-19": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1981-08-01": "Hari Raya Puasa (estimated)", - "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Hari Raya Puasa (estimated) (in lieu)", - "1981-08-31": "National Day", - "1981-10-07": "Arafat Day (estimated)", - "1981-10-08": "Hari Raya Haji (estimated)", - "1981-10-09": "Hari Raya Haji (estimated)", - "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", - "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1982-01-25": "Chinese New Year (estimated)", - "1982-01-26": "Chinese New Year Holiday (estimated)", - "1982-05-01": "Labour Day", - "1982-05-02": "Labour Day (in lieu)", - "1982-05-08": "Vesak Day (estimated)", - "1982-05-09": "Vesak Day (estimated) (in lieu)", - "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1982-07-08": "Nuzul Al-Quran Day (estimated)", - "1982-07-21": "Hari Raya Puasa (estimated)", - "1982-07-22": "Second day of Hari Raya Puasa (estimated)", - "1982-08-31": "National Day", - "1982-09-26": "Arafat Day (estimated)", - "1982-09-27": "Hari Raya Haji (estimated)", - "1982-09-28": "Hari Raya Haji (estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", - "1982-11-13": "Deepavali", - "1982-11-14": "Deepavali (in lieu)", - "1982-12-25": "Christmas Day", - "1982-12-26": "Christmas Day (in lieu)", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-02-13": "Chinese New Year (estimated)", - "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-05-01": "Labour Day", - "1983-05-27": "Vesak Day (estimated)", - "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1983-06-28": "Nuzul Al-Quran Day (estimated)", - "1983-07-11": "Hari Raya Puasa (estimated)", - "1983-07-12": "Second day of Hari Raya Puasa (estimated)", - "1983-08-31": "National Day", - "1983-09-16": "Arafat Day (estimated)", - "1983-09-17": "Hari Raya Haji (estimated)", - "1983-09-18": "Hari Raya Haji (estimated)", - "1983-09-19": "Hari Raya Haji (estimated) (in lieu)", - "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", - "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year (estimated)", - "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day (estimated)", - "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-17": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1984-06-30": "Hari Raya Puasa (estimated)", - "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Hari Raya Puasa (estimated) (in lieu)", - "1984-08-31": "National Day", - "1984-09-04": "Arafat Day (estimated)", - "1984-09-05": "Hari Raya Haji (estimated)", - "1984-09-06": "Hari Raya Haji (estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", - "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year (estimated)", - "1985-02-21": "Chinese New Year Holiday (estimated)", - "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day (estimated)", - "1985-05-05": "Vesak Day (estimated) (in lieu)", - "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1985-06-05": "Nuzul Al-Quran Day (estimated)", - "1985-06-19": "Hari Raya Puasa (estimated)", - "1985-06-20": "Second day of Hari Raya Puasa (estimated)", - "1985-08-25": "Arafat Day (estimated)", - "1985-08-26": "Hari Raya Haji (estimated)", - "1985-08-27": "Hari Raya Haji (estimated)", - "1985-08-31": "National Day", - "1985-09-01": "National Day (in lieu)", - "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", - "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year (estimated)", - "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa (estimated)", - "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1986-08-14": "Arafat Day (estimated)", - "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-16": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", - "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", - "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year (estimated)", - "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day (estimated)", - "1987-05-15": "Nuzul Al-Quran Day (estimated)", - "1987-05-28": "Hari Raya Puasa (estimated)", - "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1987-08-03": "Arafat Day (estimated)", - "1987-08-04": "Hari Raya Haji (estimated)", - "1987-08-05": "Hari Raya Haji (estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", - "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1987-11-19": "Deepavali", - "1987-12-25": "Christmas Day", - "1988-02-17": "Chinese New Year (estimated)", - "1988-02-18": "Chinese New Year Holiday (estimated)", - "1988-05-01": "Labour Day", - "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-16": "Hari Raya Puasa (estimated)", - "1988-05-17": "Second day of Hari Raya Puasa (estimated)", - "1988-05-30": "Vesak Day (estimated)", - "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1988-07-22": "Arafat Day (estimated)", - "1988-07-23": "Hari Raya Haji (estimated)", - "1988-07-24": "Hari Raya Haji (estimated)", - "1988-07-25": "Hari Raya Haji (estimated) (in lieu)", - "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", - "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1988-11-07": "Deepavali", - "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year (estimated)", - "1989-02-07": "Chinese New Year Holiday (estimated)", - "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa (estimated)", - "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Hari Raya Puasa (estimated) (in lieu)", - "1989-05-19": "Vesak Day (estimated)", - "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1989-07-12": "Arafat Day (estimated)", - "1989-07-13": "Hari Raya Haji (estimated)", - "1989-07-14": "Hari Raya Haji (estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", - "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1989-10-27": "Deepavali", - "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year (estimated)", - "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year (estimated) (in lieu)", - "1990-04-12": "Nuzul Al-Quran Day (estimated)", - "1990-04-26": "Hari Raya Puasa (estimated)", - "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day (estimated)", - "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1990-07-01": "Arafat Day (estimated)", - "1990-07-02": "Hari Raya Haji (estimated)", - "1990-07-03": "Hari Raya Haji (estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", - "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1990-11-15": "Deepavali", - "1990-12-25": "Christmas Day", - "1991-02-15": "Chinese New Year (estimated)", - "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year Holiday (estimated) (in lieu)", - "1991-04-02": "Nuzul Al-Quran Day (estimated)", - "1991-04-15": "Hari Raya Puasa (estimated)", - "1991-04-16": "Second day of Hari Raya Puasa (estimated)", - "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day (estimated)", - "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1991-06-21": "Arafat Day (estimated)", - "1991-06-22": "Hari Raya Haji (estimated)", - "1991-06-23": "Hari Raya Haji (estimated)", - "1991-06-24": "Hari Raya Haji (estimated) (in lieu)", - "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", - "1991-08-31": "National Day", - "1991-09-01": "National Day (in lieu)", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-11-04": "Deepavali", - "1991-12-25": "Christmas Day", - "1992-02-04": "Chinese New Year (estimated)", - "1992-02-05": "Chinese New Year Holiday (estimated)", - "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-03-22": "Nuzul Al-Quran Day (estimated) (in lieu)", - "1992-04-04": "Hari Raya Puasa (estimated)", - "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Hari Raya Puasa (estimated) (in lieu)", - "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day (estimated)", - "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1992-06-10": "Arafat Day (estimated)", - "1992-06-11": "Hari Raya Haji (estimated)", - "1992-06-12": "Hari Raya Haji (estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", - "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1992-10-24": "Deepavali", - "1992-10-25": "Deepavali (in lieu)", - "1992-12-25": "Christmas Day", - "1993-01-23": "Chinese New Year (estimated)", - "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year (estimated) (in lieu)", - "1993-03-10": "Nuzul Al-Quran Day (estimated)", - "1993-03-24": "Hari Raya Puasa (estimated)", - "1993-03-25": "Second day of Hari Raya Puasa (estimated)", - "1993-05-01": "Labour Day", - "1993-05-02": "Labour Day (in lieu)", - "1993-05-06": "Vesak Day (estimated)", - "1993-05-30": "Arafat Day (estimated)", - "1993-05-31": "Hari Raya Haji (estimated)", - "1993-06-01": "Hari Raya Haji (estimated)", - "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-31": "National Day", - "1993-11-12": "Deepavali", - "1993-12-25": "Christmas Day", - "1993-12-26": "Christmas Day (in lieu)", - "1994-02-10": "Chinese New Year (estimated)", - "1994-02-11": "Chinese New Year Holiday (estimated)", - "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-03-13": "Hari Raya Puasa (estimated)", - "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-05-01": "Labour Day", - "1994-05-19": "Arafat Day (estimated)", - "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-21": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", - "1994-05-25": "Vesak Day (estimated)", - "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-31": "National Day", - "1994-11-01": "Deepavali", - "1994-12-25": "Christmas Day", - "1995-01-31": "Chinese New Year (estimated)", - "1995-02-01": "Chinese New Year Holiday (estimated)", - "1995-02-16": "Nuzul Al-Quran Day (estimated)", - "1995-03-02": "Hari Raya Puasa (estimated)", - "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-05-01": "Labour Day", - "1995-05-08": "Arafat Day (estimated)", - "1995-05-09": "Hari Raya Haji (estimated)", - "1995-05-10": "Hari Raya Haji (estimated)", - "1995-05-14": "Vesak Day (estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", - "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1995-08-31": "National Day", - "1995-11-20": "Deepavali", - "1995-12-25": "Christmas Day", - "1996-02-06": "Nuzul Al-Quran Day (estimated)", - "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", - "1996-04-26": "Arafat Day (estimated)", - "1996-04-27": "Hari Raya Haji (estimated)", - "1996-04-28": "Hari Raya Haji (estimated)", - "1996-04-29": "Hari Raya Haji (estimated) (in lieu)", - "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day (estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", - "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1996-08-31": "National Day", - "1996-09-01": "National Day (in lieu)", - "1996-11-09": "Deepavali", - "1996-11-10": "Deepavali (in lieu)", - "1996-12-25": "Christmas Day", - "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-02-07": "Chinese New Year (estimated)", - "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", - "1997-04-16": "Arafat Day (estimated)", - "1997-04-17": "Hari Raya Haji (estimated)", - "1997-04-18": "Hari Raya Haji (estimated)", - "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", - "1997-05-21": "Vesak Day (estimated)", - "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1997-08-31": "National Day", - "1997-10-29": "Deepavali", - "1997-12-25": "Christmas Day", - "1998-01-15": "Nuzul Al-Quran Day (estimated)", - "1998-01-28": "Chinese New Year (estimated)", - "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-04-06": "Arafat Day (estimated)", - "1998-04-07": "Hari Raya Haji (estimated)", - "1998-04-08": "Hari Raya Haji (estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", - "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day (estimated)", - "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1998-08-31": "National Day", - "1998-11-17": "Deepavali", - "1998-12-25": "Christmas Day", - "1999-01-04": "Nuzul Al-Quran Day (estimated)", - "1999-01-18": "Hari Raya Puasa (estimated)", - "1999-01-19": "Second day of Hari Raya Puasa (estimated)", - "1999-02-16": "Chinese New Year (estimated)", - "1999-02-17": "Chinese New Year Holiday (estimated)", - "1999-03-26": "Arafat Day (estimated)", - "1999-03-27": "Hari Raya Haji (estimated)", - "1999-03-28": "Hari Raya Haji (estimated)", - "1999-03-29": "Hari Raya Haji (estimated) (in lieu)", - "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", - "1999-05-01": "Labour Day", - "1999-05-02": "Labour Day (in lieu)", - "1999-05-29": "Vesak Day (estimated)", - "1999-05-30": "Vesak Day (estimated) (in lieu)", - "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "1999-08-31": "National Day", - "1999-11-06": "Deepavali", - "1999-11-07": "Deepavali (in lieu)", - "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "1999-12-26": "Christmas Day (in lieu); Nuzul Al-Quran Day (estimated) (in lieu)", - "2000-01-08": "Hari Raya Puasa (estimated)", - "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Hari Raya Puasa (estimated) (in lieu)", - "2000-02-05": "Chinese New Year (estimated)", - "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year (estimated) (in lieu)", - "2000-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2000-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", - "2000-03-15": "Arafat Day (estimated)", - "2000-03-16": "Hari Raya Haji (estimated)", - "2000-03-17": "Hari Raya Haji (estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", - "2000-04-26": "Birthday of the Sultan of Terengganu", - "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day (estimated)", - "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2000-08-31": "National Day", - "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day (estimated)", - "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa (estimated)", - "2000-12-28": "Second day of Hari Raya Puasa (estimated)", - "2001-01-24": "Chinese New Year", - "2001-01-25": "Chinese New Year Holiday", - "2001-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2001-03-05": "Arafat Day", - "2001-03-06": "Hari Raya Haji", - "2001-03-07": "Hari Raya Haji", - "2001-03-26": "Awal Muharram (Hijri New Year)", - "2001-04-26": "Birthday of the Sultan of Terengganu", - "2001-05-01": "Labour Day", - "2001-05-07": "Vesak Day", - "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2001-08-31": "National Day", - "2001-11-14": "Deepavali", - "2001-12-03": "Nuzul Al-Quran Day", - "2001-12-17": "Hari Raya Puasa", - "2001-12-18": "Second day of Hari Raya Puasa", - "2001-12-25": "Christmas Day", - "2002-02-12": "Chinese New Year", - "2002-02-13": "Chinese New Year Holiday", - "2002-02-22": "Arafat Day", - "2002-02-23": "Hari Raya Haji", - "2002-02-24": "Hari Raya Haji", - "2002-02-25": "Hari Raya Haji (in lieu)", - "2002-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2002-03-15": "Awal Muharram (Hijri New Year)", - "2002-04-26": "Birthday of the Sultan of Terengganu", - "2002-05-01": "Labour Day", - "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-27": "Vesak Day", - "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2002-08-31": "National Day", - "2002-09-01": "National Day (in lieu)", - "2002-11-03": "Deepavali", - "2002-11-22": "Nuzul Al-Quran Day", - "2002-12-06": "Hari Raya Puasa", - "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Second day of Hari Raya Puasa (in lieu)", - "2002-12-25": "Christmas Day", - "2003-02-01": "Chinese New Year", - "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year (in lieu)", - "2003-02-11": "Arafat Day", - "2003-02-12": "Hari Raya Haji", - "2003-02-13": "Hari Raya Haji", - "2003-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2003-03-05": "Awal Muharram (Hijri New Year)", - "2003-04-26": "Birthday of the Sultan of Terengganu", - "2003-04-27": "Birthday of the Sultan of Terengganu (in lieu)", - "2003-05-01": "Labour Day", - "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2003-05-15": "Vesak Day", - "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2003-08-31": "National Day", - "2003-10-23": "Deepavali", - "2003-11-12": "Nuzul Al-Quran Day", - "2003-11-26": "Hari Raya Puasa", - "2003-11-27": "Second day of Hari Raya Puasa", - "2003-12-25": "Christmas Day", - "2004-01-22": "Chinese New Year", - "2004-01-23": "Chinese New Year Holiday", - "2004-02-01": "Arafat Day", - "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Hari Raya Haji", - "2004-02-22": "Awal Muharram (Hijri New Year)", - "2004-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2004-04-26": "Birthday of the Sultan of Terengganu", - "2004-05-01": "Labour Day", - "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2004-05-03": "Vesak Day", - "2004-05-04": "Labour Day (in lieu)", - "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2004-08-31": "National Day", - "2004-11-01": "Nuzul Al-Quran Day", - "2004-11-11": "Deepavali", - "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Second day of Hari Raya Puasa", - "2004-12-25": "Christmas Day", - "2004-12-26": "Christmas Day (in lieu)", - "2005-01-20": "Arafat Day", - "2005-01-21": "Hari Raya Haji", - "2005-01-22": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji (in lieu)", - "2005-02-09": "Chinese New Year", - "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", - "2005-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2005-04-26": "Birthday of the Sultan of Terengganu", - "2005-05-01": "Labour Day", - "2005-05-22": "Vesak Day", - "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2005-08-31": "National Day", - "2005-10-21": "Nuzul Al-Quran Day", - "2005-11-01": "Deepavali", - "2005-11-03": "Hari Raya Puasa", - "2005-11-04": "Second day of Hari Raya Puasa", - "2005-12-25": "Christmas Day", - "2006-01-09": "Arafat Day", - "2006-01-10": "Hari Raya Haji", - "2006-01-11": "Hari Raya Haji", - "2006-01-29": "Chinese New Year", - "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year)", - "2006-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2006-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", - "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2006-04-26": "Birthday of the Sultan of Terengganu", - "2006-05-01": "Labour Day", - "2006-05-12": "Vesak Day", - "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2006-08-31": "National Day", - "2006-10-10": "Nuzul Al-Quran Day", - "2006-10-21": "Deepavali", - "2006-10-22": "Deepavali (in lieu)", - "2006-10-24": "Hari Raya Puasa", - "2006-10-25": "Second day of Hari Raya Puasa", - "2006-12-25": "Christmas Day", - "2006-12-30": "Arafat Day", - "2006-12-31": "Hari Raya Haji", - "2007-01-01": "Hari Raya Haji", - "2007-01-02": "Arafat Day (in lieu)", - "2007-01-20": "Awal Muharram (Hijri New Year)", - "2007-02-18": "Chinese New Year", - "2007-02-19": "Chinese New Year Holiday", - "2007-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-04-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2007-04-26": "Birthday of the Sultan of Terengganu", - "2007-05-01": "Labour Day; Vesak Day", - "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2007-08-31": "National Day", - "2007-09-29": "Nuzul Al-Quran Day", - "2007-09-30": "Nuzul Al-Quran Day (in lieu)", - "2007-10-13": "Hari Raya Puasa", - "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Hari Raya Puasa (in lieu)", - "2007-11-08": "Deepavali", - "2007-12-19": "Arafat Day", - "2007-12-20": "Hari Raya Haji", - "2007-12-21": "Hari Raya Haji", - "2007-12-25": "Christmas Day", - "2008-01-10": "Awal Muharram (Hijri New Year)", - "2008-02-07": "Chinese New Year", - "2008-02-08": "Chinese New Year Holiday", - "2008-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2008-04-26": "Birthday of the Sultan of Terengganu", - "2008-04-27": "Birthday of the Sultan of Terengganu (in lieu)", - "2008-05-01": "Labour Day", - "2008-05-19": "Vesak Day", - "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2008-08-31": "National Day", - "2008-09-18": "Nuzul Al-Quran Day", - "2008-10-01": "Hari Raya Puasa", - "2008-10-02": "Second day of Hari Raya Puasa", - "2008-10-27": "Deepavali", - "2008-12-08": "Arafat Day", - "2008-12-09": "Hari Raya Haji", - "2008-12-10": "Hari Raya Haji", - "2008-12-25": "Christmas Day", - "2008-12-29": "Awal Muharram (Hijri New Year)", - "2009-01-26": "Chinese New Year", - "2009-01-27": "Chinese New Year Holiday", - "2009-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2009-04-26": "Birthday of the Sultan of Terengganu", - "2009-05-01": "Labour Day", - "2009-05-09": "Vesak Day", - "2009-05-10": "Vesak Day (in lieu)", - "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2009-08-31": "National Day", - "2009-09-07": "Nuzul Al-Quran Day", - "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Second day of Hari Raya Puasa", - "2009-10-17": "Deepavali", - "2009-10-18": "Deepavali (in lieu)", - "2009-11-27": "Arafat Day", - "2009-11-28": "Hari Raya Haji", - "2009-11-29": "Hari Raya Haji", - "2009-11-30": "Hari Raya Haji (in lieu)", - "2009-12-18": "Awal Muharram (Hijri New Year)", - "2009-12-25": "Christmas Day", - "2010-02-14": "Chinese New Year", - "2010-02-15": "Chinese New Year Holiday", - "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2010-04-26": "Birthday of the Sultan of Terengganu", - "2010-05-01": "Labour Day", - "2010-05-02": "Labour Day (in lieu)", - "2010-05-28": "Vesak Day", - "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2010-08-27": "Nuzul Al-Quran Day", - "2010-08-31": "National Day", - "2010-09-10": "Hari Raya Puasa", - "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Second day of Hari Raya Puasa (in lieu)", - "2010-09-16": "Malaysia Day", - "2010-11-05": "Deepavali", - "2010-11-16": "Arafat Day", - "2010-11-17": "Hari Raya Haji", - "2010-11-18": "Hari Raya Haji", - "2010-12-08": "Awal Muharram (Hijri New Year)", - "2010-12-25": "Christmas Day", - "2010-12-26": "Christmas Day (in lieu)", - "2011-02-03": "Chinese New Year", - "2011-02-04": "Chinese New Year Holiday", - "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2011-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2011-04-26": "Birthday of the Sultan of Terengganu", - "2011-05-01": "Labour Day", - "2011-05-17": "Vesak Day", - "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2011-08-17": "Nuzul Al-Quran Day", - "2011-08-31": "Hari Raya Puasa; National Day", - "2011-09-01": "Second day of Hari Raya Puasa", - "2011-09-16": "Malaysia Day", - "2011-10-26": "Deepavali", - "2011-11-06": "Arafat Day", - "2011-11-07": "Hari Raya Haji", - "2011-11-08": "Hari Raya Haji", - "2011-11-27": "Awal Muharram (Hijri New Year)", - "2011-12-25": "Christmas Day", - "2012-01-23": "Chinese New Year", - "2012-01-24": "Chinese New Year Holiday", - "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2012-04-26": "Birthday of the Sultan of Terengganu", - "2012-05-01": "Labour Day", - "2012-05-05": "Vesak Day", - "2012-05-06": "Vesak Day (in lieu)", - "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-31": "National Day", - "2012-09-16": "Malaysia Day", - "2012-10-25": "Arafat Day", - "2012-10-26": "Hari Raya Haji", - "2012-10-27": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji (in lieu)", - "2012-11-13": "Deepavali", - "2012-11-15": "Awal Muharram (Hijri New Year)", - "2012-12-25": "Christmas Day", - "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2013-02-10": "Chinese New Year", - "2013-02-11": "Chinese New Year Holiday", - "2013-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2013-04-26": "Birthday of the Sultan of Terengganu", - "2013-05-01": "Labour Day", - "2013-05-24": "Vesak Day", - "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2013-07-25": "Nuzul Al-Quran Day", - "2013-08-08": "Hari Raya Puasa", - "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-31": "National Day", - "2013-09-01": "National Day (in lieu)", - "2013-09-16": "Malaysia Day", - "2013-10-14": "Arafat Day", - "2013-10-15": "Hari Raya Haji", - "2013-10-16": "Hari Raya Haji", - "2013-11-02": "Deepavali", - "2013-11-03": "Deepavali (in lieu)", - "2013-11-05": "Awal Muharram (Hijri New Year)", - "2013-12-25": "Christmas Day", - "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2014-01-31": "Chinese New Year", - "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year Holiday (in lieu)", - "2014-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2014-04-26": "Birthday of the Sultan of Terengganu", - "2014-04-27": "Birthday of the Sultan of Terengganu (in lieu)", - "2014-05-01": "Labour Day", - "2014-05-13": "Vesak Day", - "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2014-07-15": "Nuzul Al-Quran Day", - "2014-07-28": "Hari Raya Puasa", - "2014-07-29": "Second day of Hari Raya Puasa", - "2014-08-31": "National Day", - "2014-09-16": "Malaysia Day", - "2014-10-04": "Arafat Day", - "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji", - "2014-10-07": "Arafat Day (in lieu)", - "2014-10-22": "Deepavali", - "2014-10-25": "Awal Muharram (Hijri New Year)", - "2014-12-25": "Christmas Day", - "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-01-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2015-02-19": "Chinese New Year", - "2015-02-20": "Chinese New Year Holiday", - "2015-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2015-04-26": "Birthday of the Sultan of Terengganu", - "2015-05-01": "Labour Day", - "2015-05-03": "Vesak Day", - "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-05": "Nuzul Al-Quran Day (in lieu)", - "2015-07-17": "Hari Raya Puasa", - "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Second day of Hari Raya Puasa (in lieu)", - "2015-08-31": "National Day", - "2015-09-16": "Malaysia Day", - "2015-09-23": "Arafat Day", - "2015-09-24": "Hari Raya Haji", - "2015-09-25": "Hari Raya Haji", - "2015-10-14": "Awal Muharram (Hijri New Year)", - "2015-11-10": "Deepavali", - "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-12-25": "Christmas Day", - "2016-02-08": "Chinese New Year", - "2016-02-09": "Chinese New Year Holiday", - "2016-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2016-04-26": "Birthday of the Sultan of Terengganu", - "2016-05-01": "Labour Day", - "2016-05-21": "Vesak Day", - "2016-05-22": "Vesak Day (in lieu)", - "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2016-06-22": "Nuzul Al-Quran Day", - "2016-07-06": "Hari Raya Puasa", - "2016-07-07": "Second day of Hari Raya Puasa", - "2016-08-31": "National Day", - "2016-09-11": "Arafat Day", - "2016-09-12": "Hari Raya Haji", - "2016-09-13": "Hari Raya Haji", - "2016-09-16": "Malaysia Day", - "2016-10-02": "Awal Muharram (Hijri New Year)", - "2016-10-29": "Deepavali", - "2016-10-30": "Deepavali (in lieu)", - "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-25": "Christmas Day", - "2017-01-28": "Chinese New Year", - "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year (in lieu)", - "2017-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2017-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", - "2017-04-26": "Birthday of the Sultan of Terengganu", - "2017-05-01": "Labour Day", - "2017-05-10": "Vesak Day", - "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", - "2017-06-12": "Nuzul Al-Quran Day", - "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Second day of Hari Raya Puasa", - "2017-08-31": "Arafat Day; National Day", - "2017-09-01": "Hari Raya Haji", - "2017-09-02": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji (in lieu)", - "2017-09-16": "Malaysia Day", - "2017-09-17": "Malaysia Day (in lieu)", - "2017-09-22": "Awal Muharram (Hijri New Year)", - "2017-10-18": "Deepavali", - "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-25": "Christmas Day", - "2018-02-16": "Chinese New Year", - "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year Holiday (in lieu)", - "2018-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2018-04-26": "Birthday of the Sultan of Terengganu", - "2018-05-01": "Labour Day", - "2018-05-09": "Malaysia General Election Holiday", - "2018-05-29": "Vesak Day", - "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-03": "Nuzul Al-Quran Day (in lieu)", - "2018-06-15": "Hari Raya Puasa", - "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Second day of Hari Raya Puasa (in lieu)", - "2018-08-21": "Arafat Day", - "2018-08-22": "Hari Raya Haji", - "2018-08-23": "Hari Raya Haji", - "2018-08-31": "National Day", - "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-11": "Awal Muharram (Hijri New Year)", - "2018-09-16": "Malaysia Day", - "2018-11-06": "Deepavali", - "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2018-12-25": "Christmas Day", - "2019-02-05": "Chinese New Year", - "2019-02-06": "Chinese New Year Holiday", - "2019-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2019-04-26": "Birthday of the Sultan of Terengganu", - "2019-05-01": "Labour Day", - "2019-05-19": "Vesak Day", - "2019-05-22": "Nuzul Al-Quran Day", - "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-05": "Hari Raya Puasa", - "2019-06-06": "Second day of Hari Raya Puasa", - "2019-07-30": "Installation of New King", - "2019-08-10": "Arafat Day", - "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji", - "2019-08-13": "Arafat Day (in lieu)", - "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year); National Day (in lieu)", - "2019-09-16": "Malaysia Day", - "2019-10-27": "Deepavali", - "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-11-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", - "2019-12-25": "Christmas Day", - "2020-01-25": "Chinese New Year", - "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year (in lieu)", - "2020-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2020-03-22": "Isra and Mi'raj", - "2020-04-26": "Birthday of the Sultan of Terengganu", - "2020-05-01": "Labour Day", - "2020-05-07": "Vesak Day", - "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Second day of Hari Raya Puasa", - "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", - "2020-07-30": "Arafat Day", - "2020-07-31": "Hari Raya Haji", - "2020-08-01": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji (in lieu)", - "2020-08-20": "Awal Muharram (Hijri New Year)", - "2020-08-31": "National Day", - "2020-09-16": "Malaysia Day", - "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2020-11-14": "Deepavali", - "2020-11-15": "Deepavali (in lieu)", - "2020-12-25": "Christmas Day", - "2021-02-12": "Chinese New Year", - "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year Holiday (in lieu)", - "2021-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2021-03-11": "Isra and Mi'raj", - "2021-04-26": "Birthday of the Sultan of Terengganu", - "2021-04-29": "Nuzul Al-Quran Day", - "2021-05-01": "Labour Day", - "2021-05-02": "Labour Day (in lieu)", - "2021-05-13": "Hari Raya Puasa", - "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-26": "Vesak Day", - "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2021-07-19": "Arafat Day", - "2021-07-20": "Hari Raya Haji", - "2021-07-21": "Hari Raya Haji", - "2021-08-10": "Awal Muharram (Hijri New Year)", - "2021-08-31": "National Day", - "2021-09-16": "Malaysia Day", - "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2021-11-04": "Deepavali", - "2021-12-25": "Christmas Day", - "2021-12-26": "Christmas Day (in lieu)", - "2022-02-01": "Chinese New Year", - "2022-02-02": "Chinese New Year Holiday", - "2022-03-01": "Isra and Mi'raj", - "2022-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2022-04-19": "Nuzul Al-Quran Day", - "2022-04-26": "Birthday of the Sultan of Terengganu", - "2022-05-01": "Labour Day", - "2022-05-02": "Hari Raya Puasa", - "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day Holiday", - "2022-05-15": "Vesak Day", - "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2022-07-09": "Arafat Day", - "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji", - "2022-07-12": "Arafat Day (in lieu)", - "2022-07-30": "Awal Muharram (Hijri New Year)", - "2022-08-31": "National Day", - "2022-09-16": "Malaysia Day", - "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2022-10-24": "Deepavali", - "2022-12-25": "Christmas Day", - "2023-01-22": "Chinese New Year", - "2023-01-23": "Chinese New Year Holiday", - "2023-02-18": "Isra and Mi'raj", - "2023-02-19": "Isra and Mi'raj (in lieu)", - "2023-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2023-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", - "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-09": "Nuzul Al-Quran Day (in lieu)", - "2023-04-22": "Hari Raya Puasa", - "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Hari Raya Puasa (in lieu)", - "2023-04-26": "Birthday of the Sultan of Terengganu", - "2023-05-01": "Labour Day", - "2023-05-04": "Vesak Day", - "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2023-06-28": "Arafat Day", - "2023-06-29": "Hari Raya Haji", - "2023-06-30": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", - "2023-08-31": "National Day", - "2023-09-16": "Malaysia Day", - "2023-09-17": "Malaysia Day (in lieu)", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2023-11-12": "Deepavali", - "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj", - "2024-02-10": "Chinese New Year", - "2024-02-11": "Chinese New Year Holiday", - "2024-02-12": "Chinese New Year (in lieu)", - "2024-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2024-03-28": "Nuzul Al-Quran Day", - "2024-04-10": "Hari Raya Puasa", - "2024-04-11": "Second day of Hari Raya Puasa", - "2024-04-26": "Birthday of the Sultan of Terengganu", - "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day", - "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Arafat Day", - "2024-06-17": "Hari Raya Haji", - "2024-06-18": "Hari Raya Haji", - "2024-07-07": "Awal Muharram (Hijri New Year)", - "2024-08-31": "National Day", - "2024-09-01": "National Day (in lieu)", - "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2024-10-31": "Deepavali", - "2024-12-25": "Christmas Day", - "2025-01-27": "Isra and Mi'raj (estimated)", - "2025-01-29": "Chinese New Year (estimated)", - "2025-01-30": "Chinese New Year Holiday (estimated)", - "2025-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2025-03-17": "Nuzul Al-Quran Day (estimated)", - "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-26": "Birthday of the Sultan of Terengganu", - "2025-04-27": "Birthday of the Sultan of Terengganu (in lieu)", - "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day (estimated)", - "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-05": "Arafat Day (estimated)", - "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-07": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", - "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", - "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2025-09-16": "Malaysia Day", - "2025-11-18": "Deepavali", - "2025-12-25": "Christmas Day", - "2026-01-16": "Isra and Mi'raj (estimated)", - "2026-02-17": "Chinese New Year (estimated)", - "2026-02-18": "Chinese New Year Holiday (estimated)", - "2026-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2026-03-06": "Nuzul Al-Quran Day (estimated)", - "2026-03-20": "Hari Raya Puasa (estimated)", - "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2026-04-26": "Birthday of the Sultan of Terengganu", - "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-26": "Arafat Day (estimated)", - "2026-05-27": "Hari Raya Haji (estimated)", - "2026-05-28": "Hari Raya Haji (estimated)", - "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2026-08-31": "National Day", - "2026-09-16": "Malaysia Day", - "2026-11-07": "Deepavali", - "2026-11-08": "Deepavali (in lieu)", - "2026-12-25": "Christmas Day", - "2027-01-05": "Isra and Mi'raj (estimated)", - "2027-02-06": "Chinese New Year (estimated)", - "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year (estimated) (in lieu)", - "2027-02-24": "Nuzul Al-Quran Day (estimated)", - "2027-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2027-03-09": "Hari Raya Puasa (estimated)", - "2027-03-10": "Second day of Hari Raya Puasa (estimated)", - "2027-04-26": "Birthday of the Sultan of Terengganu", - "2027-05-01": "Labour Day", - "2027-05-02": "Labour Day (in lieu)", - "2027-05-15": "Arafat Day (estimated)", - "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated)", - "2027-05-18": "Arafat Day (estimated) (in lieu)", - "2027-05-20": "Vesak Day (estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", - "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2027-08-31": "National Day", - "2027-09-16": "Malaysia Day", - "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", - "2027-12-26": "Christmas Day (in lieu); Isra and Mi'raj (estimated) (in lieu)", - "2028-01-26": "Chinese New Year (estimated)", - "2028-01-27": "Chinese New Year Holiday (estimated)", - "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-26": "Hari Raya Puasa (estimated)", - "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Hari Raya Puasa (estimated) (in lieu)", - "2028-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2028-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", - "2028-04-26": "Birthday of the Sultan of Terengganu", - "2028-05-01": "Labour Day", - "2028-05-04": "Arafat Day (estimated)", - "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-06": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", - "2028-05-09": "Vesak Day (estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", - "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2028-08-31": "National Day", - "2028-09-16": "Malaysia Day", - "2028-09-17": "Malaysia Day (in lieu)", - "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj (estimated)", - "2028-12-25": "Christmas Day", - "2029-02-01": "Nuzul Al-Quran Day (estimated)", - "2029-02-13": "Chinese New Year (estimated)", - "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2029-02-15": "Second day of Hari Raya Puasa (estimated)", - "2029-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2029-04-23": "Arafat Day (estimated)", - "2029-04-24": "Hari Raya Haji (estimated)", - "2029-04-25": "Hari Raya Haji (estimated)", - "2029-04-26": "Birthday of the Sultan of Terengganu", - "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", - "2029-05-27": "Vesak Day (estimated)", - "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2029-08-31": "National Day", - "2029-09-16": "Malaysia Day", - "2029-11-04": "Deepavali", - "2029-12-03": "Isra and Mi'raj (estimated)", - "2029-12-25": "Christmas Day", - "2030-01-21": "Nuzul Al-Quran Day (estimated)", - "2030-02-03": "Chinese New Year (estimated)", - "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2030-04-12": "Arafat Day (estimated)", - "2030-04-13": "Hari Raya Haji (estimated)", - "2030-04-14": "Hari Raya Haji (estimated)", - "2030-04-15": "Hari Raya Haji (estimated) (in lieu)", - "2030-04-26": "Birthday of the Sultan of Terengganu", - "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", - "2030-05-16": "Vesak Day (estimated)", - "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2030-08-31": "National Day", - "2030-09-01": "National Day (in lieu)", - "2030-09-16": "Malaysia Day", - "2030-10-25": "Deepavali", - "2030-11-23": "Isra and Mi'raj (estimated)", - "2030-11-24": "Isra and Mi'raj (estimated) (in lieu)", - "2030-12-25": "Christmas Day", - "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-12": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2031-01-23": "Chinese New Year (estimated)", - "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", - "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2031-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2031-04-01": "Arafat Day (estimated)", - "2031-04-02": "Hari Raya Haji (estimated)", - "2031-04-03": "Hari Raya Haji (estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", - "2031-04-26": "Birthday of the Sultan of Terengganu", - "2031-04-27": "Birthday of the Sultan of Terengganu (in lieu)", - "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day (estimated)", - "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2031-08-31": "National Day", - "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj (estimated)", - "2031-11-13": "Deepavali", - "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day (estimated)", - "2032-01-14": "Hari Raya Puasa (estimated)", - "2032-01-15": "Second day of Hari Raya Puasa (estimated)", - "2032-02-11": "Chinese New Year (estimated)", - "2032-02-12": "Chinese New Year Holiday (estimated)", - "2032-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2032-03-21": "Arafat Day (estimated)", - "2032-03-22": "Hari Raya Haji (estimated)", - "2032-03-23": "Hari Raya Haji (estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", - "2032-04-26": "Birthday of the Sultan of Terengganu", - "2032-05-01": "Labour Day", - "2032-05-02": "Labour Day (in lieu)", - "2032-05-23": "Vesak Day (estimated)", - "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-08-31": "National Day", - "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", - "2032-12-20": "Nuzul Al-Quran Day (estimated)", - "2032-12-25": "Christmas Day", - "2032-12-26": "Christmas Day (in lieu)", - "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-31": "Chinese New Year (estimated)", - "2033-02-01": "Chinese New Year Holiday (estimated)", - "2033-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2033-03-10": "Arafat Day (estimated)", - "2033-03-11": "Hari Raya Haji (estimated)", - "2033-03-12": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", - "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", - "2033-04-26": "Birthday of the Sultan of Terengganu", - "2033-05-01": "Labour Day", - "2033-05-13": "Vesak Day (estimated)", - "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2033-08-31": "National Day", - "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", - "2033-12-09": "Nuzul Al-Quran Day (estimated)", - "2033-12-23": "Hari Raya Puasa (estimated)", - "2033-12-24": "Second day of Hari Raya Puasa (estimated)", - "2033-12-25": "Christmas Day", - "2033-12-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2034-02-19": "Chinese New Year (estimated)", - "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-28": "Arafat Day (estimated)", - "2034-03-01": "Hari Raya Haji (estimated)", - "2034-03-02": "Hari Raya Haji (estimated)", - "2034-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2034-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", - "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", - "2034-04-26": "Birthday of the Sultan of Terengganu", - "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day (estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2034-08-31": "National Day", - "2034-09-16": "Malaysia Day", - "2034-09-17": "Malaysia Day (in lieu)", - "2034-10-10": "Isra and Mi'raj (estimated)", - "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day (estimated)", - "2034-12-12": "Hari Raya Puasa (estimated)", - "2034-12-13": "Second day of Hari Raya Puasa (estimated)", - "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year (estimated)", - "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-17": "Arafat Day (estimated)", - "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated)", - "2035-02-20": "Arafat Day (estimated) (in lieu)", - "2035-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", - "2035-04-26": "Birthday of the Sultan of Terengganu", - "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-22": "Vesak Day (estimated)", - "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2035-08-31": "National Day", - "2035-09-16": "Malaysia Day", - "2035-09-29": "Isra and Mi'raj (estimated)", - "2035-09-30": "Isra and Mi'raj (estimated) (in lieu)", - "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-11-18": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2035-12-01": "Hari Raya Puasa (estimated)", - "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Hari Raya Puasa (estimated) (in lieu)", - "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year (estimated)", - "2036-01-29": "Chinese New Year Holiday (estimated)", - "2036-02-06": "Arafat Day (estimated)", - "2036-02-07": "Hari Raya Haji (estimated)", - "2036-02-08": "Hari Raya Haji (estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", - "2036-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2036-04-26": "Birthday of the Sultan of Terengganu", - "2036-04-27": "Birthday of the Sultan of Terengganu (in lieu)", - "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2036-05-10": "Vesak Day (estimated)", - "2036-05-11": "Vesak Day (estimated) (in lieu)", - "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2036-08-31": "National Day", - "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj (estimated)", - "2036-11-05": "Nuzul Al-Quran Day (estimated)", - "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa (estimated)", - "2036-11-20": "Second day of Hari Raya Puasa (estimated)", - "2036-12-25": "Christmas Day", - "2037-01-25": "Arafat Day (estimated)", - "2037-01-26": "Hari Raya Haji (estimated)", - "2037-01-27": "Hari Raya Haji (estimated)", - "2037-02-15": "Chinese New Year (estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2037-04-26": "Birthday of the Sultan of Terengganu", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day (estimated)", - "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj (estimated)", - "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day (estimated)", - "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-12-25": "Christmas Day", - "2038-01-15": "Arafat Day (estimated)", - "2038-01-16": "Hari Raya Haji (estimated)", - "2038-01-17": "Hari Raya Haji (estimated)", - "2038-01-18": "Hari Raya Haji (estimated) (in lieu)", - "2038-02-04": "Chinese New Year (estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2038-04-26": "Birthday of the Sultan of Terengganu", - "2038-05-01": "Labour Day", - "2038-05-02": "Labour Day (in lieu)", - "2038-05-18": "Vesak Day (estimated)", - "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-28": "Isra and Mi'raj (estimated)", - "2038-08-29": "Isra and Mi'raj (estimated) (in lieu)", - "2038-08-31": "National Day", - "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-17": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa (estimated)", - "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2038-12-25": "Christmas Day", - "2038-12-26": "Christmas Day (in lieu)", - "2039-01-04": "Arafat Day (estimated)", - "2039-01-05": "Hari Raya Haji (estimated)", - "2039-01-06": "Hari Raya Haji (estimated)", - "2039-01-24": "Chinese New Year (estimated)", - "2039-01-25": "Chinese New Year Holiday (estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", - "2039-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2039-04-26": "Birthday of the Sultan of Terengganu", - "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day (estimated)", - "2039-05-08": "Vesak Day (estimated) (in lieu)", - "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-17": "Isra and Mi'raj (estimated)", - "2039-08-31": "National Day", - "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day (estimated)", - "2039-10-19": "Hari Raya Puasa (estimated)", - "2039-10-20": "Second day of Hari Raya Puasa (estimated)", - "2039-11-14": "Deepavali", - "2039-12-25": "Arafat Day (estimated); Christmas Day", - "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Hari Raya Haji (estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", - "2040-02-12": "Chinese New Year (estimated)", - "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-04-26": "Birthday of the Sultan of Terengganu", - "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day (estimated)", - "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-05": "Isra and Mi'raj (estimated)", - "2040-08-31": "National Day", - "2040-09-16": "Malaysia Day", - "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-11-03": "Deepavali", - "2040-11-04": "Deepavali (in lieu)", - "2040-12-13": "Arafat Day (estimated)", - "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-15": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", - "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", - "2041-02-01": "Chinese New Year (estimated)", - "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year Holiday (estimated) (in lieu)", - "2041-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-04-26": "Birthday of the Sultan of Terengganu", - "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day (estimated)", - "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-07-25": "Isra and Mi'raj (estimated)", - "2041-08-31": "National Day", - "2041-09-01": "National Day (in lieu)", - "2041-09-13": "Nuzul Al-Quran Day (estimated)", - "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa (estimated)", - "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-10-23": "Deepavali", - "2041-12-03": "Arafat Day (estimated)", - "2041-12-04": "Hari Raya Haji (estimated)", - "2041-12-05": "Hari Raya Haji (estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", - "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year (estimated)", - "2042-01-23": "Chinese New Year Holiday (estimated)", - "2042-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2042-04-26": "Birthday of the Sultan of Terengganu", - "2042-04-27": "Birthday of the Sultan of Terengganu (in lieu)", - "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day (estimated)", - "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-15": "Isra and Mi'raj (estimated)", - "2042-08-31": "National Day", - "2042-09-02": "Nuzul Al-Quran Day (estimated)", - "2042-09-15": "Hari Raya Puasa (estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", - "2042-11-11": "Deepavali", - "2042-11-22": "Arafat Day (estimated)", - "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated)", - "2042-11-25": "Arafat Day (estimated) (in lieu)", - "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", - "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year (estimated)", - "2043-02-11": "Chinese New Year Holiday (estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2043-04-26": "Birthday of the Sultan of Terengganu", - "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day (estimated)", - "2043-05-24": "Vesak Day (estimated) (in lieu)", - "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-04": "Isra and Mi'raj (estimated)", - "2043-07-05": "Isra and Mi'raj (estimated) (in lieu)", - "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-23": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa (estimated)", - "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2043-09-16": "Malaysia Day", - "2043-10-31": "Deepavali", - "2043-11-01": "Deepavali (in lieu)", - "2043-11-11": "Arafat Day (estimated)", - "2043-11-12": "Hari Raya Haji (estimated)", - "2043-11-13": "Hari Raya Haji (estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", - "2043-12-25": "Christmas Day", - "2044-01-30": "Chinese New Year (estimated)", - "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year (estimated) (in lieu)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2044-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2044-04-26": "Birthday of the Sultan of Terengganu", - "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day (estimated)", - "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-06-23": "Isra and Mi'raj (estimated)", - "2044-08-11": "Nuzul Al-Quran Day (estimated)", - "2044-08-24": "Hari Raya Puasa (estimated)", - "2044-08-25": "Second day of Hari Raya Puasa (estimated)", - "2044-08-31": "National Day", - "2044-09-16": "Malaysia Day", - "2044-10-30": "Arafat Day (estimated)", - "2044-10-31": "Hari Raya Haji (estimated)", - "2044-11-01": "Hari Raya Haji (estimated)", - "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", - "2044-12-25": "Christmas Day", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2045-02-17": "Chinese New Year (estimated)", - "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year Holiday (estimated) (in lieu)", - "2045-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2045-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", - "2045-04-26": "Birthday of the Sultan of Terengganu", - "2045-05-01": "Labour Day; Vesak Day (estimated)", - "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj (estimated)", - "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-14": "Hari Raya Puasa (estimated)", - "2045-08-15": "Second day of Hari Raya Puasa (estimated)", - "2045-08-31": "National Day", - "2045-09-16": "Malaysia Day", - "2045-09-17": "Malaysia Day (in lieu)", - "2045-10-20": "Arafat Day (estimated)", - "2045-10-21": "Hari Raya Haji (estimated)", - "2045-10-22": "Hari Raya Haji (estimated)", - "2045-10-23": "Hari Raya Haji (estimated) (in lieu)", - "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", - "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-02-06": "Chinese New Year (estimated)", - "2046-02-07": "Chinese New Year Holiday (estimated)", - "2046-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2046-04-26": "Birthday of the Sultan of Terengganu", - "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day (estimated)", - "2046-06-02": "Isra and Mi'raj (estimated)", - "2046-06-03": "Isra and Mi'raj (estimated) (in lieu)", - "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-07-22": "Nuzul Al-Quran Day (estimated) (in lieu)", - "2046-08-03": "Hari Raya Puasa (estimated)", - "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", - "2046-08-31": "National Day", - "2046-09-16": "Malaysia Day", - "2046-10-09": "Arafat Day (estimated)", - "2046-10-10": "Hari Raya Haji (estimated)", - "2046-10-11": "Hari Raya Haji (estimated)", - "2046-10-27": "Deepavali", - "2046-10-28": "Deepavali (in lieu)", - "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", - "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-01-26": "Chinese New Year (estimated)", - "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year (estimated) (in lieu)", - "2047-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2047-04-26": "Birthday of the Sultan of Terengganu", - "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day (estimated)", - "2047-05-22": "Isra and Mi'raj (estimated)", - "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day (estimated)", - "2047-07-24": "Hari Raya Puasa (estimated)", - "2047-07-25": "Second day of Hari Raya Puasa (estimated)", - "2047-08-31": "National Day", - "2047-09-01": "National Day (in lieu)", - "2047-09-16": "Malaysia Day", - "2047-09-29": "Arafat Day (estimated)", - "2047-09-30": "Hari Raya Haji (estimated)", - "2047-10-01": "Hari Raya Haji (estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", - "2047-11-15": "Deepavali", - "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-02-14": "Chinese New Year (estimated)", - "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year Holiday (estimated) (in lieu)", - "2048-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2048-04-26": "Birthday of the Sultan of Terengganu", - "2048-05-01": "Labour Day", - "2048-05-10": "Isra and Mi'raj (estimated)", - "2048-05-27": "Vesak Day (estimated)", - "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-08-31": "National Day", - "2048-09-16": "Malaysia Day", - "2048-09-18": "Arafat Day (estimated)", - "2048-09-19": "Hari Raya Haji (estimated)", - "2048-09-20": "Hari Raya Haji (estimated)", - "2048-09-21": "Hari Raya Haji (estimated) (in lieu)", - "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", - "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-25": "Christmas Day", - "2049-02-02": "Chinese New Year (estimated)", - "2049-02-03": "Chinese New Year Holiday (estimated)", - "2049-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2049-04-26": "Birthday of the Sultan of Terengganu", - "2049-04-29": "Isra and Mi'raj (estimated)", - "2049-05-01": "Labour Day", - "2049-05-02": "Labour Day (in lieu)", - "2049-05-16": "Vesak Day (estimated)", - "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day (estimated)", - "2049-07-01": "Hari Raya Puasa (estimated)", - "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-08-31": "National Day", - "2049-09-07": "Arafat Day (estimated)", - "2049-09-08": "Hari Raya Haji (estimated)", - "2049-09-09": "Hari Raya Haji (estimated)", - "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", - "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2049-12-25": "Christmas Day", - "2049-12-26": "Christmas Day (in lieu)", - "2050-01-23": "Chinese New Year (estimated)", - "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2050-04-19": "Isra and Mi'raj (estimated)", - "2050-04-26": "Birthday of the Sultan of Terengganu", - "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day (estimated)", - "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day (estimated)", - "2050-06-20": "Hari Raya Puasa (estimated)", - "2050-06-21": "Second day of Hari Raya Puasa (estimated)", - "2050-08-27": "Arafat Day (estimated)", - "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated)", - "2050-08-30": "Arafat Day (estimated) (in lieu)", - "2050-08-31": "National Day", - "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-11-12": "Deepavali", - "2050-11-13": "Deepavali (in lieu)", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2050-12-25": "Christmas Day" -} diff --git a/tests/countries/test_malaysia.py b/tests/countries/test_malaysia.py index 6dcf07d96..956842f1f 100644 --- a/tests/countries/test_malaysia.py +++ b/tests/countries/test_malaysia.py @@ -10,10 +10,9 @@ # Website: https://github.com/vacanza/python-holidays # License: MIT (see LICENSE file) -from datetime import date +import warnings from unittest import TestCase -from holidays.calendars.gregorian import APR, AUG, DEC, FEB, JAN, JUL, JUN, MAR, MAY, NOV, OCT, SEP from holidays.countries.malaysia import Malaysia, MY, MYS from tests.common import CommonCountryTests @@ -21,1310 +20,992 @@ class TestMalaysia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): - super().setUpClass(Malaysia) + super().setUpClass(Malaysia, years=range(1952, 2050)) + cls.subdiv_holidays = { + subdiv: Malaysia(subdiv=subdiv, years=range(2000, 2025)) + for subdiv in Malaysia.subdivisions + } + + def setUp(self): + super().setUp() + warnings.simplefilter("ignore", category=DeprecationWarning) def test_country_aliases(self): self.assertAliases(Malaysia, MY, MYS) - holidays1 = MY() - holidays2 = MYS() - self.assertEqual(list(holidays1), list(holidays2)) - - def test_malaysia_wikipedia(self): - # reproduce table at - # https://en.wikipedia.org/wiki/Public_holidays_in_Malaysia - # as of 19-Sep-21 - columns = ( - "JHR", # "Johor" - "KDH", # "Kedah" - "KTN", # "Kelantan" - "KUL", # "FT Kuala Lumpur" - "LBN", # "FT Labuan" - "MLK", # "Malacca" - "NSN", # "Negeri Sembilan" - "PHG", # "Pahang" - "PNG", # "Penang" - "PRK", # "Perak" - "PLS", # "Perlis" - "PJY", # "FT Putrajaya" - "SBH", # "Sabah" - "SWK", # "Sarawak" - "SGR", # "Selangor" - "TRG", # "Terengganu" - ) - rows = ( - ( - date(2021, JAN, 1), - (0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0), - ), - ( - date(2021, JAN, 14), - (0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, JAN, 28), - (1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0), - ), - ( - date(2021, FEB, 1), - (0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0), - ), - ( - date(2021, FEB, 12), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, FEB, 13), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, FEB, 14), - (1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), - ), - ( - date(2021, MAR, 4), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), - ), - ( - date(2021, MAR, 11), - (0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1), - ), - ( - date(2021, MAR, 23), - (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, APR, 2), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0), - ), - ( - date(2021, APR, 13), - (1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, APR, 15), - (0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, APR, 26), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), - ), - ( - date(2021, APR, 29), - (0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1), - ), - ( - date(2021, MAY, 1), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, MAY, 2), - (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), - ), - ( - date(2021, MAY, 13), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, MAY, 14), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, MAY, 16), - (1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, MAY, 22), - (0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, MAY, 26), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, MAY, 30), - (0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), - ), - ( - date(2021, MAY, 31), - (0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), - ), - ( - date(2021, JUN, 1), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), - ), - ( - date(2021, JUN, 2), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), - ), - ( - date(2021, JUN, 7), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, JUN, 20), - (0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, JUL, 7), - (0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, JUL, 10), - (0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, JUL, 17), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0), - ), - ( - date(2021, JUL, 19), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), - ), - ( - date(2021, JUL, 20), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, JUL, 21), - (0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1), - ), - ( - date(2021, JUL, 22), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), - ), - ( - date(2021, JUL, 30), - (0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, AUG, 10), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, AUG, 24), - (0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, AUG, 31), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, SEP, 13), - (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, SEP, 16), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, OCT, 2), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), - ), - ( - date(2021, OCT, 9), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), - ), - ( - date(2021, OCT, 19), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, NOV, 4), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1), - ), - ( - date(2021, NOV, 5), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, NOV, 11), - (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, NOV, 12), - (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), - ), - ( - date(2021, DEC, 3), - (0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0), - ), - ( - date(2021, DEC, 11), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0), - ), - ( - date(2021, DEC, 24), - (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), - ), - ( - date(2021, DEC, 25), - (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1), - ), - ( - date(2021, DEC, 26), - (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), - ), - ) - for col, state in enumerate(columns): - my_holidays = Malaysia(years=2021, subdiv=state) - # check if all holidays are in here + def test_subdiv_deprecation(self): + self.assertDeprecatedSubdivisions("This subdivision is deprecated and will be removed") + + def test_deprecated(self): + for subdiv1, subdiv2 in ( + ("JHR", "01"), + ("KDH", "02"), + ("KTN", "03"), + ("KUL", "14"), + ("LBN", "15"), + ("MLK", "04"), + ("NSN", "05"), + ("PHG", "06"), + ("PJY", "16"), + ("PLS", "09"), + ("PNG", "07"), + ("PRK", "08"), + ("SBH", "12"), + ("SGR", "10"), + ("SWK", "13"), + ("TRG", "11"), + ): + self.assertEqual( + sorted(Malaysia(subdiv=subdiv1, years=2023).keys()), + sorted(Malaysia(subdiv=subdiv2, years=2023).keys()), + ) + + def test_no_holidays(self): + self.assertNoHolidays(Malaysia(years=1951)) + + def test_2023(self): + rows = ( + ("2023-01-01", (0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1)), + ("2023-01-02", (0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1)), + ("2023-01-14", (0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-01-22", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-01-23", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-01-24", (0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1)), + ("2023-02-01", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1)), + ("2023-02-05", (1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1)), + ("2023-02-06", (0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1)), + ("2023-02-18", (0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0)), + ("2023-02-19", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0)), + ("2023-03-04", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0)), + ("2023-03-05", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0)), + ("2023-03-23", (1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-04-07", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0)), + ("2023-04-08", (0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1)), + ("2023-04-09", (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0)), + ("2023-04-15", (0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-04-21", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-04-22", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-04-23", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-04-24", (0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-04-26", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0)), + ("2023-05-01", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-05-04", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-05-17", (0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0)), + ("2023-05-22", (0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-05-30", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0)), + ("2023-05-31", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0)), + ("2023-06-01", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0)), + ("2023-06-02", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0)), + ("2023-06-05", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-06-18", (0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-06-28", (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0)), + ("2023-06-29", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-06-30", (0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0)), + ("2023-07-02", (0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-07-07", (0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-07-08", (0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-07-19", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-07-22", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0)), + ("2023-07-30", (0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-07-31", (0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-08-23", (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-08-24", (0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-08-31", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-09-16", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-09-17", (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0)), + ("2023-09-28", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ("2023-09-29", (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-09-30", (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-10-07", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0)), + ("2023-10-14", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0)), + ("2023-11-03", (0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0)), + ("2023-11-12", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1)), + ("2023-11-13", (0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1)), + ("2023-12-11", (0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0)), + ("2023-12-24", (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0)), + ("2023-12-25", (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)), + ) + + for col, subdiv in enumerate(Malaysia.subdivisions): + state_holidays = self.subdiv_holidays[subdiv] for dt, is_holiday in rows: - if is_holiday[col]: - self.assertIn(dt, my_holidays) - else: - self.assertNotIn(dt, my_holidays) - - def test_malaysia(self): - # Federal Public Holidays - # https://www.timeanddate.com/holidays/malaysia/2001 - self.assertHolidayDates( - "2001-01-24", - "2001-01-25", - "2001-03-06", - "2001-03-26", - "2001-05-01", - "2001-05-07", - "2001-06-02", - "2001-06-04", - "2001-08-31", - "2001-11-14", - "2001-12-17", - "2001-12-18", - "2001-12-25", - ) + self.assertEqual(dt in state_holidays, is_holiday[col]) def test_special_holidays(self): self.assertHoliday( "1999-11-29", + "2017-04-24", + "2017-09-04", "2018-05-09", "2019-07-30", - ) - - def test_observed(self): + "2022-11-18", + "2022-11-19", + "2022-11-28", + "2023-04-21", + ) + + def test_special_subdiv_holidays(self): + for subdiv in ("14", "15", "16"): + self.assertHoliday(self.subdiv_holidays[subdiv], "2021-12-03") + + self.assertHoliday(self.subdiv_holidays["13"], "2018-05-17", "2018-05-18") + + for subdiv in ("01", "02", "03", "11"): + self.assertHoliday(self.subdiv_holidays[subdiv], "2022-05-04") + self.assertNoNonObservedHoliday(Malaysia(subdiv=subdiv, observed=False), "2022-05-04") + + for subdiv in ("04", "05", "06", "07", "08", "09", "10", "11", "12", "14", "15", "16"): + self.assertHoliday(self.subdiv_holidays[subdiv], "2007-01-02") + self.assertNoNonObservedHoliday(Malaysia(subdiv=subdiv, observed=False), "2007-01-02") + + def test_new_years_day(self): + name = "Tahun Baharu" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"04", "05", "06", "07", "08", "10", "12", "13", "14", "15", "16"}: + self.assertHolidayName( + name, holidays, (f"{year}-01-01" for year in range(2000, 2025)) + ) + else: + self.assertNoHolidayName(name, holidays) + + def test_federal_territory_day(self): + name = "Hari Wilayah Persekutuan" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"14", "15", "16"}: + self.assertHolidayName( + name, holidays, (f"{year}-02-01" for year in range(2000, 2025)) + ) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1973)) + else: + self.assertNoHolidayName(name, holidays) + + def test_labor_day(self): + name = "Hari Pekerja" + self.assertHolidayName(name, (f"{year}-05-01" for year in range(1973, 2050))) + self.assertNoHolidayName(name, range(1952, 1973)) + + def test_good_friday(self): + name = "Good Friday" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"12", "13"}: + self.assertHolidayName( + name, + holidays, + "2012-04-06", + "2013-03-29", + "2014-04-18", + "2015-04-03", + "2016-03-25", + "2017-04-14", + "2018-03-30", + "2019-04-19", + "2020-04-10", + "2021-04-02", + "2022-04-15", + "2023-04-07", + "2024-03-29", + ) + self.assertHolidayName(name, holidays, range(2000, 2025)) + else: + self.assertNoHolidayName(name, holidays) + + def test_pesta_kaamatan(self): + name = "Pesta Kaamatan" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"12", "15"}: + self.assertHolidayName( + name, + holidays, + (f"{year}-05-30" for year in range(2000, 2025)), + (f"{year}-05-31" for year in range(2000, 2025)), + ) + else: + self.assertNoHolidayName(name, holidays) + + def test_yang_di_pertuan_agong_birthday(self): + name = "Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong" + self.assertHolidayName( + name, + "2012-06-02", + "2013-06-01", + "2014-06-07", + "2015-06-06", + "2016-06-04", + "2017-09-09", + "2018-09-09", + "2019-09-09", + "2020-06-08", + "2021-06-07", + "2022-06-06", + "2023-06-05", + "2024-06-03", + ) + self.assertHolidayName(name, range(1952, 2050)) + + def test_malaysia_day(self): + name = "Hari Malaysia" + self.assertHolidayName(name, (f"{year}-09-16" for year in range(2010, 2050))) + self.assertNoHolidayName(name, range(1952, 2010)) + + def test_deepavali(self): + name = "Hari Deepavali" + self.assertNoHolidayName(name) dt = ( - "2012-02-06", - "2012-08-21", - "2012-09-17", - "2013-02-12", - "2014-09-01", - "2014-10-06", - "2015-05-04", - "2016-05-02", - "2016-12-26", - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(dt) - self.assertNoNonObservedHoliday(dt) - - def test_JHR_holidays(self): - state_holidays = Malaysia(subdiv="JHR") - self.assertHoliday( - state_holidays, - # Birthday of the Sultan of Johor - "2015-03-23", - "2018-03-23", - "2020-03-23", - "2022-03-23", - # Hari Hol of Sultan Iskandar of Johor - "2018-10-15", - "2019-10-05", - "2020-09-24", - "2021-09-13", - "2022-09-03", - "2023-08-22", - # Thaipusam + "2014-10-22", + "2015-11-10", + "2016-10-29", + "2017-10-18", + "2018-11-06", + "2019-10-27", + "2020-11-14", + "2021-11-04", + "2022-10-24", + "2023-11-12", + "2024-10-31", + ) + + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "13": + self.assertNoHolidayName(name, holidays) + elif subdiv == "15": + self.assertHolidayName(name, holidays, dt) + self.assertNoHolidayName(name, holidays, range(2000, 2014)) + else: + self.assertHolidayName(name, holidays, dt) + + def test_thaipusam(self): + name = "Hari Thaipusam" + self.assertNoHolidayName(name) + dt = ( + "2012-01-08", + "2013-02-25", + "2014-02-14", + "2015-03-05", + "2016-02-23", + "2017-01-13", "2018-01-31", "2019-01-21", "2020-02-08", "2021-01-28", "2022-01-18", "2023-02-05", - # Beginning of Ramadan - "2018-05-17", - "2019-05-06", - "2020-04-24", - "2021-04-13", - "2022-04-03", - "2023-03-23", - # Labour Day Holiday - "2022-05-04", - ) - self.assertNoHoliday( - state_holidays, - # Birthday of the Sultan of Johor - "2014-03-23", - # Hari Hol of Sultan Iskandar of Johor - "2010-01-21", - # Malaysia Day (in lieu) - "2018-09-17", - ) - dt = ( - "2017-09-03", - "2017-12-03", - "2018-02-18", - "2018-06-17", - "2018-09-02", - "2020-04-26", - "2020-05-03", - "2020-08-02", - "2020-12-27", - "2021-02-14", - "2021-05-16", - "2022-09-18", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_KDH_holidays(self): - state_holidays = Malaysia(subdiv="KDH") - self.assertHoliday( - state_holidays, - # Hari Raya Haji - "2006-12-31", + "2024-01-25", + ) + + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"01", "05", "07", "08", "10", "14", "16"}: + self.assertHolidayName(name, holidays, dt) + self.assertHolidayName(name, holidays, range(2000, 2025)) + elif subdiv == "02": + self.assertHolidayName(name, holidays, "2022-01-18", "2023-02-05", "2024-01-25") + self.assertNoHolidayName(name, holidays, range(2000, 2022)) + else: + self.assertNoHolidayName(name, holidays) + + def test_islamic_new_year(self): + name = "Awal Muharam" + self.assertHolidayName( + name, + "2012-11-15", + "2013-11-05", + "2014-10-25", + "2015-10-14", + "2016-10-02", + "2017-09-22", + "2018-09-11", + "2019-09-01", + "2020-08-20", + "2021-08-10", + "2022-07-30", + "2023-07-19", + "2024-07-07", + ) + self.assertNoHolidayName(name, range(1952, 1995)) + + def test_prophets_birthday(self): + name = "Hari Keputeraan Nabi Muhammad S.A.W." + self.assertHolidayName( + name, + "2012-02-05", + "2013-01-24", + "2014-01-14", + "2015-01-03", + "2015-12-24", + "2016-12-12", + "2017-12-01", + "2018-11-20", + "2019-11-09", + "2020-10-29", + "2021-10-19", + "2022-10-10", + "2023-09-28", + "2024-09-16", + ) + + def test_eid_al_fitr(self): + name = "Hari Raya Puasa" + self.assertHolidayName( + name, + "2012-08-19", + "2013-08-08", + "2014-07-28", + "2015-07-17", + "2016-07-06", + "2017-06-25", + "2018-06-15", + "2019-06-05", + "2020-05-24", + "2021-05-13", + "2022-05-02", + "2023-04-22", + "2024-04-10", + ) + + def test_eid_al_fitr_second_day(self): + name = "Hari Raya Puasa (Hari Kedua)" + self.assertHolidayName( + name, + "2012-08-20", + "2013-08-09", + "2014-07-29", + "2015-07-18", + "2016-07-07", + "2017-06-26", + "2018-06-16", + "2019-06-06", + "2020-05-25", + "2021-05-14", + "2022-05-03", + "2023-04-23", + "2024-04-11", + ) + + def test_eid_al_adha(self): + name = "Hari Raya Qurban" + self.assertHolidayName( + name, + "2012-10-26", + "2013-10-15", + "2014-10-05", + "2015-09-24", + "2016-09-12", + "2017-09-01", "2018-08-22", "2019-08-11", "2020-07-31", "2021-07-20", "2022-07-10", "2023-06-29", - # Hari Raya Haji Holiday - "2007-01-01", - "2018-08-23", - "2019-08-12", - "2020-08-01", - "2021-07-21", - "2022-07-11", - "2023-06-30", - # Isra and Mi'raj + "2024-06-17", + ) + + def test_isra_and_miraj(self): + name = "Israk dan Mikraj" + self.assertNoHolidayName(name) + dt = ( + "2012-06-17", + "2013-06-06", + "2014-05-27", + "2015-05-16", + "2016-05-05", + "2017-04-24", "2018-04-14", "2019-04-03", "2020-03-22", "2021-03-11", "2022-03-01", "2023-02-18", - # Beginning of Ramadan + "2024-02-08", + ) + + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"02", "05", "09"}: + self.assertHolidayName(name, holidays, dt) + elif subdiv == "11": + self.assertHolidayName( + name, + holidays, + "2020-03-22", + "2021-03-11", + "2022-03-01", + "2023-02-18", + "2024-02-08", + ) + self.assertNoHolidayName(name, holidays, range(2000, 2020)) + else: + self.assertNoHolidayName(name, holidays) + + def test_beginning_of_ramadan(self): + name = "Awal Ramadan" + self.assertNoHolidayName(name) + dt = ( + "2012-07-20", + "2013-07-09", + "2014-06-29", + "2015-06-18", + "2016-06-07", + "2017-05-27", "2018-05-17", "2019-05-06", "2020-04-24", "2021-04-13", "2022-04-03", "2023-03-23", - # Thaipusam in 2022 - "2022-01-18", - ) - self.assertNoHoliday( - state_holidays, - # Malaysia Day (in lieu) - "2018-09-17", - ) - dt = ( - "2017-09-03", - "2017-12-03", - "2018-02-18", - "2018-06-17", - "2018-09-02", - "2020-04-26", - "2020-05-03", - "2020-08-02", - "2020-12-27", - "2021-02-14", - "2021-05-16", - "2022-09-18", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_KTN_holidays(self): - state_holidays = Malaysia(subdiv="KTN") - self.assertHoliday( - state_holidays, - # Birthday of the Sultan of Kelantan - "2018-11-11", - "2019-11-12", - "2020-11-11", - # Hari Raya Haji - "2006-12-31", - "2018-08-22", - "2019-08-11", - "2020-07-31", - "2021-07-20", - "2022-07-10", - "2023-06-29", - # Hari Raya Haji Holiday - "2007-01-01", - "2018-08-23", - "2019-08-12", - "2020-08-01", - "2021-07-21", - "2022-07-11", - "2023-06-30", - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - "2023-04-09", # In lieu - # Labour Day Holiday - "2022-05-04", - ) - self.assertNoHoliday( - state_holidays, - # Birthday of the Sultan of Kelantan - "2001-11-11", - # Malaysia Day (in lieu) - "2018-09-17", - ) - dt = ( - "2017-01-30", - "2017-06-04", - "2017-09-03", - "2017-09-17", - "2018-02-18", - "2018-06-03", - "2018-06-17", - "2019-11-10", - "2020-01-27", - "2020-08-02", - "2020-11-15", - "2021-02-14", - "2021-05-02", - "2021-12-26", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_NSN_holidays(self): - state_holidays = Malaysia(subdiv="NSN") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Isra and Mi'raj - "2018-04-14", - "2019-04-03", - "2020-03-22", - "2021-03-11", - "2022-03-01", - "2023-02-18", - # Birthday of the Sultan of Negeri Sembilan - "2018-01-14", - "2023-01-14", - # Thaipusam - "2018-01-31", - "2019-01-21", - "2020-02-08", - "2021-01-28", - "2022-01-18", - "2023-02-05", - ) - self.assertNoHoliday( - state_holidays, - # Birthday of the Sultan of Negeri Sembilan - "2008-01-14", - ) - dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-01-15", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-03-23", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", + "2024-03-12", ) - self.assertHoliday(state_holidays, dt) - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"01", "02", "04"}: + self.assertHolidayName(name, holidays, dt) + else: + self.assertNoHolidayName(name, holidays) - def test_PNG_holidays(self): - state_holidays = Malaysia(subdiv="PNG") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - # Thaipusam - "2018-01-31", - "2019-01-21", - "2020-02-08", - "2021-01-28", - "2022-01-18", - "2023-02-05", - "2023-02-06", # In lieu - # George Town Heritage Day - "2009-07-07", - "2020-07-07", - # Birthday of the Governor of Penang - "2017-07-08", - "2019-07-13", - "2020-07-11", - "2022-07-09", - "2023-07-08", - ) - self.assertNoHoliday( - state_holidays, - # George Town Heritage Day - "2008-07-07", - ) + def test_nuzul_al_quran_day(self): + name = "Hari Nuzul Al-Quran" + self.assertNoHolidayName(name) dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-07-08", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-11", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_PRK_holidays(self): - state_holidays = Malaysia(subdiv="PRK") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Nuzul Al-Quran Day + "2012-08-05", + "2013-07-25", + "2014-07-15", + "2015-07-04", + "2016-06-22", + "2017-06-12", "2018-06-02", "2019-05-22", "2020-05-10", "2021-04-29", "2022-04-19", "2023-04-08", - # Thaipusam - "2018-01-31", - "2019-01-21", - "2020-02-08", - "2021-01-28", - "2022-01-18", - "2023-02-05", - "2023-02-06", # In lieu - # Birthday of the Sultan of Perak - "2009-11-27", - "2017-11-27", - "2018-11-02", - "2019-11-01", - "2020-11-06", - "2021-11-05", - "2022-11-04", - ) - self.assertNoHoliday( - state_holidays, - # Birthday of the Sultan of Perak - "2018-11-27", + "2024-03-28", ) - dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-11", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"03", "06", "07", "08", "09", "10", "11", "14", "15", "16"}: + self.assertHolidayName(name, holidays, dt) + else: + self.assertNoHolidayName(name, holidays) - def test_SBH_holidays(self): - state_holidays = Malaysia(subdiv="SBH") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Pesta Kaamatan - "2018-05-30", - "2019-05-31", - # Good Friday - "2018-03-30", - "2020-04-10", - "2021-04-02", - "2022-04-15", - "2023-04-07", - # Birthday of the Governor of Sabah - "2017-10-07", - "2018-10-06", - "2019-10-05", - "2020-10-03", - # Christmas Eve - "2019-12-24", - "2020-12-24", - ) - self.assertNoHoliday( - state_holidays, - # Christmas Eve - "2018-12-24", - ) + def test_arafat_day(self): + name = "Hari Arafah" + self.assertNoHolidayName(name) dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_SWK_holidays(self): - state_holidays = Malaysia(subdiv="SWK") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Good Friday - "2018-03-30", - "2020-04-10", - "2021-04-02", - "2022-04-15", - "2023-04-07", - # Gawai Dayak - "2018-06-01", - "2018-06-02", - "2020-06-02", - "2020-06-02", - # Birthday of the Governor of Sarawak - "2018-10-13", - "2019-10-12", - "2020-10-10", - "2021-10-09", - "2022-10-08", - # Sarawak Day - "2017-07-22", - "2018-07-22", - "2022-07-22", - ) - self.assertNoHoliday( - state_holidays, - # Sarawak Day - "2014-07-22", - # Deepavali - "2018-11-06", - "2022-10-24", - ) - dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-07-23", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-06-04", - "2019-08-12", - "2020-01-27", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_SGR_holidays(self): - state_holidays = Malaysia(subdiv="SGR") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - # Thaipusam - "2018-01-31", - "2019-01-21", - "2020-02-08", - "2021-01-28", - "2022-01-18", - "2023-02-05", - "2023-02-06", # In lieu - # Birthday of The Sultan of Selangor - "2018-12-11", - "2019-12-11", - ) - dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-11", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-12", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_TRG_holidays(self): - state_holidays = Malaysia(subdiv="TRG") - self.assertHoliday( - state_holidays, - # Arafat Day + "2012-10-25", + "2013-10-14", + "2014-10-04", + "2015-09-23", + "2016-09-11", + "2017-08-31", "2018-08-21", "2019-08-10", "2020-07-30", "2021-07-19", "2022-07-09", "2023-06-28", - # Hari Raya Haji - "2006-12-31", - "2018-08-22", - "2019-08-11", - "2020-07-31", - "2021-07-20", - "2022-07-10", - "2023-06-29", - # Hari Raya Haji Holiday - "2007-01-01", - "2018-08-23", - "2019-08-12", - "2020-08-01", - "2021-07-21", - "2022-07-11", - "2023-06-30", - # Isra and Mi'raj - "2020-03-22", - "2021-03-11", - "2022-03-01", - "2023-02-18", - "2023-02-19", # In lieu - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - "2023-04-09", # In lieu - # Anniversary of the Installation of the Sultan of Terengganu - "2000-03-04", - "2018-03-04", - "2019-03-04", - # Birthday of the Sultan of Terengganu - "2020-04-26", - "2022-04-26", - # Labour Day Holiday - "2022-05-04", + "2024-06-16", ) - self.assertNoHoliday( - state_holidays, - # Isra and Mi'raj - "2018-04-14", - "2019-04-03", - # Anniversary of the Installation of the Sultan of Terengganu - "1999-03-04", - # Birthday of the Sultan of Terengganu - "1999-04-26", - # Malaysia Day (in lieu) - "2018-09-17", - ) - dt = ( - "2017-01-30", - "2017-03-05", - "2017-06-04", - "2017-09-03", - "2017-09-17", - "2018-02-18", - "2018-06-03", - "2018-06-17", - "2019-08-13", - "2019-11-10", - "2020-01-27", - "2020-08-02", - "2020-11-15", - "2021-02-14", - "2021-05-02", - "2021-12-26", - "2022-07-12", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "11": + self.assertHolidayName(name, holidays, dt) + elif subdiv == "03": + self.assertHolidayName(name, holidays, "2023-06-28", "2024-06-16") + self.assertNoHolidayName(name, holidays, range(2000, 2023)) + else: + self.assertNoHolidayName(name, holidays) - def test_KUL_holidays(self): - state_holidays = Malaysia(subdiv="KUL") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Federal Territory Day - "2018-02-01", - "2019-02-01", - # Thaipusam - "2018-01-31", - "2019-01-21", - "2020-02-08", - "2021-01-28", - "2022-01-18", - "2023-02-05", - # Malaysia Cup Holiday - "2021-12-03", - ) - self.assertNoHoliday( - state_holidays, - # Federal Territory Day - "1970-02-01", - ) + def test_eid_al_adha_second_day(self): + name = "Hari Raya Qurban (Hari Kedua)" + self.assertNoHolidayName(name) dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-11", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_MLK_holidays(self): - state_holidays = Malaysia(subdiv="MLK") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Beginning of Ramadan - "2018-05-17", - "2019-05-06", - "2020-04-24", - "2021-04-13", - "2022-04-03", - "2023-03-23", - # Declaration of Malacca as a Historical City - "2018-04-15", - "2019-04-15", - # Birthday of the Governor of Malacca - "2018-10-12", - "2019-10-11", - "2020-08-24", - "2021-08-24", - "2022-08-24", - ) - self.assertNoHoliday( - state_holidays, - # Declaration of Malacca as a Historical City - "1985-04-15", - # Birthday of the Governor of Malacca - "2019-08-24", - "2020-10-09", - ) - dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-04-16", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-26", - "2022-04-04", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_LBN_holidays(self): - state_holidays = Malaysia(subdiv="LBN") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Federal Territory Day - "2020-02-01", - "2022-02-01", - # Pesta Kaamatan - "2018-05-30", - "2019-05-31", - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - # Malaysia Cup Holiday - "2021-12-03", - ) - self.assertNoHoliday( - state_holidays, - # Federal Territory Day - "1970-02-01", - ) - dt = ( - "2017-01-02", - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-11", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_PHG_holidays(self): - state_holidays = Malaysia(subdiv="PHG") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - # Hari Hol of Pahang - "2001-05-07", - "2018-05-07", - "2019-05-07", - "2020-05-07", - "2021-05-22", - "2022-05-22", - ) - self.assertNoHoliday( - state_holidays, - # Hari Hol of Pahang - "2010-05-22", - "2021-05-07", - ) - dt = ( - "2017-01-02", - "2017-01-30", - "2017-05-08", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-12", - "2019-10-28", - "2020-01-27", - "2020-05-11", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-05-23", - "2022-07-11", - "2022-12-26", - # special case - "2007-01-02", - ) - self.assertHoliday(state_holidays, dt) - - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) - - def test_PLS_holidays(self): - state_holidays = Malaysia(subdiv="PLS") - self.assertHoliday( - state_holidays, - # Hari Raya Haji - "2006-12-31", - "2018-08-22", - "2019-08-11", - "2020-07-31", - "2021-07-20", - "2022-07-10", - "2023-06-29", - # Hari Raya Haji Holiday - "2007-01-01", + "2012-10-27", + "2013-10-16", + "2014-10-06", + "2015-09-25", + "2016-09-13", + "2017-09-02", "2018-08-23", "2019-08-12", "2020-08-01", "2021-07-21", "2022-07-11", "2023-06-30", - # Isra and Mi'raj - "2018-04-14", - "2019-04-03", - "2020-03-22", - "2021-03-11", - "2022-03-01", - "2023-02-18", - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - # Birthday of The Raja of Perlis - "2000-05-17", - "2010-05-17", - "2017-05-17", - "2018-07-17", - "2022-07-17", - ) - self.assertNoHoliday( - state_holidays, - # Birthday of The Raja of Perlis - "2017-07-17", - "2018-05-17", - ) - dt = ( - "2017-01-30", - "2017-06-27", - "2018-09-10", - "2018-09-17", - "2019-05-20", - "2019-08-13", - "2019-10-28", - "2020-01-27", - "2020-03-23", - "2020-05-11", - "2020-05-26", - "2022-05-04", - "2022-05-16", - "2022-07-12", - "2022-07-18", - "2022-12-26", - # special case - "2007-01-02", + "2024-06-18", ) - self.assertHoliday(state_holidays, dt) - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv in {"02", "03", "09", "11"}: + self.assertHolidayName(name, holidays, dt) + else: + self.assertNoHolidayName(name, holidays) - def test_PJY_holidays(self): - state_holidays = Malaysia(subdiv="PJY") - self.assertHoliday( - state_holidays, - # New Year's Day - "2018-01-01", - "2020-01-01", - "2022-01-01", - "2023-01-02", # In lieu - # Nuzul Al-Quran Day - "2018-06-02", - "2019-05-22", - "2020-05-10", - "2021-04-29", - "2022-04-19", - "2023-04-08", - # Thaipusam - "2018-01-31", - "2019-01-21", - "2020-02-08", - "2021-01-28", - "2022-01-18", - "2023-02-05", - "2023-02-06", # In lieu - # Federal Territory Day - "2018-02-01", - "2019-02-01", - # Malaysia Cup Holiday - "2021-12-03", - ) - self.assertNoHoliday( - state_holidays, - # Federal Territory Day - "1970-02-01", - ) + def test_observed(self): dt = ( - "2017-01-02", + "2012-02-06", + "2012-08-21", + "2012-09-17", + "2013-02-12", + "2014-09-01", + "2014-10-06", + "2015-05-04", + "2016-05-02", + "2016-12-26", "2017-01-30", "2017-06-27", "2018-09-10", "2018-09-17", "2019-05-20", "2019-08-12", - "2019-10-28", "2020-01-27", - "2020-05-11", "2020-05-26", "2022-05-04", "2022-05-16", "2022-07-11", "2022-12-26", - # special case - "2007-01-02", + "2023-01-24", + "2023-04-24", + "2024-02-12", ) - self.assertHoliday(state_holidays, dt) + self.assertHoliday(dt) + self.assertNoNonObservedHoliday(dt) - state_holidays.observed = False - self.assertNoNonObservedHoliday(state_holidays, dt) + def test_birthday_of_sultan_of_johor(self): + name = "Hari Keputeraan Sultan Johor" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "01": + self.assertHolidayName( + name, holidays, (f"{year}-03-23" for year in range(2015, 2025)) + ) + self.assertNoHolidayName(name, holidays, range(2000, 2015)) + else: + self.assertNoHolidayName(name, holidays) + + def test_sultan_of_johor_hol(self): + name = "Hari Hol Almarhum Sultan Iskandar" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "01": + self.assertHolidayName( + name, + holidays, + "2011-01-12", + "2012-12-20", + "2013-12-10", + "2014-11-29", + "2015-11-19", + "2016-11-07", + "2017-10-27", + "2018-10-15", + "2019-10-05", + "2020-09-24", + "2021-09-13", + "2022-09-03", + "2023-08-23", + "2024-08-11", + ) + self.assertNoHolidayName(name, holidays, range(2000, 2011)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_sultan_of_kedah(self): + name = "Hari Keputeraan Sultan Kedah" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "02": + self.assertHolidayName( + name, + holidays, + "2018-06-17", + "2019-06-16", + "2020-06-21", + "2021-06-20", + "2022-06-19", + "2023-06-18", + "2024-06-30", + ) + self.assertNoHolidayName(name, holidays, range(2000, 2018)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_sultan_of_kelantan(self): + name = "Hari Keputeraan Sultan Kelantan" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "03": + self.assertHolidayName( + name, + holidays, + (f"{year}-03-30" for year in range(2010, 2012)), + (f"{year}-03-31" for year in range(2010, 2012)), + ) + self.assertHolidayName( + name, + holidays, + (f"{year}-11-11" for year in range(2012, 2023)), + (f"{year}-11-12" for year in range(2012, 2023)), + ) + self.assertHolidayName( + name, + holidays, + (f"{year}-09-29" for year in range(2023, 2025)), + (f"{year}-09-30" for year in range(2023, 2025)), + ) + self.assertNoHolidayName(name, holidays, range(2000, 2010)) + else: + self.assertNoHolidayName(name, holidays) + + def test_malacca_declaration_of_independence_day(self): + name = "Hari Pengisytiharan Tarikh Kemerdekaan" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "04": + self.assertHolidayName( + name, holidays, (f"{year}-02-20" for year in range(2024, 2025)) + ) + self.assertNoHolidayName(name, holidays, range(2000, 2024)) + else: + self.assertNoHolidayName(name, holidays) + + def test_declaration_malacca_as_historical_city(self): + name = "Hari Perisytiharan Melaka Sebagai Bandaraya Bersejarah" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "04": + self.assertHolidayName( + name, holidays, (f"{year}-04-15" for year in range(2000, 2024)) + ) + self.assertNoHolidayName(name, holidays, range(2024, 2025)) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1988)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_governor_of_malacca(self): + name = "Hari Jadi Yang di-Pertua Negeri Melaka" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "04": + self.assertHolidayName( + name, holidays, (f"{year}-08-24" for year in range(2020, 2025)) + ) + self.assertHolidayName( + name, + holidays, + "2012-10-12", + "2013-10-11", + "2014-10-10", + "2015-10-09", + "2016-10-14", + "2017-10-13", + "2018-10-12", + "2019-10-11", + ) + self.assertHolidayName(name, holidays, range(2000, 2025)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_sultan_of_negeri_sembilan(self): + name = "Hari Keputeraan Yang di-Pertuan Besar Negeri Sembilan" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "05": + self.assertHolidayName( + name, holidays, (f"{year}-01-14" for year in range(2009, 2025)) + ) + self.assertNoHolidayName(name, holidays, range(2000, 2009)) + else: + self.assertNoHolidayName(name, holidays) + + def test_sultan_of_pahang_hol(self): + name = "Hari Hol Sultan Pahang" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "06": + self.assertHolidayName( + name, + holidays, + (f"{year}-05-22" for year in range(2020, 2025)), + (f"{year}-05-07" for year in range(2000, 2020)), + ) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1974)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_sultan_of_pahang(self): + name = "Hari Keputeraan Sultan Pahang" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "06": + self.assertHolidayName( + name, + holidays, + (f"{year}-07-30" for year in range(2019, 2025)), + (f"{year}-10-24" for year in range(2000, 2019)), + ) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1974)) + else: + self.assertNoHolidayName(name, holidays) + + def test_george_town_heritage_day(self): + name = "Hari Ulang Tahun Perisytiharan Tapak Warisan Dunia" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "07": + self.assertHolidayName( + name, holidays, (f"{year}-07-07" for year in range(2009, 2025)) + ) + self.assertNoHolidayName(name, holidays, range(2000, 2009)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_governor_of_penang(self): + name = "Hari Jadi Yang di-Pertua Negeri Pulau Pinang" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "07": + self.assertHolidayName( + name, + holidays, + "2012-07-14", + "2013-07-13", + "2014-07-12", + "2015-07-11", + "2016-07-09", + "2017-07-08", + "2018-07-14", + "2019-07-13", + "2020-07-11", + "2021-07-10", + "2022-07-09", + "2023-07-08", + "2024-07-13", + ) + self.assertHolidayName(name, holidays, range(2000, 2025)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_sultan_of_perak(self): + name = "Hari Keputeraan Sultan Perak" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "08": + self.assertHolidayName( + name, holidays, (f"{year}-11-27" for year in range(2000, 2018)) + ) + self.assertHolidayName( + name, + holidays, + "2018-11-02", + "2019-11-01", + "2020-11-06", + "2021-11-05", + "2022-11-04", + "2023-11-03", + "2024-11-01", + ) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_raja_of_perlis(self): + name = "Hari Ulang Tahun Keputeraan Raja Perlis" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "09": + self.assertHolidayName( + name, + holidays, + (f"{year}-05-17" for year in range(2000, 2018)), + (f"{year}-05-17" for year in range(2022, 2025)), + (f"{year}-07-17" for year in range(2018, 2022)), + ) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1999)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_sultan_of_selangor(self): + name = "Hari Keputeraan Sultan Selangor" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "10": + self.assertHolidayName( + name, holidays, (f"{year}-12-11" for year in range(2000, 2025)) + ) + else: + self.assertNoHolidayName(name, holidays) + + def test_installation_of_sultan_of_terengganu(self): + name = "Hari Ulang Tahun Pertabalan Sultan Terengganu" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "11": + self.assertHolidayName( + name, holidays, (f"{year}-03-04" for year in range(2000, 2025)) + ) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1999)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_sultan_of_terengganu(self): + name = "Hari Keputeraan Sultan Terengganu" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "11": + self.assertHolidayName( + name, holidays, (f"{year}-04-26" for year in range(2000, 2025)) + ) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1999)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_governor_of_sabah(self): + name = "Hari Jadi Yang di-Pertua Negeri Sabah" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "12": + self.assertHolidayName( + name, + holidays, + "2012-10-06", + "2013-10-05", + "2014-10-04", + "2015-10-03", + "2016-10-01", + "2017-10-07", + "2018-10-06", + "2019-10-05", + "2020-10-03", + "2021-10-02", + "2022-10-01", + "2023-10-07", + "2024-10-05", + ) + self.assertHolidayName(name, holidays, range(2000, 2025)) + else: + self.assertNoHolidayName(name, holidays) + + def test_christmas_eve(self): + name = "Christmas Eve" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "12": + self.assertHolidayName( + name, holidays, (f"{year}-12-24" for year in range(2019, 2025)) + ) + self.assertNoHolidayName(name, holidays, range(2000, 2019)) + else: + self.assertNoHolidayName(name, holidays) + + def test_dayak_festival_day(self): + name = "Perayaan Hari Gawai Dayak" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "13": + self.assertHolidayName( + name, + holidays, + (f"{year}-06-01" for year in range(2000, 2025)), + (f"{year}-06-02" for year in range(2000, 2025)), + ) + self.assertNoHolidayName(name, Malaysia(subdiv=subdiv, years=1964)) + else: + self.assertNoHolidayName(name, holidays) + + def test_birthday_of_governor_of_sarawak(self): + name = "Hari Jadi Yang di-Pertua Negeri Sarawak" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "13": + self.assertHolidayName( + name, + holidays, + "2012-10-13", + "2013-10-12", + "2014-10-11", + "2015-10-10", + "2016-10-08", + "2017-10-14", + "2018-10-13", + "2019-10-12", + "2020-10-10", + "2021-10-09", + "2022-10-08", + "2023-10-14", + "2024-10-12", + ) + self.assertHolidayName(name, holidays, range(2000, 2025)) + else: + self.assertNoHolidayName(name, holidays) + + def test_sarawak_independence_day(self): + name = "Hari Kemerdekaan Sarawak" + self.assertNoHolidayName(name) + for subdiv, holidays in self.subdiv_holidays.items(): + if subdiv == "13": + self.assertHolidayName( + name, holidays, (f"{year}-07-22" for year in range(2017, 2025)) + ) + self.assertNoHolidayName(name, holidays, range(2000, 2017)) + else: + self.assertNoHolidayName(name, holidays) def test_2024(self): self.assertHolidays( Malaysia(years=2024), - ("2024-02-10", "Chinese New Year"), - ("2024-04-11", "Second day of Hari Raya Puasa"), - ("2024-10-31", "Deepavali"), - ("2024-05-01", "Labour Day"), - ("2024-05-22", "Vesak Day"), - ("2024-12-25", "Christmas Day"), - ("2024-07-07", "Awal Muharram (Hijri New Year)"), - ("2024-02-11", "Chinese New Year Holiday"), - ("2024-06-03", "Birthday of SPB Yang di-Pertuan Agong"), - ("2024-08-31", "National Day"), + ("2024-02-10", "Tahun Baharu Cina"), + ("2024-02-11", "Tahun Baharu Cina (Hari Kedua)"), + ("2024-02-12", "Cuti Tahun Baharu Cina (Hari Kedua)"), ("2024-04-10", "Hari Raya Puasa"), - ("2024-06-17", "Hari Raya Haji"), - ("2024-09-16", "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)"), - ("2024-02-12", "Chinese New Year Holiday (in lieu)"), + ("2024-04-11", "Hari Raya Puasa (Hari Kedua)"), + ("2024-05-01", "Hari Pekerja"), + ("2024-05-22", "Hari Wesak"), + ("2024-06-03", "Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong"), + ("2024-06-17", "Hari Raya Qurban"), + ("2024-07-07", "Awal Muharam"), + ("2024-08-31", "Hari Kebangsaan"), + ("2024-09-16", "Hari Keputeraan Nabi Muhammad S.A.W.; Hari Malaysia"), + ("2024-12-25", "Hari Krismas"), + ) + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2023-01-22", "Tahun Baharu Cina"), + ("2023-01-23", "Tahun Baharu Cina (Hari Kedua)"), + ("2023-01-24", "Cuti Tahun Baharu Cina"), + ("2023-04-21", "Hari Raya Puasa (pergantian hari)"), + ("2023-04-22", "Hari Raya Puasa"), + ("2023-04-23", "Hari Raya Puasa (Hari Kedua)"), + ("2023-04-24", "Cuti Hari Raya Puasa (Hari Kedua)"), + ("2023-05-01", "Hari Pekerja"), + ("2023-05-04", "Hari Wesak"), + ("2023-06-05", "Hari Keputeraan Rasmi Seri Paduka Baginda Yang di-Pertuan Agong"), + ("2023-06-29", "Hari Raya Qurban"), + ("2023-07-19", "Awal Muharam"), + ("2023-08-31", "Hari Kebangsaan"), + ("2023-09-16", "Hari Malaysia"), + ("2023-09-28", "Hari Keputeraan Nabi Muhammad S.A.W."), + ("2023-12-25", "Hari Krismas"), + ) + + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2023-01-22", "Chinese New Year"), + ("2023-01-23", "Chinese New Year (Second Day)"), + ("2023-01-24", "Chinese New Year (observed)"), + ("2023-04-21", "Eid al-Fitr (additional holiday)"), + ("2023-04-22", "Eid al-Fitr"), + ("2023-04-23", "Eid al-Fitr (Second Day)"), + ("2023-04-24", "Eid al-Fitr (Second Day) (observed)"), + ("2023-05-01", "Labor Day"), + ("2023-05-04", "Vesak Day"), + ("2023-06-05", "Birthday of HM Yang di-Pertuan Agong"), + ("2023-06-29", "Eid al-Adha"), + ("2023-07-19", "Islamic New Year"), + ("2023-08-31", "National Day"), + ("2023-09-16", "Malaysia Day"), + ("2023-09-28", "Prophet Muhammad's Birthday"), + ("2023-12-25", "Christmas Day"), ) From 56468c7e6a8dec8f93981c024f7906c80b2aebff Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Mon, 20 May 2024 11:14:12 -0700 Subject: [PATCH 10/10] Finalize v0.49 --- CHANGES | 13 ++ holidays/locale/en_US/LC_MESSAGES/MY.po | 2 +- holidays/locale/ms_MY/LC_MESSAGES/MY.po | 8 +- snapshots/countries/MY_06.json | 174 ++++++++++++------------ 4 files changed, 105 insertions(+), 92 deletions(-) diff --git a/CHANGES b/CHANGES index f335e2b69..fb68c225d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,16 @@ +Version 0.49 +============ + +Released May 20, 2024 + +- Refactor Laos holidays (#1797 by @KJhellico) +- Add IFEU holidays (#1792 by @benjfield, @arkid15r) +- Update Hong Kong holidays (#1767 by @KJhellico, @arkid15r) +- Update Malaysia holidays (#1791 by @KJhellico) +- Update observed rules: add holiday removal support (#1796 by @arkid15r) +- Address numpy int argument conversion issue (#1782 by @arkid15r) +- Replace `datetime::timedelta` with custom function (#1785 by @KJhellico) + Version 0.48 ============ diff --git a/holidays/locale/en_US/LC_MESSAGES/MY.po b/holidays/locale/en_US/LC_MESSAGES/MY.po index f25cb4a1a..f98302d6c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MY.po +++ b/holidays/locale/en_US/LC_MESSAGES/MY.po @@ -31,7 +31,7 @@ msgstr "" msgid "%s (anggaran)" msgstr "%s (estimated)" -#. %s (observed). +#. %s (in lieu). #, c-format msgid "Cuti %s" msgstr "%s (observed)" diff --git a/holidays/locale/ms_MY/LC_MESSAGES/MY.po b/holidays/locale/ms_MY/LC_MESSAGES/MY.po index ec06d7467..2504d37a5 100644 --- a/holidays/locale/ms_MY/LC_MESSAGES/MY.po +++ b/holidays/locale/ms_MY/LC_MESSAGES/MY.po @@ -31,7 +31,7 @@ msgstr "" msgid "%s (anggaran)" msgstr "" -#. %s (observed). +#. %s (in lieu). #, c-format msgid "Cuti %s" msgstr "" @@ -53,7 +53,7 @@ msgstr "" msgid "Hari Wesak" msgstr "" -#. Labour Day. +#. Labor Day. msgid "Hari Pekerja" msgstr "" @@ -117,7 +117,7 @@ msgstr "" msgid "Hari Keputeraan Sultan Kedah" msgstr "" -#. Isra and Miraj. +#. Isra' and Mi'raj. msgid "Israk dan Mikraj" msgstr "" @@ -169,7 +169,7 @@ msgstr "" msgid "Hari Keputeraan Sultan Pahang" msgstr "" -#. Birthday of The Raja of Perlis. +#. Birthday of the Raja of Perlis. msgid "Hari Ulang Tahun Keputeraan Raja Perlis" msgstr "" diff --git a/snapshots/countries/MY_06.json b/snapshots/countries/MY_06.json index eebbe2034..4dde8e251 100644 --- a/snapshots/countries/MY_06.json +++ b/snapshots/countries/MY_06.json @@ -332,7 +332,7 @@ "1975-02-12": "Chinese New Year (Second Day) (estimated)", "1975-03-24": "Prophet Muhammad's Birthday (estimated)", "1975-05-01": "Labor Day", - "1975-05-07": "Hari Hol Sultan Pahang", + "1975-05-07": "The Sultan of Pahang Hol", "1975-05-25": "Vesak Day (estimated)", "1975-05-26": "Vesak Day (observed, estimated)", "1975-06-07": "Birthday of HM Yang di-Pertuan Agong", @@ -351,7 +351,7 @@ "1976-02-02": "Chinese New Year (Second Day) (observed, estimated)", "1976-03-12": "Prophet Muhammad's Birthday (estimated)", "1976-05-01": "Labor Day", - "1976-05-07": "Hari Hol Sultan Pahang", + "1976-05-07": "The Sultan of Pahang Hol", "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of HM Yang di-Pertuan Agong", "1976-08-31": "National Day", @@ -370,7 +370,7 @@ "1977-05-01": "Labor Day", "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labor Day (observed)", - "1977-05-07": "Hari Hol Sultan Pahang", + "1977-05-07": "The Sultan of Pahang Hol", "1977-06-04": "Birthday of HM Yang di-Pertuan Agong", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", "1977-09-14": "Eid al-Fitr (estimated)", @@ -387,8 +387,8 @@ "1978-02-19": "Prophet Muhammad's Birthday (estimated)", "1978-02-20": "Prophet Muhammad's Birthday (observed, estimated)", "1978-05-01": "Labor Day", - "1978-05-07": "Hari Hol Sultan Pahang", - "1978-05-08": "Hari Hol Sultan Pahang (observed)", + "1978-05-07": "The Sultan of Pahang Hol", + "1978-05-08": "The Sultan of Pahang Hol (observed)", "1978-05-21": "Vesak Day (estimated)", "1978-05-22": "Vesak Day (observed, estimated)", "1978-06-03": "Birthday of HM Yang di-Pertuan Agong", @@ -407,7 +407,7 @@ "1979-01-30": "Chinese New Year (observed, estimated)", "1979-02-09": "Prophet Muhammad's Birthday (estimated)", "1979-05-01": "Labor Day", - "1979-05-07": "Hari Hol Sultan Pahang", + "1979-05-07": "The Sultan of Pahang Hol", "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of HM Yang di-Pertuan Agong", "1979-08-10": "Nuzul Al-Quran Day (estimated)", @@ -425,7 +425,7 @@ "1980-02-17": "Chinese New Year (Second Day) (estimated)", "1980-02-18": "Chinese New Year (Second Day) (observed, estimated)", "1980-05-01": "Labor Day", - "1980-05-07": "Hari Hol Sultan Pahang", + "1980-05-07": "The Sultan of Pahang Hol", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of HM Yang di-Pertuan Agong", "1980-07-29": "Nuzul Al-Quran Day (estimated)", @@ -444,7 +444,7 @@ "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year (Second Day) (estimated)", "1981-05-01": "Labor Day", - "1981-05-07": "Hari Hol Sultan Pahang", + "1981-05-07": "The Sultan of Pahang Hol", "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of HM Yang di-Pertuan Agong", "1981-07-18": "Nuzul Al-Quran Day (estimated)", @@ -461,7 +461,7 @@ "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year (Second Day) (estimated)", "1982-05-01": "Labor Day", - "1982-05-07": "Hari Hol Sultan Pahang", + "1982-05-07": "The Sultan of Pahang Hol", "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of HM Yang di-Pertuan Agong", "1982-07-08": "Nuzul Al-Quran Day (estimated)", @@ -480,7 +480,7 @@ "1983-02-15": "Chinese New Year (observed, estimated)", "1983-05-01": "Labor Day", "1983-05-02": "Labor Day (observed)", - "1983-05-07": "Hari Hol Sultan Pahang", + "1983-05-07": "The Sultan of Pahang Hol", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of HM Yang di-Pertuan Agong", "1983-06-28": "Nuzul Al-Quran Day (estimated)", @@ -498,7 +498,7 @@ "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year (Second Day) (estimated)", "1984-05-01": "Labor Day", - "1984-05-07": "Hari Hol Sultan Pahang", + "1984-05-07": "The Sultan of Pahang Hol", "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of HM Yang di-Pertuan Agong", "1984-06-16": "Nuzul Al-Quran Day (estimated)", @@ -516,7 +516,7 @@ "1985-02-21": "Chinese New Year (Second Day) (estimated)", "1985-05-01": "Labor Day", "1985-05-04": "Vesak Day (estimated)", - "1985-05-07": "Hari Hol Sultan Pahang", + "1985-05-07": "The Sultan of Pahang Hol", "1985-06-01": "Birthday of HM Yang di-Pertuan Agong", "1985-06-05": "Nuzul Al-Quran Day (estimated)", "1985-06-19": "Eid al-Fitr (estimated)", @@ -534,7 +534,7 @@ "1986-02-10": "Chinese New Year (Second Day) (estimated)", "1986-02-11": "Chinese New Year (observed, estimated)", "1986-05-01": "Labor Day", - "1986-05-07": "Hari Hol Sultan Pahang", + "1986-05-07": "The Sultan of Pahang Hol", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", "1986-05-26": "Nuzul Al-Quran Day (observed, estimated)", @@ -553,7 +553,7 @@ "1987-01-29": "Chinese New Year (estimated)", "1987-01-30": "Chinese New Year (Second Day) (estimated)", "1987-05-01": "Labor Day", - "1987-05-07": "Hari Hol Sultan Pahang", + "1987-05-07": "The Sultan of Pahang Hol", "1987-05-12": "Vesak Day (estimated)", "1987-05-15": "Nuzul Al-Quran Day (estimated)", "1987-05-28": "Eid al-Fitr (estimated)", @@ -571,7 +571,7 @@ "1988-05-01": "Labor Day", "1988-05-02": "Labor Day (observed)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", - "1988-05-07": "Hari Hol Sultan Pahang", + "1988-05-07": "The Sultan of Pahang Hol", "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-17": "Eid al-Fitr (Second Day) (estimated)", "1988-05-30": "Vesak Day (estimated)", @@ -591,8 +591,8 @@ "1989-04-24": "Nuzul Al-Quran Day (observed, estimated)", "1989-05-01": "Labor Day", "1989-05-06": "Eid al-Fitr (estimated)", - "1989-05-07": "Eid al-Fitr (Second Day) (estimated); Hari Hol Sultan Pahang", - "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated); Hari Hol Sultan Pahang (observed)", + "1989-05-07": "Eid al-Fitr (Second Day) (estimated); The Sultan of Pahang Hol", + "1989-05-08": "Eid al-Fitr (Second Day) (observed, estimated); The Sultan of Pahang Hol (observed)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of HM Yang di-Pertuan Agong", "1989-07-13": "Eid al-Adha (estimated)", @@ -609,7 +609,7 @@ "1990-04-26": "Eid al-Fitr (estimated)", "1990-04-27": "Eid al-Fitr (Second Day) (estimated)", "1990-05-01": "Labor Day", - "1990-05-07": "Hari Hol Sultan Pahang", + "1990-05-07": "The Sultan of Pahang Hol", "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of HM Yang di-Pertuan Agong", "1990-07-02": "Eid al-Adha (estimated)", @@ -625,7 +625,7 @@ "1991-04-15": "Eid al-Fitr (estimated)", "1991-04-16": "Eid al-Fitr (Second Day) (estimated)", "1991-05-01": "Labor Day", - "1991-05-07": "Hari Hol Sultan Pahang", + "1991-05-07": "The Sultan of Pahang Hol", "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of HM Yang di-Pertuan Agong", "1991-06-22": "Eid al-Adha (estimated)", @@ -642,7 +642,7 @@ "1992-04-05": "Eid al-Fitr (Second Day) (estimated)", "1992-04-06": "Eid al-Fitr (Second Day) (observed, estimated)", "1992-05-01": "Labor Day", - "1992-05-07": "Hari Hol Sultan Pahang", + "1992-05-07": "The Sultan of Pahang Hol", "1992-05-17": "Vesak Day (estimated)", "1992-05-18": "Vesak Day (observed, estimated)", "1992-06-06": "Birthday of HM Yang di-Pertuan Agong", @@ -660,7 +660,7 @@ "1993-03-25": "Eid al-Fitr (Second Day) (estimated)", "1993-05-01": "Labor Day", "1993-05-06": "Vesak Day (estimated)", - "1993-05-07": "Hari Hol Sultan Pahang", + "1993-05-07": "The Sultan of Pahang Hol", "1993-05-31": "Eid al-Adha (estimated)", "1993-06-05": "Birthday of HM Yang di-Pertuan Agong", "1993-08-29": "Prophet Muhammad's Birthday (estimated)", @@ -680,7 +680,7 @@ "1994-03-15": "Eid al-Fitr (observed, estimated)", "1994-05-01": "Labor Day", "1994-05-02": "Labor Day (observed)", - "1994-05-07": "Hari Hol Sultan Pahang", + "1994-05-07": "The Sultan of Pahang Hol", "1994-05-20": "Eid al-Adha (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of HM Yang di-Pertuan Agong", @@ -698,8 +698,8 @@ "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-03": "Eid al-Fitr (Second Day) (estimated)", "1995-05-01": "Labor Day", - "1995-05-07": "Hari Hol Sultan Pahang", - "1995-05-08": "Hari Hol Sultan Pahang (observed)", + "1995-05-07": "The Sultan of Pahang Hol", + "1995-05-08": "The Sultan of Pahang Hol (observed)", "1995-05-09": "Eid al-Adha (estimated)", "1995-05-14": "Vesak Day (estimated)", "1995-05-15": "Vesak Day (observed, estimated)", @@ -717,7 +717,7 @@ "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", "1996-05-02": "Vesak Day (estimated)", - "1996-05-07": "Hari Hol Sultan Pahang", + "1996-05-07": "The Sultan of Pahang Hol", "1996-05-18": "Islamic New Year (estimated)", "1996-06-01": "Birthday of HM Yang di-Pertuan Agong", "1996-07-27": "Prophet Muhammad's Birthday (estimated)", @@ -734,7 +734,7 @@ "1997-02-10": "Eid al-Fitr (Second Day) (observed, estimated)", "1997-04-17": "Eid al-Adha (estimated)", "1997-05-01": "Labor Day", - "1997-05-07": "Hari Hol Sultan Pahang; Islamic New Year (estimated)", + "1997-05-07": "Islamic New Year (estimated); The Sultan of Pahang Hol", "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of HM Yang di-Pertuan Agong", "1997-07-16": "Prophet Muhammad's Birthday (estimated)", @@ -751,7 +751,7 @@ "1998-04-07": "Eid al-Adha (estimated)", "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", - "1998-05-07": "Hari Hol Sultan Pahang", + "1998-05-07": "The Sultan of Pahang Hol", "1998-05-10": "Vesak Day (estimated)", "1998-05-11": "Vesak Day (observed, estimated)", "1998-06-06": "Birthday of HM Yang di-Pertuan Agong", @@ -769,7 +769,7 @@ "1999-03-27": "Eid al-Adha (estimated)", "1999-04-17": "Islamic New Year (estimated)", "1999-05-01": "Labor Day", - "1999-05-07": "Hari Hol Sultan Pahang", + "1999-05-07": "The Sultan of Pahang Hol", "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of HM Yang di-Pertuan Agong", "1999-06-26": "Prophet Muhammad's Birthday (estimated)", @@ -789,8 +789,8 @@ "2000-03-16": "Eid al-Adha (estimated)", "2000-04-06": "Islamic New Year (estimated)", "2000-05-01": "Labor Day", - "2000-05-07": "Hari Hol Sultan Pahang", - "2000-05-08": "Hari Hol Sultan Pahang (observed)", + "2000-05-07": "The Sultan of Pahang Hol", + "2000-05-08": "The Sultan of Pahang Hol (observed)", "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of HM Yang di-Pertuan Agong", "2000-06-14": "Prophet Muhammad's Birthday (estimated)", @@ -807,7 +807,7 @@ "2001-03-06": "Eid al-Adha", "2001-03-26": "Islamic New Year", "2001-05-01": "Labor Day", - "2001-05-07": "Hari Hol Sultan Pahang; Vesak Day", + "2001-05-07": "The Sultan of Pahang Hol; Vesak Day", "2001-06-02": "Birthday of HM Yang di-Pertuan Agong", "2001-06-04": "Prophet Muhammad's Birthday", "2001-08-31": "National Day", @@ -823,7 +823,7 @@ "2002-02-23": "Eid al-Adha", "2002-03-15": "Islamic New Year", "2002-05-01": "Labor Day", - "2002-05-07": "Hari Hol Sultan Pahang", + "2002-05-07": "The Sultan of Pahang Hol", "2002-05-24": "Prophet Muhammad's Birthday", "2002-05-27": "Vesak Day", "2002-06-01": "Birthday of HM Yang di-Pertuan Agong", @@ -842,7 +842,7 @@ "2003-02-12": "Eid al-Adha", "2003-03-05": "Islamic New Year", "2003-05-01": "Labor Day", - "2003-05-07": "Hari Hol Sultan Pahang", + "2003-05-07": "The Sultan of Pahang Hol", "2003-05-14": "Prophet Muhammad's Birthday", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of HM Yang di-Pertuan Agong", @@ -863,7 +863,7 @@ "2004-05-02": "Prophet Muhammad's Birthday", "2004-05-03": "Vesak Day", "2004-05-04": "Prophet Muhammad's Birthday (observed)", - "2004-05-07": "Hari Hol Sultan Pahang", + "2004-05-07": "The Sultan of Pahang Hol", "2004-06-05": "Birthday of HM Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-10-24": "Birthday of the Sultan of Pahang", @@ -881,7 +881,7 @@ "2005-04-21": "Prophet Muhammad's Birthday", "2005-05-01": "Labor Day", "2005-05-02": "Labor Day (observed)", - "2005-05-07": "Hari Hol Sultan Pahang", + "2005-05-07": "The Sultan of Pahang Hol", "2005-05-22": "Vesak Day", "2005-05-23": "Vesak Day (observed)", "2005-06-04": "Birthday of HM Yang di-Pertuan Agong", @@ -902,8 +902,8 @@ "2006-02-01": "Chinese New Year (observed)", "2006-04-11": "Prophet Muhammad's Birthday", "2006-05-01": "Labor Day", - "2006-05-07": "Hari Hol Sultan Pahang", - "2006-05-08": "Hari Hol Sultan Pahang (observed)", + "2006-05-07": "The Sultan of Pahang Hol", + "2006-05-08": "The Sultan of Pahang Hol (observed)", "2006-05-12": "Vesak Day", "2006-06-03": "Birthday of HM Yang di-Pertuan Agong", "2006-08-31": "National Day", @@ -921,7 +921,7 @@ "2007-02-20": "Chinese New Year (observed)", "2007-03-31": "Prophet Muhammad's Birthday", "2007-05-01": "Labor Day; Vesak Day", - "2007-05-07": "Hari Hol Sultan Pahang", + "2007-05-07": "The Sultan of Pahang Hol", "2007-06-02": "Birthday of HM Yang di-Pertuan Agong", "2007-08-31": "National Day", "2007-09-29": "Nuzul Al-Quran Day", @@ -938,7 +938,7 @@ "2008-02-08": "Chinese New Year (Second Day)", "2008-03-20": "Prophet Muhammad's Birthday", "2008-05-01": "Labor Day", - "2008-05-07": "Hari Hol Sultan Pahang", + "2008-05-07": "The Sultan of Pahang Hol", "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of HM Yang di-Pertuan Agong", "2008-08-31": "National Day", @@ -956,7 +956,7 @@ "2009-01-27": "Chinese New Year (Second Day)", "2009-03-09": "Prophet Muhammad's Birthday", "2009-05-01": "Labor Day", - "2009-05-07": "Hari Hol Sultan Pahang", + "2009-05-07": "The Sultan of Pahang Hol", "2009-05-09": "Vesak Day", "2009-06-06": "Birthday of HM Yang di-Pertuan Agong", "2009-08-31": "National Day", @@ -975,7 +975,7 @@ "2010-02-16": "Chinese New Year (observed)", "2010-02-26": "Prophet Muhammad's Birthday", "2010-05-01": "Labor Day", - "2010-05-07": "Hari Hol Sultan Pahang", + "2010-05-07": "The Sultan of Pahang Hol", "2010-05-28": "Vesak Day", "2010-06-05": "Birthday of HM Yang di-Pertuan Agong", "2010-08-27": "Nuzul Al-Quran Day", @@ -995,7 +995,7 @@ "2011-02-16": "Prophet Muhammad's Birthday", "2011-05-01": "Labor Day", "2011-05-02": "Labor Day (observed)", - "2011-05-07": "Hari Hol Sultan Pahang", + "2011-05-07": "The Sultan of Pahang Hol", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of HM Yang di-Pertuan Agong", "2011-08-17": "Nuzul Al-Quran Day", @@ -1016,7 +1016,7 @@ "2012-02-06": "Prophet Muhammad's Birthday (observed)", "2012-05-01": "Labor Day", "2012-05-05": "Vesak Day", - "2012-05-07": "Hari Hol Sultan Pahang", + "2012-05-07": "The Sultan of Pahang Hol", "2012-06-02": "Birthday of HM Yang di-Pertuan Agong", "2012-08-05": "Nuzul Al-Quran Day", "2012-08-06": "Nuzul Al-Quran Day (observed)", @@ -1037,7 +1037,7 @@ "2013-02-11": "Chinese New Year (Second Day)", "2013-02-12": "Chinese New Year (observed)", "2013-05-01": "Labor Day", - "2013-05-07": "Hari Hol Sultan Pahang", + "2013-05-07": "The Sultan of Pahang Hol", "2013-05-24": "Vesak Day", "2013-06-01": "Birthday of HM Yang di-Pertuan Agong", "2013-07-25": "Nuzul Al-Quran Day", @@ -1055,7 +1055,7 @@ "2014-01-31": "Chinese New Year", "2014-02-01": "Chinese New Year (Second Day)", "2014-05-01": "Labor Day", - "2014-05-07": "Hari Hol Sultan Pahang", + "2014-05-07": "The Sultan of Pahang Hol", "2014-05-13": "Vesak Day", "2014-06-07": "Birthday of HM Yang di-Pertuan Agong", "2014-07-15": "Nuzul Al-Quran Day", @@ -1077,7 +1077,7 @@ "2015-05-01": "Labor Day", "2015-05-03": "Vesak Day", "2015-05-04": "Vesak Day (observed)", - "2015-05-07": "Hari Hol Sultan Pahang", + "2015-05-07": "The Sultan of Pahang Hol", "2015-06-06": "Birthday of HM Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", "2015-07-17": "Eid al-Fitr", @@ -1095,7 +1095,7 @@ "2016-02-09": "Chinese New Year (Second Day)", "2016-05-01": "Labor Day", "2016-05-02": "Labor Day (observed)", - "2016-05-07": "Hari Hol Sultan Pahang", + "2016-05-07": "The Sultan of Pahang Hol", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of HM Yang di-Pertuan Agong", "2016-06-22": "Nuzul Al-Quran Day", @@ -1117,8 +1117,8 @@ "2017-01-30": "Chinese New Year (Second Day) (observed)", "2017-04-24": "Day of Installation of the 15th Yang di-Pertuan Agong", "2017-05-01": "Labor Day", - "2017-05-07": "Hari Hol Sultan Pahang", - "2017-05-08": "Hari Hol Sultan Pahang (observed)", + "2017-05-07": "The Sultan of Pahang Hol", + "2017-05-08": "The Sultan of Pahang Hol (observed)", "2017-05-10": "Vesak Day", "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Eid al-Fitr", @@ -1138,7 +1138,7 @@ "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year (Second Day)", "2018-05-01": "Labor Day", - "2018-05-07": "Hari Hol Sultan Pahang", + "2018-05-07": "The Sultan of Pahang Hol", "2018-05-09": "General election additional holiday", "2018-05-29": "Vesak Day", "2018-06-02": "Nuzul Al-Quran Day", @@ -1159,7 +1159,7 @@ "2019-02-05": "Chinese New Year", "2019-02-06": "Chinese New Year (Second Day)", "2019-05-01": "Labor Day", - "2019-05-07": "Hari Hol Sultan Pahang", + "2019-05-07": "The Sultan of Pahang Hol", "2019-05-19": "Vesak Day", "2019-05-20": "Vesak Day (observed)", "2019-05-22": "Nuzul Al-Quran Day", @@ -1184,7 +1184,7 @@ "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", "2020-05-11": "Nuzul Al-Quran Day (observed)", - "2020-05-22": "Hari Hol Sultan Pahang", + "2020-05-22": "The Sultan of Pahang Hol", "2020-05-24": "Eid al-Fitr", "2020-05-25": "Eid al-Fitr (Second Day)", "2020-05-26": "Eid al-Fitr (observed)", @@ -1204,7 +1204,7 @@ "2021-05-01": "Labor Day", "2021-05-13": "Eid al-Fitr", "2021-05-14": "Eid al-Fitr (Second Day)", - "2021-05-22": "Hari Hol Sultan Pahang", + "2021-05-22": "The Sultan of Pahang Hol", "2021-05-26": "Vesak Day", "2021-06-07": "Birthday of HM Yang di-Pertuan Agong", "2021-07-20": "Eid al-Adha", @@ -1225,8 +1225,8 @@ "2022-05-04": "Labor Day (observed)", "2022-05-15": "Vesak Day", "2022-05-16": "Vesak Day (observed)", - "2022-05-22": "Hari Hol Sultan Pahang", - "2022-05-23": "Hari Hol Sultan Pahang (observed)", + "2022-05-22": "The Sultan of Pahang Hol", + "2022-05-23": "The Sultan of Pahang Hol (observed)", "2022-06-06": "Birthday of HM Yang di-Pertuan Agong", "2022-07-10": "Eid al-Adha", "2022-07-11": "Eid al-Adha (observed)", @@ -1252,7 +1252,7 @@ "2023-04-24": "Eid al-Fitr (Second Day) (observed)", "2023-05-01": "Labor Day", "2023-05-04": "Vesak Day", - "2023-05-22": "Hari Hol Sultan Pahang", + "2023-05-22": "The Sultan of Pahang Hol", "2023-06-05": "Birthday of HM Yang di-Pertuan Agong", "2023-06-29": "Eid al-Adha", "2023-07-19": "Islamic New Year", @@ -1272,7 +1272,7 @@ "2024-04-10": "Eid al-Fitr", "2024-04-11": "Eid al-Fitr (Second Day)", "2024-05-01": "Labor Day", - "2024-05-22": "Hari Hol Sultan Pahang; Vesak Day", + "2024-05-22": "The Sultan of Pahang Hol; Vesak Day", "2024-06-03": "Birthday of HM Yang di-Pertuan Agong", "2024-06-17": "Eid al-Adha", "2024-07-07": "Islamic New Year", @@ -1291,7 +1291,7 @@ "2025-05-01": "Labor Day", "2025-05-11": "Vesak Day (estimated)", "2025-05-12": "Vesak Day (observed, estimated)", - "2025-05-22": "Hari Hol Sultan Pahang", + "2025-05-22": "The Sultan of Pahang Hol", "2025-06-02": "Birthday of HM Yang di-Pertuan Agong", "2025-06-06": "Eid al-Adha (estimated)", "2025-06-26": "Islamic New Year (estimated)", @@ -1309,7 +1309,7 @@ "2026-03-20": "Eid al-Fitr (estimated)", "2026-03-21": "Eid al-Fitr (Second Day) (estimated)", "2026-05-01": "Labor Day; Vesak Day (estimated)", - "2026-05-22": "Hari Hol Sultan Pahang", + "2026-05-22": "The Sultan of Pahang Hol", "2026-05-27": "Eid al-Adha (estimated)", "2026-06-01": "Birthday of HM Yang di-Pertuan Agong", "2026-06-16": "Islamic New Year (estimated)", @@ -1330,7 +1330,7 @@ "2027-05-16": "Eid al-Adha (estimated)", "2027-05-17": "Eid al-Adha (observed, estimated)", "2027-05-20": "Vesak Day (estimated)", - "2027-05-22": "Hari Hol Sultan Pahang", + "2027-05-22": "The Sultan of Pahang Hol", "2027-06-06": "Islamic New Year (estimated)", "2027-06-07": "Birthday of HM Yang di-Pertuan Agong", "2027-07-30": "Birthday of the Sultan of Pahang", @@ -1350,7 +1350,7 @@ "2028-05-01": "Labor Day", "2028-05-05": "Eid al-Adha (estimated)", "2028-05-09": "Vesak Day (estimated)", - "2028-05-22": "Hari Hol Sultan Pahang", + "2028-05-22": "The Sultan of Pahang Hol", "2028-05-25": "Islamic New Year (estimated)", "2028-06-05": "Birthday of HM Yang di-Pertuan Agong", "2028-07-30": "Birthday of the Sultan of Pahang", @@ -1368,7 +1368,7 @@ "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-05-14": "Islamic New Year (estimated)", - "2029-05-22": "Hari Hol Sultan Pahang", + "2029-05-22": "The Sultan of Pahang Hol", "2029-05-27": "Vesak Day (estimated)", "2029-05-28": "Vesak Day (observed, estimated)", "2029-06-04": "Birthday of HM Yang di-Pertuan Agong", @@ -1390,7 +1390,7 @@ "2030-05-01": "Labor Day", "2030-05-03": "Islamic New Year (estimated)", "2030-05-16": "Vesak Day (estimated)", - "2030-05-22": "Hari Hol Sultan Pahang", + "2030-05-22": "The Sultan of Pahang Hol", "2030-06-03": "Birthday of HM Yang di-Pertuan Agong", "2030-07-13": "Prophet Muhammad's Birthday (estimated)", "2030-07-30": "Birthday of the Sultan of Pahang", @@ -1407,7 +1407,7 @@ "2031-04-23": "Islamic New Year (estimated)", "2031-05-01": "Labor Day", "2031-05-06": "Vesak Day (estimated)", - "2031-05-22": "Hari Hol Sultan Pahang", + "2031-05-22": "The Sultan of Pahang Hol", "2031-06-02": "Birthday of HM Yang di-Pertuan Agong", "2031-07-02": "Prophet Muhammad's Birthday (estimated)", "2031-07-30": "Birthday of the Sultan of Pahang", @@ -1425,7 +1425,7 @@ "2032-03-22": "Eid al-Adha (estimated)", "2032-04-11": "Islamic New Year (estimated)", "2032-05-01": "Labor Day", - "2032-05-22": "Hari Hol Sultan Pahang", + "2032-05-22": "The Sultan of Pahang Hol", "2032-05-23": "Vesak Day (estimated)", "2032-05-24": "Vesak Day (observed, estimated)", "2032-06-07": "Birthday of HM Yang di-Pertuan Agong", @@ -1448,8 +1448,8 @@ "2033-05-01": "Labor Day", "2033-05-02": "Labor Day (observed)", "2033-05-13": "Vesak Day (estimated)", - "2033-05-22": "Hari Hol Sultan Pahang", - "2033-05-23": "Hari Hol Sultan Pahang (observed)", + "2033-05-22": "The Sultan of Pahang Hol", + "2033-05-23": "The Sultan of Pahang Hol (observed)", "2033-06-06": "Birthday of HM Yang di-Pertuan Agong", "2033-06-09": "Prophet Muhammad's Birthday (estimated)", "2033-07-30": "Birthday of the Sultan of Pahang", @@ -1470,7 +1470,7 @@ "2034-03-21": "Islamic New Year (estimated)", "2034-05-01": "Labor Day", "2034-05-03": "Vesak Day (estimated)", - "2034-05-22": "Hari Hol Sultan Pahang", + "2034-05-22": "The Sultan of Pahang Hol", "2034-05-30": "Prophet Muhammad's Birthday (estimated)", "2034-06-05": "Birthday of HM Yang di-Pertuan Agong", "2034-07-30": "Birthday of the Sultan of Pahang", @@ -1491,7 +1491,7 @@ "2035-05-01": "Labor Day", "2035-05-20": "Prophet Muhammad's Birthday (estimated)", "2035-05-21": "Prophet Muhammad's Birthday (observed, estimated)", - "2035-05-22": "Hari Hol Sultan Pahang; Vesak Day (estimated)", + "2035-05-22": "The Sultan of Pahang Hol; Vesak Day (estimated)", "2035-06-04": "Birthday of HM Yang di-Pertuan Agong", "2035-07-30": "Birthday of the Sultan of Pahang", "2035-08-31": "National Day", @@ -1511,7 +1511,7 @@ "2036-05-01": "Labor Day", "2036-05-08": "Prophet Muhammad's Birthday (estimated)", "2036-05-10": "Vesak Day (estimated)", - "2036-05-22": "Hari Hol Sultan Pahang", + "2036-05-22": "The Sultan of Pahang Hol", "2036-06-02": "Birthday of HM Yang di-Pertuan Agong", "2036-07-30": "Birthday of the Sultan of Pahang", "2036-08-31": "National Day", @@ -1530,7 +1530,7 @@ "2037-02-17": "Chinese New Year (observed, estimated)", "2037-04-28": "Prophet Muhammad's Birthday (estimated)", "2037-05-01": "Labor Day", - "2037-05-22": "Hari Hol Sultan Pahang", + "2037-05-22": "The Sultan of Pahang Hol", "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of HM Yang di-Pertuan Agong", "2037-07-30": "Birthday of the Sultan of Pahang", @@ -1549,7 +1549,7 @@ "2038-04-17": "Prophet Muhammad's Birthday (estimated)", "2038-05-01": "Labor Day", "2038-05-18": "Vesak Day (estimated)", - "2038-05-22": "Hari Hol Sultan Pahang", + "2038-05-22": "The Sultan of Pahang Hol", "2038-06-07": "Birthday of HM Yang di-Pertuan Agong", "2038-07-30": "Birthday of the Sultan of Pahang", "2038-08-31": "National Day", @@ -1568,8 +1568,8 @@ "2039-05-01": "Labor Day", "2039-05-02": "Labor Day (observed)", "2039-05-07": "Vesak Day (estimated)", - "2039-05-22": "Hari Hol Sultan Pahang", - "2039-05-23": "Hari Hol Sultan Pahang (observed)", + "2039-05-22": "The Sultan of Pahang Hol", + "2039-05-23": "The Sultan of Pahang Hol (observed)", "2039-06-06": "Birthday of HM Yang di-Pertuan Agong", "2039-07-30": "Birthday of the Sultan of Pahang", "2039-08-31": "National Day", @@ -1590,7 +1590,7 @@ "2040-03-25": "Prophet Muhammad's Birthday (estimated)", "2040-03-26": "Prophet Muhammad's Birthday (observed, estimated)", "2040-05-01": "Labor Day", - "2040-05-22": "Hari Hol Sultan Pahang", + "2040-05-22": "The Sultan of Pahang Hol", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of HM Yang di-Pertuan Agong", "2040-07-30": "Birthday of the Sultan of Pahang", @@ -1612,7 +1612,7 @@ "2041-03-15": "Prophet Muhammad's Birthday (estimated)", "2041-05-01": "Labor Day", "2041-05-14": "Vesak Day (estimated)", - "2041-05-22": "Hari Hol Sultan Pahang", + "2041-05-22": "The Sultan of Pahang Hol", "2041-06-03": "Birthday of HM Yang di-Pertuan Agong", "2041-07-30": "Birthday of the Sultan of Pahang", "2041-08-31": "National Day", @@ -1631,7 +1631,7 @@ "2042-05-01": "Labor Day", "2042-05-04": "Vesak Day (estimated)", "2042-05-05": "Vesak Day (observed, estimated)", - "2042-05-22": "Hari Hol Sultan Pahang", + "2042-05-22": "The Sultan of Pahang Hol", "2042-06-02": "Birthday of HM Yang di-Pertuan Agong", "2042-07-30": "Birthday of the Sultan of Pahang", "2042-08-31": "National Day", @@ -1650,7 +1650,7 @@ "2043-02-22": "Prophet Muhammad's Birthday (estimated)", "2043-02-23": "Prophet Muhammad's Birthday (observed, estimated)", "2043-05-01": "Labor Day", - "2043-05-22": "Hari Hol Sultan Pahang", + "2043-05-22": "The Sultan of Pahang Hol", "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of HM Yang di-Pertuan Agong", "2043-07-30": "Birthday of the Sultan of Pahang", @@ -1671,8 +1671,8 @@ "2044-05-01": "Labor Day", "2044-05-02": "Labor Day (observed)", "2044-05-12": "Vesak Day (estimated)", - "2044-05-22": "Hari Hol Sultan Pahang", - "2044-05-23": "Hari Hol Sultan Pahang (observed)", + "2044-05-22": "The Sultan of Pahang Hol", + "2044-05-23": "The Sultan of Pahang Hol (observed)", "2044-06-06": "Birthday of HM Yang di-Pertuan Agong", "2044-07-30": "Birthday of the Sultan of Pahang", "2044-08-11": "Nuzul Al-Quran Day (estimated)", @@ -1691,7 +1691,7 @@ "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year (Second Day) (estimated)", "2045-05-01": "Labor Day; Vesak Day (estimated)", - "2045-05-22": "Hari Hol Sultan Pahang", + "2045-05-22": "The Sultan of Pahang Hol", "2045-06-05": "Birthday of HM Yang di-Pertuan Agong", "2045-07-30": "Birthday of the Sultan of Pahang", "2045-07-31": "Nuzul Al-Quran Day (estimated)", @@ -1711,7 +1711,7 @@ "2046-05-01": "Labor Day", "2046-05-20": "Vesak Day (estimated)", "2046-05-21": "Vesak Day (observed, estimated)", - "2046-05-22": "Hari Hol Sultan Pahang", + "2046-05-22": "The Sultan of Pahang Hol", "2046-06-04": "Birthday of HM Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", "2046-07-30": "Birthday of the Sultan of Pahang", @@ -1731,7 +1731,7 @@ "2047-01-28": "Chinese New Year (Second Day) (observed, estimated)", "2047-05-01": "Labor Day", "2047-05-09": "Vesak Day (estimated)", - "2047-05-22": "Hari Hol Sultan Pahang", + "2047-05-22": "The Sultan of Pahang Hol", "2047-06-03": "Birthday of HM Yang di-Pertuan Agong", "2047-07-10": "Nuzul Al-Quran Day (estimated)", "2047-07-24": "Eid al-Fitr (estimated)", @@ -1749,7 +1749,7 @@ "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year (Second Day) (estimated)", "2048-05-01": "Labor Day", - "2048-05-22": "Hari Hol Sultan Pahang", + "2048-05-22": "The Sultan of Pahang Hol", "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of HM Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", @@ -1771,7 +1771,7 @@ "2049-05-01": "Labor Day", "2049-05-16": "Vesak Day (estimated)", "2049-05-17": "Vesak Day (observed, estimated)", - "2049-05-22": "Hari Hol Sultan Pahang", + "2049-05-22": "The Sultan of Pahang Hol", "2049-06-07": "Birthday of HM Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", "2049-07-01": "Eid al-Fitr (estimated)", @@ -1791,8 +1791,8 @@ "2050-05-01": "Labor Day", "2050-05-02": "Labor Day (observed)", "2050-05-05": "Vesak Day (estimated)", - "2050-05-22": "Hari Hol Sultan Pahang", - "2050-05-23": "Hari Hol Sultan Pahang (observed)", + "2050-05-22": "The Sultan of Pahang Hol", + "2050-05-23": "The Sultan of Pahang Hol (observed)", "2050-06-06": "Birthday of HM Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", "2050-06-20": "Eid al-Fitr (estimated)",